:root {
    --bg: #f4efdf;
    --bg-soft: #e9dfc6;
    --paper: rgba(255, 251, 242, 0.72);
    --paper-strong: rgba(255, 249, 238, 0.9);
    --ink: #1e241d;
    --muted: #5d6559;
    --green: #10261c;
    --green-soft: #264433;
    --leaf: #557a5e;
    --gold: #c59743;
    --gold-soft: #ebd6a6;
    --line: rgba(16, 38, 28, 0.14);
    --shadow: 0 24px 80px rgba(16, 38, 28, 0.16);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1200px;
    --ease: 240ms ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(197, 151, 67, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(85, 122, 94, 0.18), transparent 28%),
        linear-gradient(180deg, #f8f3e8 0%, var(--bg) 100%);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

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

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

button {
    border: 0;
    background: none;
    font: inherit;
    color: inherit;
}

.site-shell {
    min-height: 100vh;
    position: relative;
}

.site-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 38, 28, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 38, 28, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: -1;
}

.topbar,
.navbar,
.section,
.feature-strip,
.footer {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.topbar {
    padding: 16px 0 8px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.navbar {
    position: sticky;
    top: 14px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 24px;
    background: rgba(255, 250, 241, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(22px);
    border-radius: 999px;
    box-shadow: 0 16px 50px rgba(16, 38, 28, 0.08);
}

.navbar.scrolled {
    box-shadow: 0 18px 60px rgba(16, 38, 28, 0.14);
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-family: "Cormorant Garamond", serif;
}

.brand-kicker {
    font-size: 1.25rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.brand-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
}

.nav-menu a {
    transition: color var(--ease), opacity var(--ease);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--green);
}

.nav-cta {
    padding: 12px 18px;
    background: var(--green);
    color: #f7efdf;
    border-radius: 999px;
}

.menu-toggle {
    display: none;
}

.hero {
    width: min(calc(100% - 24px), 1320px);
    margin: 18px auto 0;
    padding: 44px 0 24px;
    position: relative;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    border-radius: 42px;
    background:
        linear-gradient(115deg, rgba(16, 38, 28, 0.8), rgba(16, 38, 28, 0.34)),
        url("https://img1.wsimg.com/isteam/ip/7e11c2d3-552a-48ad-9f27-1a08ed493a10/1000023779.jpg") center/cover;
    box-shadow: var(--shadow);
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 420px);
    gap: 24px;
    align-items: end;
    padding: 48px;
}

.hero-copy {
    max-width: 700px;
}

.eyebrow {
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.hero h1,
.section-heading h2,
.image-band-copy h2,
.cta-panel h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.hero h1 {
    color: #f8f0e2;
    font-size: clamp(3.8rem, 8vw, 7.5rem);
    max-width: 11ch;
}

.hero-text,
.hero-meta,
.floating-card,
.story-panel,
.story-stats p,
.menu-item p,
.menu-note p,
.visit-card p,
.footer,
.cta-panel,
.image-band-copy p,
.feature-pill {
    color: rgba(248, 240, 226, 0.88);
}

.hero-text {
    max-width: 54ch;
    margin-top: 22px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

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

.btn-solid {
    background: linear-gradient(135deg, #f3d58d, var(--gold));
    color: var(--green);
}

.btn-outline {
    border: 1px solid rgba(255, 248, 233, 0.42);
    color: #fff3de;
    background: rgba(255, 255, 255, 0.06);
}

.hero-meta {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.hero-meta div {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 248, 233, 0.22);
    min-width: 220px;
}

.meta-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    margin-bottom: 8px;
    color: rgba(248, 240, 226, 0.56);
}

.hero-meta strong {
    color: #fff7e9;
    font-size: 1rem;
}

.hero-cards {
    display: grid;
    gap: 16px;
}

.floating-card {
    border-radius: var(--radius-xl);
    padding: 28px;
    background: rgba(15, 33, 24, 0.62);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 248, 233, 0.12);
}

.primary-card {
    transform: translateY(-12px);
}

.accent-card {
    background: rgba(232, 216, 183, 0.9);
    color: var(--green);
}

.accent-card p,
.accent-card li,
.accent-card .card-label,
.menu-note .eyebrow {
    color: var(--green);
}

.card-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    margin-bottom: 14px;
    color: var(--gold-soft);
}

.floating-card h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1.02;
    margin-bottom: 16px;
}

.floating-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.floating-card li::before {
    content: "•";
    margin-right: 10px;
    color: var(--gold);
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.feature-pill {
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 16px 18px;
    color: var(--green);
    text-align: center;
    box-shadow: 0 10px 30px rgba(16, 38, 28, 0.06);
}

.section {
    padding: 110px 0 0;
}

.section-heading {
    display: grid;
    gap: 12px;
    max-width: 780px;
}

.section-heading .eyebrow,
.image-band-copy .eyebrow,
.cta-panel .eyebrow {
    color: var(--leaf);
}

.section-heading h2,
.image-band-copy h2,
.cta-panel h2 {
    font-size: clamp(2.75rem, 5vw, 5rem);
    color: var(--green);
}

.story-grid,
.menu-layout,
.visit-grid,
.image-band {
    display: grid;
    gap: 24px;
    margin-top: 34px;
}

.story-grid {
    grid-template-columns: 1.15fr 0.85fr;
}

.story-panel,
.story-stats article,
.menu-note,
.visit-card,
.cta-panel {
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 60px rgba(16, 38, 28, 0.07);
    backdrop-filter: blur(14px);
}

.story-panel {
    border-radius: var(--radius-xl);
    padding: 34px;
    display: grid;
    gap: 18px;
    color: var(--ink);
}

.story-panel p,
.visit-card p,
.menu-item p,
.menu-note p {
    color: var(--muted);
}

.story-stats {
    display: grid;
    gap: 16px;
}

.story-stats article {
    border-radius: var(--radius-lg);
    padding: 28px;
}

.story-stats span {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 3.4rem;
    line-height: 0.9;
    color: var(--green);
    margin-bottom: 12px;
}

.image-band {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
}

.image-band-copy {
    background: linear-gradient(180deg, rgba(255, 249, 236, 0.88), rgba(233, 223, 198, 0.88));
    border-radius: 36px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 60px rgba(16, 38, 28, 0.08);
}

.image-band-copy p {
    color: var(--muted);
    margin-top: 16px;
    line-height: 1.8;
}

.image-band-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.band-image {
    border-radius: 28px;
    overflow: hidden;
    min-height: 260px;
    box-shadow: var(--shadow);
}

.band-image.tall {
    grid-row: span 2;
    min-height: 540px;
}

.band-image img,
.gallery-card img {
    height: 100%;
    object-fit: cover;
}

.menu-layout {
    grid-template-columns: 1.1fr 0.7fr;
}

.menu-list {
    display: grid;
    gap: 16px;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.menu-item:first-child {
    padding-top: 0;
}

.menu-item h3,
.menu-note h3,
.visit-card h3 {
    font-size: 1.25rem;
    line-height: 1.15;
    color: var(--green);
}

.menu-item span {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: var(--leaf);
}

.menu-note {
    border-radius: 30px;
    padding: 30px;
    display: grid;
    align-content: start;
    gap: 16px;
}

.text-link {
    color: var(--green);
    font-weight: 800;
}

.gallery-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.gallery-card {
    grid-column: span 4;
    border-radius: 28px;
    overflow: hidden;
    min-height: 280px;
    position: relative;
    box-shadow: var(--shadow);
}

.gallery-card.large {
    grid-column: span 6;
    grid-row: span 2;
    min-height: 580px;
}

.gallery-card.wide {
    grid-column: span 6;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 34%, rgba(16, 38, 28, 0.76));
}

.gallery-card figcaption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 1;
    color: #f8f0e2;
    font-weight: 700;
}

.cta-panel {
    border-radius: 36px;
    padding: 44px;
    background:
        linear-gradient(135deg, rgba(16, 38, 28, 0.95), rgba(38, 68, 51, 0.92)),
        url("https://img1.wsimg.com/isteam/ip/7e11c2d3-552a-48ad-9f27-1a08ed493a10/1000003484.jpg") center/cover;
    color: #fff7e8;
}

.visit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visit-card {
    border-radius: var(--radius-lg);
    padding: 28px;
}

.visit-card a {
    color: var(--green);
    font-weight: 700;
}

.footer {
    padding: 44px 0 56px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.95rem;
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1100px) {
    .hero-grid,
    .story-grid,
    .image-band,
    .menu-layout,
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .feature-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-card,
    .gallery-card.large,
    .gallery-card.wide {
        grid-column: span 6;
        min-height: 320px;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-cards {
        max-width: 560px;
    }
}

@media (max-width: 820px) {
    .topbar {
        font-size: 0.78rem;
        gap: 10px;
        flex-direction: column;
    }

    .navbar {
        top: 10px;
        border-radius: 28px;
        padding: 16px 18px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
        width: 48px;
        height: 48px;
        border-radius: 999px;
        background: rgba(16, 38, 28, 0.08);
        align-items: center;
        justify-content: center;
        gap: 4px;
        flex-direction: column;
        margin-left: auto;
    }

    .menu-toggle span {
        width: 18px;
        height: 2px;
        background: var(--green);
        transition: transform var(--ease), opacity var(--ease);
    }

    .menu-toggle.is-open span:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    .menu-toggle.is-open span:last-child {
        transform: translateY(-3px) rotate(-45deg);
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding-top: 18px;
    }

    .nav-menu.is-open {
        display: flex;
    }

    .hero {
        width: min(calc(100% - 14px), 1320px);
    }

    .hero-grid {
        padding: 26px;
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    .feature-strip,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card,
    .gallery-card.large,
    .gallery-card.wide {
        grid-column: auto;
        min-height: 260px;
    }

    .image-band-grid {
        grid-template-columns: 1fr;
    }

    .band-image.tall {
        grid-row: auto;
        min-height: 320px;
    }

    .section {
        padding-top: 84px;
    }

    .footer {
        flex-direction: column;
        padding-bottom: 40px;
    }
}
