/* ─── Reset & Base ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-900: #0B3D2E;
    --green-800: #0F5132;
    --green-700: #146843;
    --green-600: #1A7F52;
    --green-500: #239B63;
    --green-100: #D1F2E2;
    --green-50:  #EAF7EF;
    --off-white: #F7F5F0;
    --cream:     #FDFCFA;
    --sand:      #EDE9E0;
    --charcoal:  #1A1A1A;
    --slate:     #2D3436;
    --gray-600:  #4A5568;
    --gray-400:  #718096;
    --gray-300:  #A0AEC0;
    --gray-200:  #CBD5E0;
    --gray-100:  #E2E8F0;
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;
    --shadow-sm:  0 1px 3px rgba(11,61,46,.08);
    --shadow-md:  0 4px 20px rgba(11,61,46,.10);
    --shadow-lg:  0 12px 40px rgba(11,61,46,.14);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253,252,250,.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(11,61,46,.08);
    transition: box-shadow .3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--green-800);
}

.nav__logo-icon {
    color: var(--green-700);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color .2s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-600);
    transition: width .25s ease;
}

.nav__link:hover {
    color: var(--green-700);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--green-700);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background .2s ease, transform .15s ease;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
    background: var(--green-800);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11,61,46,.88) 0%,
        rgba(15,81,50,.82) 40%,
        rgba(26,127,82,.72) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    padding: 120px 24px 80px;
}

.hero__eyebrow {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--green-100);
    margin-bottom: 20px;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 24px;
}

.hero__sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,.82);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero__trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255,255,255,.88);
}

.hero__trust-item svg {
    color: var(--green-100);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: var(--green-700);
    color: #fff;
    border-color: var(--green-700);
}

.btn--primary:hover {
    background: var(--green-800);
    border-color: var(--green-800);
    box-shadow: var(--shadow-lg);
}

.btn--light {
    background: #fff;
    color: var(--green-800);
    border-color: #fff;
}

.btn--light:hover {
    background: var(--green-50);
    box-shadow: var(--shadow-lg);
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.6);
}

.btn--outline-light:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
}

.btn--full {
    width: 100%;
}

/* ─── Section Shared ─── */
.section {
    padding: 100px 0;
}

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

.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--charcoal);
}

/* ─── About ─── */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about__img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

.about__img-secondary img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    top: -16px;
    left: -16px;
    background: var(--green-700);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    box-shadow: var(--shadow-md);
}

.about__text {
    padding: 8px 0;
}

.about__text p {
    color: var(--gray-600);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.about__stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.about__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about__stat-number {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-700);
}

.about__stat-label {
    font-size: .82rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ─── Menu ─── */
.menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.menu__card {
    background: var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: transform .3s ease, box-shadow .3s ease;
}

.menu__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.menu__card-img {
    overflow: hidden;
    height: 220px;
}

.menu__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.menu__card:hover .menu__card-img img {
    transform: scale(1.06);
}

.menu__card-body {
    padding: 28px;
}

.menu__card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.menu__card-desc {
    font-size: .92rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.menu__card-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu__card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--slate);
    font-weight: 500;
}

.menu__card-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green-500);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ─── Visit ─── */
.visit {
    background: var(--green-900);
    color: #fff;
}

.visit__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.visit__info .section-eyebrow {
    color: var(--green-100);
}

.visit__info .section-title {
    color: #fff;
    margin-bottom: 40px;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit__detail svg {
    color: var(--green-100);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit__detail strong {
    display: block;
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.visit__detail span,
.visit__detail a {
    font-size: .92rem;
    color: rgba(255,255,255,.72);
    line-height: 1.6;
}

.visit__detail a:hover {
    color: #fff;
    text-decoration: underline;
}

.visit__map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visit__map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: .88;
}

.visit__map-link {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--green-800);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: .88rem;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease;
}

.visit__map-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ─── Contact ─── */
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__text p {
    color: var(--gray-600);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-top: 16px;
}

.contact__form {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: border-color .2s ease, box-shadow .2s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(35,155,99,.12);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-sm);
    color: var(--green-800);
    font-size: .9rem;
    font-weight: 500;
}

.form-success.visible {
    display: block;
}

/* ─── Footer ─── */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,.7);
    padding: 72px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: .9rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer__heading {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    transition: color .2s ease;
}

.footer__links a:hover {
    color: #fff;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}

/* ─── Mobile Nav ─── */
@media (max-width: 900px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253,252,250,.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--gray-100);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform .35s ease, opacity .35s ease;
        pointer-events: none;
    }

    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__link--cta {
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav__toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .about__grid,
    .visit__inner,
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__img-secondary {
        right: 16px;
        bottom: -24px;
    }

    .about__img-secondary img {
        width: 150px;
        height: 150px;
    }

    .menu__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .contact__form {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 72px 0;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .about__stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero__trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ─── Scroll Animations (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure content is visible without JS */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}
