:root {
    --bg: #f7f0e3;
    --bg-alt: #fdf9f2;
    --bg-deep: #3d2817;
    --bg-deeper: #2a1b0e;
    --bg-soft: #e8dcc4;
    --line: rgba(61, 40, 23, 0.12);
    --line-strong: rgba(61, 40, 23, 0.22);
    --text: #2a1b0e;
    --text-muted: #6b5848;
    --text-dim: #95816d;
    --text-light: #f7f0e3;
    --accent: #c46a3a;
    --accent-deep: #9c4f24;
    --sage: #8a9971;
    --cream: #fbe9c6;
    --radius: 4px;
    --radius-lg: 12px;
    --maxw: 1200px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
}
h1 { font-size: clamp(2.85rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.55rem; margin-bottom: 0.5rem; }

p { color: var(--text-muted); }

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 1rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(247, 240, 227, 0.93);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    z-index: 100;
}
.site-nav {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.brand {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    letter-spacing: -0.01em;
}
.brand-mark {
    width: 26px;
    height: 26px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
    display: inline-block;
}
.brand-mark::after {
    content: '';
    position: absolute;
    inset: 5px;
    background: var(--bg);
    border-radius: 50%;
}
.brand-mark::before {
    content: '';
    position: absolute;
    inset: 10px;
    background: var(--text);
    border-radius: 50%;
    z-index: 1;
}
.nav-list {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.nav-list a {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius);
    transition: color 0.18s;
}
.nav-list a:hover { color: var(--text); }
.nav-list a.active { color: var(--accent); font-weight: 600; }
.nav-cta {
    background: var(--text) !important;
    color: var(--bg) !important;
    padding: 0.7rem 1.3rem !important;
    border-radius: 999px;
    font-weight: 500 !important;
}
.nav-cta:hover { background: var(--accent) !important; }
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line-strong);
    color: var(--text);
    padding: 0.45rem 0.7rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1.05rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 1.65rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, background 0.18s, color 0.18s, border-color 0.18s;
    letter-spacing: 0.02em;
}
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--bg); }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--bg); }

/* Hero */
.hero {
    padding: 5rem 0 5rem;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    right: -180px;
    top: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 106, 58, 0.15), transparent 60%);
    pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; position: relative; }
.hero h1 {
    margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero-lede { font-size: 1.15rem; max-width: 460px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-visual {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, var(--bg-deep) 0%, var(--bg-deeper) 100%);
    position: relative;
    overflow: hidden;
    max-width: 460px;
    margin: 0 auto;
}
.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 55% 45%, rgba(196, 106, 58, 0.4), transparent 50%),
        repeating-radial-gradient(circle at center, transparent 0 14px, rgba(247, 240, 227, 0.06) 14px 15px);
}
.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.18), transparent 30%);
}
.hero-foam {
    position: absolute;
    inset: 18%;
    background: linear-gradient(180deg, rgba(251, 233, 198, 0.85) 0%, rgba(232, 220, 196, 0.4) 100%);
    border-radius: 50%;
    box-shadow:
        inset 0 -10px 20px rgba(196, 106, 58, 0.25),
        0 0 30px rgba(255, 255, 255, 0.15);
}

/* Section */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-soft { background: var(--bg-soft); }
.section-deep { background: var(--bg-deep); color: var(--text-light); }
.section-deep h1, .section-deep h2, .section-deep h3 { color: var(--text-light); }
.section-deep p { color: rgba(247, 240, 227, 0.8); }
.section-deep .eyebrow { color: var(--cream); }

.section-head { margin-bottom: 3rem; max-width: 720px; }
.section-head.center { margin: 0 auto 3rem; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* Three-up */
.three-up {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.three-card {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: transform 0.25s, border-color 0.25s;
}
.three-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.three-card-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent);
    font-style: italic;
    line-height: 1;
    margin-bottom: 1rem;
}
.three-card h3 { font-size: 1.5rem; }

/* Menu tabs */
.menu-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1rem;
}
.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.55rem 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.18s;
    position: relative;
    letter-spacing: 0.02em;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.is-active {
    color: var(--accent);
    font-weight: 600;
}
.tab-btn.is-active::after {
    content: '';
    position: absolute;
    bottom: -1.05rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}
.tab-sep {
    color: var(--text-dim);
    padding: 0.55rem 0;
    user-select: none;
}

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.menu-section { margin-bottom: 2.5rem; }
.menu-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.menu-section-head h3 { font-style: italic; font-size: 1.85rem; margin: 0; }
.menu-section-head span {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.menu-list { display: flex; flex-direction: column; gap: 1rem; }
.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: baseline;
    padding-bottom: 0.85rem;
    border-bottom: 1px dotted var(--line-strong);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--text);
}
.menu-item-desc { font-size: 0.88rem; margin-top: 0.1rem; }
.menu-item-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent);
    white-space: nowrap;
}

/* Story / locations */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.split .visual {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(61, 40, 23, 0.05) 0%, rgba(61, 40, 23, 0.4) 100%),
        linear-gradient(135deg, var(--bg-deep), var(--bg-deeper));
    position: relative;
    overflow: hidden;
}
.split .visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 60% 40%, rgba(196, 106, 58, 0.25), transparent 60%),
        repeating-linear-gradient(45deg, transparent 0 24px, rgba(247, 240, 227, 0.04) 24px 25px);
}
.split .visual.alt {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}
.split .visual.alt::before {
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.2), transparent 55%);
}

/* Locations */
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.location {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.location-photo {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--bg-deep), var(--bg-deeper));
    position: relative;
}
.location-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(196, 106, 58, 0.22), transparent 60%);
}
.location-photo.alt::before {
    background: radial-gradient(circle at 30% 70%, rgba(251, 233, 198, 0.3), transparent 55%);
}
.location-photo.alt2::before {
    background: radial-gradient(circle at 70% 30%, rgba(138, 153, 113, 0.3), transparent 55%);
}
.location-photo .pin {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
}
.location-body { padding: 1.5rem 1.75rem 1.75rem; }
.location-body h3 { font-style: italic; font-size: 1.55rem; }
.location-meta {
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}
.location-body p { font-size: 0.92rem; margin-top: 0.85rem; }

/* Form */
.form-wrap {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 600;
}
.field input, .field select, .field textarea {
    background: var(--bg);
    border: 1px solid var(--line);
    color: var(--text);
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-msg {
    margin-top: 1.25rem;
    padding: 0.95rem 1rem;
    border-radius: var(--radius);
    background: rgba(196, 106, 58, 0.08);
    border: 1px solid var(--accent);
    color: var(--accent-deep);
    font-size: 0.9rem;
    display: none;
}
.form-msg.is-visible { display: block; }

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Footer */
.site-footer {
    background: var(--bg-deep);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}
.site-footer .brand { color: var(--text-light); }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-grid h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 600;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-grid a, .footer-grid p {
    color: rgba(247, 240, 227, 0.75);
    font-size: 0.9rem;
    transition: color 0.18s;
}
.footer-grid a:hover { color: var(--cream); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(247, 240, 227, 0.1);
    font-size: 0.82rem;
    color: rgba(247, 240, 227, 0.55);
    flex-wrap: wrap;
    gap: 1rem;
}
.demo-badge a { color: var(--cream); }
.demo-badge a:hover { color: var(--text-light); }

/* Page hero */
.page-hero {
    padding: 5rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(196, 106, 58, 0.08), transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero p { font-size: 1.1rem; max-width: 580px; margin: 1rem auto 0; }

@media (max-width: 980px) {
    .hero-inner, .three-up, .split, .location-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 360px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .nav-toggle { display: inline-flex; }
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem;
        gap: 0.25rem;
        display: none;
    }
    .nav-list.is-open { display: flex; }
    .site-nav { position: relative; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Image overlays */
.media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
