/* ── ROOT VARIABLES ── */
:root {
    --bg: #F5F2EB;
    --bg-warm: #EDE8DE;
    --text: #1C1917;
    --accent: #8B7355;
    --accent-light: #C4B49A;
    --white: #FDFCF9;
    --muted: #6B6560;
    --rule: rgba(28,25,23,0.1);
    --serif: 'Cormorant Garamond', serif;
    --sans: 'DM Sans', sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 4rem;
    background: rgba(245, 242, 235, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
}

.nav-brand {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.55;
    transition: opacity 0.25s;
}
.nav-links a:hover { opacity: 1; }

.nav-cta {
    background: var(--text);
    color: var(--bg) !important;
    opacity: 1 !important;
    padding: 0.5rem 1.25rem;
    border-radius: 1px;
    transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--accent) !important; }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 8rem 4rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 70%, rgba(139,115,85,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 2rem;
    display: block;
    opacity: 0;
    animation: riseIn 0.9s var(--ease) 0.1s forwards;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: riseIn 1s var(--ease) 0.3s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 3.5rem;
    opacity: 0;
    animation: riseIn 1s var(--ease) 0.5s forwards;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    opacity: 0;
    animation: riseIn 1s var(--ease) 0.7s forwards;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--accent-light);
}

@keyframes riseIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTION COMMONS ── */
.container { max-width: 1200px; margin: 0 auto; }

.overline {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    display: block;
    margin-bottom: 1.25rem;
}

/* ── CREDENTIALS BAR ── */
.credentials {
    background: var(--text);
    color: var(--bg);
    padding: 1.25rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.credentials span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.6;
}

.credentials strong {
    font-weight: 500;
    opacity: 1;
    letter-spacing: 0.18em;
}

/* ── FOUNDER ── */
.founder-section {
    padding: 10rem 4rem;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
}

.founder-inner {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 7rem;
    align-items: start;
}

.founder-img-col {
    position: sticky;
    top: 8rem;
}

.founder-img-frame {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--bg-warm);
    border: 1px solid var(--rule);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(15%) brightness(0.97);
    transition: filter 0.6s var(--ease);
}

.founder-img-frame:hover .founder-img {
    filter: sepia(0%) brightness(1);
}

.founder-caption {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--rule);
}

.founder-name {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
}

.founder-title {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.founder-text-col h2 {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 3rem;
}

.founder-text-col h2 em {
    font-style: italic;
    color: var(--accent);
}

.founder-body p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1.6rem;
    line-height: 1.85;
}

.founder-body p:last-of-type { margin-bottom: 0; }

.founder-quote {
    border-left: 2px solid var(--accent-light);
    padding: 1.5rem 0 1.5rem 2rem;
    margin: 2.5rem 0;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
}

.founder-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.68rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-family: var(--sans);
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
}

.founder-stat {
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.stat-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--text);
}

.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    line-height: 1.4;
}

/* ── PHILOSOPHY ── */
.philosophy {
    padding: 10rem 4rem;
    background: var(--white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.philosophy-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 8rem;
    align-items: start;
}

.philosophy h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    position: sticky;
    top: 8rem;
}

.philosophy-body p {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
    line-height: 1.85;
}

.philosophy-body p:last-child { margin-bottom: 0; }

/* ── PILLARS ── */
.philosophy-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-top: 3rem;
    border: 1px solid var(--rule);
}

.pillar {
    padding: 1.75rem 2rem;
    border-right: 1px solid var(--rule);
}

.pillar:last-child {
    border-right: none;
}

.pillar-num {
    font-family: var(--serif);
    font-size: 0.75rem;
    color: var(--accent);
    display: block;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}

.pillar h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.pillar p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── MENU ── */
.menu-section {
    padding: 8rem 4rem;
    background: var(--bg);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.menu-header h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
}

.menu-season {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.filter-wrapper { overflow-x: auto; }

.filter-bar {
    display: flex;
    gap: 0;
    white-space: nowrap;
    border: 1px solid var(--rule);
    width: fit-content;
}

.filter-btn {
    background: transparent;
    border: none;
    border-right: 1px solid var(--rule);
    font-family: var(--sans);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    color: var(--muted);
    padding: 0.65rem 1.4rem;
    transition: all 0.3s var(--ease);
}

.filter-btn:last-child { border-right: none; }
.filter-btn:hover { background: var(--bg-warm); color: var(--text); }
.filter-btn.active { background: var(--text); color: var(--bg); }

/* ── MENU GRID ── */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 4rem 2rem;
}

.menu-item {
    display: flex;
    flex-direction: column;
    animation: fadeUp 0.6s var(--ease) both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: var(--bg-warm);
}

.item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
    filter: brightness(0.98) saturate(0.9);
}

.menu-item:hover .item-img { transform: scale(1.04); filter: brightness(1) saturate(1); }

.item-category-tag {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--rule);
}

.item-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
}

.item-price {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--accent);
    font-style: italic;
}

.item-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── TASTING MENU CALLOUT ── */
.callout {
    background: var(--text);
    color: var(--bg);
    padding: 6rem 4rem;
    text-align: center;
}

.callout h3 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.callout p {
    font-size: 0.9rem;
    opacity: 0.55;
    max-width: 440px;
    margin: 0 auto 2.5rem;
}

.callout-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.callout-tag {
    border: 1px solid rgba(245,242,235,0.2);
    padding: 0.4rem 1.2rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(245,242,235,0.5);
}

/* ── FOOTER ── */
footer {
    padding: 7rem 4rem 3rem;
    background: var(--white);
    border-top: 1px solid var(--rule);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-brand {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.footer-tagline { font-size: 0.82rem; color: var(--muted); max-width: 280px; line-height: 1.7; }

.footer-col h5 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.reservation-box {
    border-top: 1px solid var(--rule);
    padding-top: 4rem;
    text-align: center;
}

.reservation-box h3 {
    font-family: var(--serif);
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.reservation-box p { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }

.btn-reserve {
    background: var(--text);
    color: var(--bg);
    border: 1px solid var(--text);
    padding: 0.9rem 3rem;
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.btn-reserve:hover { background: transparent; color: var(--text); }

.fine-print {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--muted);
    opacity: 0.6;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .navbar { padding: 1.25rem 1.5rem; }
    .nav-links { display: none; }
    .hero { padding: 7rem 1.5rem 5rem; }
    .credentials { padding: 1.25rem 1.5rem; }
    .founder-section { padding: 6rem 1.5rem; }
    .founder-inner { grid-template-columns: 1fr; gap: 3rem; }
    .founder-img-col { position: static; }
    .founder-img-frame { aspect-ratio: unset; height: auto; }
    .founder-img { height: auto; object-fit: contain; }
    .founder-stats { grid-template-columns: repeat(2, 1fr); }
    .philosophy { padding: 6rem 1.5rem; }
    .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
    .philosophy h2 { position: static; }
    .philosophy-pillars { grid-template-columns: 1fr; }
    .pillar { border-right: none; border-bottom: 1px solid var(--rule); }
    .pillar:last-child { border-bottom: none; }
    .menu-section { padding: 5rem 1.5rem; }
    .callout { padding: 4rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    footer { padding: 5rem 1.5rem 2.5rem; }
    .fine-print { flex-direction: column; }
}