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

:root {
    --green-900: #0B2A1A;
    --green-800: #1B4332;
    --green-700: #2D6A4F;
    --green-600: #40916C;
    --green-500: #52B788;
    --gold:      #D4A843;
    --gold-light:#E8C96A;
    --cream:     #F5F1E8;
    --cream-light:#FAF7F0;
    --white:     #FFFFFF;
    --dark:      #1A1A1A;
    --gray-700:  #3D3D3D;
    --gray-500:  #6B6B6B;
    --gray-300:  #B0B0B0;
    --gray-100:  #E8E8E8;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;
    --radius:    12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--dark);
    background: var(--cream-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* ── Typography ───────────────────────────────────────────────────────────── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--green-800);
    margin-bottom: 20px;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--gray-700);
    max-width: 560px;
    line-height: 1.7;
}

.section-header--center { text-align: center; }
.section-header--center .section-lead { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(27,67,50,.3);
}
.btn-primary:hover {
    background: var(--green-800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27,67,50,.4);
}

.btn-outline-light {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.4);
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--green-800);
    border-color: var(--white);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    transition: var(--transition);
}

.site-header.scrolled .logo { color: var(--green-800); }

.logo-mark {
    width: 32px;
    height: 32px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 35%, 85% 100%, 15% 100%, 0% 35%);
    flex-shrink: 0;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn):hover { color: var(--white); }
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.site-header.scrolled .nav-links a { color: var(--gray-700); }
.site-header.scrolled .nav-links a:not(.btn):hover { color: var(--green-800); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--green-800); }

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        135deg,
        rgba(11,42,26,.82) 0%,
        rgba(27,67,50,.70) 50%,
        rgba(45,106,79,.55) 100%
    );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: center;
    padding: 120px 0 80px;
    width: 100%;
}

.hero-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
}

.hero-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,.8);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Floating stat cards */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: 18px 20px;
    color: var(--white);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(30px);
    animation: cardIn 0.5s forwards;
}
.stat-card:nth-child(1) { animation-delay: 0.3s; }
.stat-card:nth-child(2) { animation-delay: 0.45s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }
.stat-card:nth-child(4) { animation-delay: 0.75s; }

.stat-card:hover {
    background: rgba(255,255,255,.16);
    transform: translateX(6px);
}

@keyframes cardIn {
    to { opacity: 1; transform: translateX(0); }
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-700);
    border-radius: 10px;
    flex-shrink: 0;
    color: var(--white);
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,.65);
    line-height: 1.3;
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.5);
    animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

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

/* ── About ────────────────────────────────────────────────────────────────── */
.about { background: var(--white); }

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

.about-images {
    position: relative;
    height: 680px;
}

.about-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img--main {
    width: 360px;
    height: 480px;
    top: 0;
    left: 0;
}

.about-img--accent {
    width: 260px;
    height: 260px;
    bottom: 40px;
    right: 0;
    border: 6px solid var(--white);
}

.about-accent-box {
    position: absolute;
    bottom: 200px;
    right: -20px;
    background: var(--green-800);
    color: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-accent-box .accent-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
}

.about-accent-box .accent-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,.8);
    line-height: 1.5;
}

.about-content .section-lead { margin-bottom: 20px; }

.about-content p {
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-features {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.feature svg {
    color: var(--green-600);
    flex-shrink: 0;
}

/* ── Menu ─────────────────────────────────────────────────────────────────── */
.menu { background: var(--cream); }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.menu-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.menu-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--green-500);
}

.menu-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--cream);
}

.menu-cat-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-800);
    border-radius: 14px;
    color: var(--gold);
    flex-shrink: 0;
}

.menu-category-header h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-800);
}

.menu-items li {
    padding: 10px 0;
    border-bottom: 1px solid var(--cream);
    font-size: 0.95rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-items li:last-child { border-bottom: none; }

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

.menu-cta {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 32px 36px;
    background: var(--green-800);
    border-radius: var(--radius-lg);
}

.menu-cta p {
    color: rgba(255,255,255,.85);
    font-size: 1rem;
}

.menu-cta .btn { flex-shrink: 0; }

/* ── Gallery ──────────────────────────────────────────────────────────────── */
.gallery { background: var(--white); }

.gallery-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 260px 260px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item--tall  { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 5 / 8; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 8 / 11; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 11 / 13; grid-row: 1 / 3; }
.gallery-item--wide  { grid-column: 5 / 13; grid-row: 2; }

/* ── Visit ────────────────────────────────────────────────────────────────── */
.visit { background: var(--cream); }

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-blocks {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-block {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-800);
    border-radius: 12px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-block strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 4px;
}

.contact-block p {
    color: var(--gray-700);
    line-height: 1.6;
}

.contact-block a {
    color: var(--green-700);
    font-weight: 600;
    transition: var(--transition);
}
.contact-block a:hover { color: var(--green-500); }

.hours-block {
    margin-top: 28px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--green-600);
}
.hours-block strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 6px;
}
.hours-block p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-wrap {
    margin-top: 28px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Form */
.visit-form-wrap { position: sticky; top: 96px; }

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.form-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 8px;
}

.form-card > p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group .optional {
    font-weight: 400;
    color: var(--gray-500);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-100);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--cream-light);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(82,183,136,.15);
}

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

.form-success {
    text-align: center;
    padding: 32px 20px;
}
.form-success svg { color: var(--green-600); margin: 0 auto 16px; }
.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--green-800);
    margin-bottom: 8px;
}
.form-success p { color: var(--gray-500); font-size: 0.95rem; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--green-900);
    color: rgba(255,255,255,.7);
    padding: 56px 0 32px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-brand .logo-mark { margin: 0 auto; }
.footer-brand .logo-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}
.footer-brand p { font-size: 0.9rem; }
.footer-brand a {
    color: var(--gold);
    transition: var(--transition);
}
.footer-brand a:hover { color: var(--gold-light); }

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,.6);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,.35);
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    width: 100%;
    text-align: center;
}

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

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: var(--transition);
        z-index: 999;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { color: var(--gray-700) !important; font-size: 1rem; }
    .nav-links a:not(.btn):hover { color: var(--green-800) !important; }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 100px 0 100px;
        gap: 32px;
    }

    .hero-card { padding: 32px 28px; }
    .hero-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }

    .hero-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .stat-card { flex: 1; min-width: 140px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 480px; }
    .about-img--main { width: 65%; height: 360px; }
    .about-img--accent { width: 55%; height: 220px; }
    .about-accent-box { right: 10px; bottom: 160px; }
    .about-features { grid-template-columns: 1fr; }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
    }
    .gallery-item--tall { grid-column: 1 / 3; grid-row: 1; }
    .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
    .gallery-item:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
    .gallery-item--wide { display: none; }

    .visit-grid { grid-template-columns: 1fr; }
    .visit-form-wrap { sticky: unset; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 72px 0; }
    .hero-card { padding: 24px 20px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .menu-cta { flex-direction: column; text-align: center; }
    .menu-cta .btn { width: 100%; }
    .form-card { padding: 28px 20px; }
    .stat-card { min-width: 120px; padding: 14px 16px; }
}

/* ── Scroll animations ────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
