﻿:root {
    --g: #2f6f4e;
    --n: #f28b30;
    --bg: #f5f7f2;
    --ch: #1c281f;
    --lt: #ffffff;
    --bg-soft: rgba(245, 247, 242, 0.95);
    --ch-06: rgba(28, 40, 31, 0.06);
    --ch-10: rgba(28, 40, 31, 0.1);
    --ch-12: rgba(28, 40, 31, 0.12);
    --ch-15: rgba(28, 40, 31, 0.15);
    --ch-20: rgba(28, 40, 31, 0.2);
    --ch-60: rgba(28, 40, 31, 0.6);
    --g-08: rgba(47, 111, 78, 0.08);
    --g-12: rgba(47, 111, 78, 0.12);
    --g-20: rgba(47, 111, 78, 0.2);
    --g-60: rgba(47, 111, 78, 0.6);
    --n-70: rgba(242, 139, 48, 0.7);
    --lt-85: rgba(255, 255, 255, 0.85);
    --shadow-deep: 0 18px 38px -24px rgba(0, 0, 0, 0.45);
    --shadow-soft: 0 12px 24px -20px var(--ch-12);
    --shadow-card: 0 10px 30px -25px rgba(0, 0, 0, 0.4);
    --shadow-btn: 0 10px 18px -12px var(--g-60);
    --shadow-btn-alt: 0 10px 20px -15px var(--n-70);
    --section-veil: linear-gradient(120deg, var(--g-08), transparent);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: var(--ch);
    background-color: var(--bg);
    line-height: 1.65;
    font-size: 18px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--n);
}

img {
    max-width: 100%;
    display: block;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    backdrop-filter: blur(18px);
    background-color: var(--bg-soft);
    border-bottom: 1px solid var(--g-12);
    z-index: 10;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: "Georgia", "Times New Roman", serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.brand__logo {
    width: 48px;
    height: auto;
}

.nav {
    display: flex;
}

.nav__list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav__list a[aria-current="page"] {
    color: var(--g);
    font-weight: 600;
}

.nav__list a[aria-current="page"]:hover {
    color: var(--g);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--ch);
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 5rem 0 4rem;
    border-bottom: 1px solid var(--ch-15);
}

.hero__content h1 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero__aside {
    display: flex;
    align-items: flex-start;
}

.hero__note {
    background: var(--lt);
    padding: 1.75rem;
    border-radius: 1.25rem 0.75rem 1.25rem 0.75rem;
    box-shadow: var(--shadow-deep), var(--shadow-soft);
    border: 1px solid var(--g-20);
}

.hero__note h2 {
    font-family: "Georgia", "Times New Roman", serif;
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
}

.link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 600;
    color: var(--g);
    transition: color 0.2s ease, transform 0.2s ease;
}

.link i {
    font-size: 0.95rem;
}

.link:hover,
.link:focus {
    color: var(--n);
    transform: translateX(2px);
}

.link--icon {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 1rem;
}

.link--icon i {
    color: var(--n);
}

.link--arrow i {
    font-size: 0.85rem;
}

.hero__note .link {
    margin-top: 1rem;
}

.section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--ch-10);
}

.section--alt {
    background: var(--section-veil);
}

.section__intro {
    max-width: 1080px;
    margin-bottom: 2.5rem;
}

.section--placeholder {
    background: var(--section-veil);
    border-bottom: none;
}

.section__placeholder {
    max-width: 640px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--g-12);
    box-shadow: var(--shadow-deep);
}

.section__placeholder-icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--g);
    color: var(--lt);
    box-shadow: var(--shadow-soft);
    font-size: 2rem;
}

.section__placeholder-title {
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "Georgia", "Times New Roman", serif;
    color: var(--g);
    margin: 0;
}

.section__placeholder-copy {
    margin: 0;
    max-width: 480px;
    color: rgba(28, 40, 31, 0.78);
}
.section__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ch-60);
    margin-bottom: 0.75rem;
}

.section h1,
.section h2 {
    font-family: "Georgia", "Times New Roman", serif;
    margin: 0;
}

.section h1 {
    font-size: clamp(2.3rem, 3.5vw, 3.2rem);
}

.section h2 {
    font-size: clamp(2rem, 3vw, 2.85rem);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid--two {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--three {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background: var(--lt);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--ch-10);
    box-shadow: var(--shadow-card);
}

.card h3 {
    font-family: "Georgia", "Times New Roman", serif;
    margin-top: 0;
    font-size: 1.4rem;
    color: var(--g);
}

.card ul {
    margin: 0;
    padding-left: 1.25rem;
    line-height: 1.6;
}

.card li + li {
    margin-top: 0.35rem;
}
.title-with-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.timeline {
    display: grid;
    gap: 2rem;
    position: relative;
    padding-left: 1.5rem;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.5rem;
    width: 1px;
    background: linear-gradient(var(--g), var(--g-20));
}

.timeline__item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
}

.timeline__year {
    font-family: "Georgia", "Times New Roman", serif;
    width: max-content;
    font-size: 1.1rem;
    color: var(--g);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.timeline__body h3 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: var(--g);
    color: var(--lt);
    border: 1px solid var(--g);
    padding: 0.85rem 1.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn i {
    font-size: 1rem;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn);
}

.btn--outline {
    background: transparent;
    color: var(--g);
    border-color: var(--n);
}

.btn--outline:hover,
.btn--outline:focus {
    color: var(--lt);
    background: var(--n);
    box-shadow: var(--shadow-btn-alt);
}

.form {
    background: var(--lt);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--ch-10);
    box-shadow: 0 18px 32px -28px var(--g-60);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form__group--full {
    grid-column: 1 / -1;
}

input,
textarea {
    padding: 0.85rem 1rem;
    border: 1px solid var(--ch-12);
    border-radius: 0.5rem;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--g);
    box-shadow: 0 0 0 3px var(--g-08);
}

.footer {
    background: var(--ch);
    color: var(--lt-85);
    padding: 2.5rem 1.5rem;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer__links a {
    color: var(--lt-85);
}

.footer__links a[aria-current="page"] {
    color: var(--n);
}

.footer__links a:hover {
    color: var(--n);
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--lt-85);
    color: var(--lt-85);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover,
.social-link:focus {
    background-color: var(--lt);
    color: var(--ch);
    transform: translateY(-2px);
    box-shadow: 0 16px 28px -24px rgba(0, 0, 0, 0.6);
}

.footer__social .fa-brands,
.footer__social .fa-regular {
    font-size: 1.1rem;
}
.brand {
    position: relative;
    overflow: visible;
}

.brand::before,
.brand::after,
.brand__name::before {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.brand::before {
    top: -18px;
    left: 32px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--n);
    box-shadow: 16px 18px 0 -6px rgba(242, 139, 48, 0.45),
        -14px 12px 0 -6px rgba(47, 111, 78, 0.45);
    transform: translate3d(8px, 12px, 0) scale(0.4) rotate(-12deg);
}

.brand::after {
    bottom: -24px;
    left: 20px;
    width: 38px;
    height: 34px;
    border-radius: 62% 38% 58% 42%;
    background: linear-gradient(135deg, rgba(47, 111, 78, 0.85), rgba(242, 139, 48, 0.65));
    filter: drop-shadow(0 12px 18px rgba(28, 40, 31, 0.25));
    transform: translate3d(18px, 20px, 0) scale(0.55) rotate(8deg);
}

.brand__name {
    position: relative;
    z-index: 1;
}

.brand__name::before {
    bottom: -16px;
    left: 4px;
    width: 56px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(242, 139, 48, 0.75), rgba(47, 111, 78, 0.85));
    box-shadow: 0 8px 16px -12px rgba(28, 40, 31, 0.5);
    transform: translate3d(0, 18px, 0) scaleX(0.25);
}

.brand:hover::before,
.brand:focus-visible::before,
.brand:hover::after,
.brand:focus-visible::after,
.brand:hover .brand__name::before,
.brand:focus-visible .brand__name::before {
    opacity: 1;
}

.brand:hover::before,
.brand:focus-visible::before {
    transform: translate3d(-10px, -6px, 0) scale(1) rotate(-2deg);
}

.brand:hover::after,
.brand:focus-visible::after {
    transform: translate3d(26px, 4px, 0) scale(0.95) rotate(12deg);
}

.brand:hover .brand__name::before,
.brand:focus-visible .brand__name::before {
    transform: translate3d(0, 0, 0) scaleX(1);
}

.blog-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.blog-card {
    background: var(--lt);
    border-radius: 1.25rem;
    border: 1px solid var(--ch-10);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.blog-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--section-veil);
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-card__body h3 {
    margin: 0;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.4rem;
    color: var(--g);
}

.blog-card__body p {
    margin: 0;
    color: rgba(28, 40, 31, 0.75);
}

.blog-card:hover,
.blog-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 28px 48px -32px var(--g-60);
}

.article {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.article__hero {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 28px 56px -32px rgba(47, 111, 78, 0.45);
    margin-bottom: 2.5rem;
}

.article__cover {
    width: 100%;
    height: auto;
    display: block;
}

.article__body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.article__body h1 {
    font-size: clamp(2.3rem, 4vw, 3.3rem);
}

.article__body p {
    margin: 0;
    color: rgba(28, 40, 31, 0.82);
}

.article__body p + p {
    text-indent: 1.25rem;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero__aside {
        order: -1;
    }

    .blog-grid {
        gap: 2rem;
    }

    .article {
        padding-bottom: 3rem;
    }
}

@media (max-width: 760px) {
    body {
        font-size: 16px;
    }

    .header__inner {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav {
        display: none;
        width: 100%;
    }

    .nav.is-open {
        display: block;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .hero__cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline__item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .timeline__year {
        order: -1;
    }

    .blog-grid {
        gap: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}




















