/*
 * lunchgo.hyanggoat.com — 교대역 점심메뉴
 * 향촌흑염소 서초법원직영점 · editorial warm-clay system (distinct from mainfarm navy)
 *
 * Palette (warm midday):
 *   --cream      #faf6ef   page bg
 *   --parch      #f3ead8   panel bg
 *   --vanilla    #f5ecd9   card bg
 *   --ink        #1c1714   text/headline
 *   --ink-soft   #4a3f36   muted body
 *   --ember      #b34a2c   primary accent (clay terracotta)
 *   --ember-d    #8c2f1a   hover/deep
 *   --brass      #b88847   gold accent
 *   --brass-l    #d8b070   gold light
 *   --olive      #6e6a39   muted accent
 *   --sage       #8a9472   contrast accent
 *
 * Typography:
 *   "Noto Serif KR" — headlines / numerals
 *   "Noto Sans KR"  — body / UI
 *   "Cormorant Garamond" — display Latin (italic)
 */

:root {
    --cream: #faf6ef;
    --parch: #f3ead8;
    --vanilla: #f5ecd9;
    --ink: #1c1714;
    --ink-soft: #4a3f36;
    --ink-mute: #7a6a5e;
    --ember: #b34a2c;
    --ember-d: #8c2f1a;
    --brass: #b88847;
    --brass-l: #d8b070;
    --olive: #6e6a39;
    --sage: #8a9472;
    --hairline: rgba(28, 23, 20, 0.12);
    --hairline-2: rgba(28, 23, 20, 0.22);
    --shadow-1: 0 6px 24px rgba(28, 23, 20, 0.08);
    --shadow-2: 0 24px 64px rgba(28, 23, 20, 0.16);

    --serif: "Noto Serif KR", "Nanum Myeongjo", "Apple SD Gothic Neo", serif;
    --sans: "Noto Sans KR", "Apple SD Gothic Neo", "Pretendard", system-ui, sans-serif;
    --display: "Cormorant Garamond", "Noto Serif KR", serif;

    --container: min(1240px, calc(100vw - 48px));
    --container-wide: min(1480px, calc(100vw - 32px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--ember); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--ember-d); }

::selection { background: rgba(184, 136, 71, 0.4); color: var(--ink); }

/* ============================================================
 * Antigravity background canvas (CSS+JS only — no dnf module)
 * ============================================================ */
.ag-canvas {
    position: fixed;
    inset: 0;
    width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

.grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.13;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.0' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11   0 0 0 0 0.09   0 0 0 0 0.07   0 0 0 0.85 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 240px 240px;
}

/* Reveal animations (antigravity rise / drift) */
.ag-rise { opacity: 0; transform: translate3d(0, 32px, 0); transition: opacity 0.9s cubic-bezier(.16,.84,.34,1), transform 0.9s cubic-bezier(.16,.84,.34,1); }
.ag-drift-l { opacity: 0; transform: translate3d(-28px, 0, 0); transition: opacity 1.1s ease, transform 1.1s ease; }
.ag-drift-r { opacity: 0; transform: translate3d( 28px, 0, 0); transition: opacity 1.1s ease, transform 1.1s ease; }
.ag-fade { opacity: 0; transition: opacity 1.2s ease; }
.ag-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.16,.84,.34,1); }
.in-view.ag-rise, .in-view.ag-drift-l, .in-view.ag-drift-r, .in-view.ag-fade, .in-view.ag-scale {
    opacity: 1; transform: none;
}

@keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.float { animation: float-soft 6s ease-in-out infinite; }

@keyframes hairline-pulse {
    0%, 100% { background: var(--brass); }
    50% { background: var(--brass-l); }
}

/* ============================================================
 * Topbar
 * ============================================================ */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 18px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}
.topbar.scrolled {
    background: rgba(250, 246, 239, 0.94);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    padding: 12px 0;
    border-color: var(--hairline);
}
.topbar .row {
    width: var(--container-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand-mark {
    display: flex; align-items: center; gap: 12px;
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 16px;
}
.brand-mark .seal {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--brass-l) 0%, var(--ember) 100%);
    display: grid; place-items: center;
    color: #fcf5e2;
    font-family: var(--serif);
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(252, 245, 226, 0.35), 0 4px 14px rgba(140, 47, 26, 0.28);
}
.brand-mark .seal span { font-size: 18px; line-height: 1; transform: translateY(-1px); }

.brand-mark .copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-mark .copy .top { font-size: 13.5px; letter-spacing: 0.04em; color: var(--ember-d); }
.brand-mark .copy .bot { font-size: 11.5px; color: var(--ink-mute); font-family: var(--sans); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }

.nav-pc { display: flex; gap: 28px; align-items: center; }
.nav-pc a {
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    position: relative;
}
.nav-pc a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 1px;
    background: var(--ember);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-pc a:hover { color: var(--ember); }
.nav-pc a:hover::after { transform: scaleX(1); }

.cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid var(--ink);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.cta-btn:hover { background: var(--ember); border-color: var(--ember); color: #fff; transform: translateY(-1px); }
.cta-btn.outline { background: transparent; color: var(--ink); }
.cta-btn.outline:hover { background: var(--ink); color: var(--cream); }
.cta-btn.brass { background: linear-gradient(135deg, var(--brass-l), var(--brass)); border: 0; color: #fff; }
.cta-btn.brass:hover { background: linear-gradient(135deg, var(--brass), var(--ember)); }
.cta-btn.lg { padding: 14px 26px; font-size: 14px; }

.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    background: transparent; border: 1px solid var(--hairline-2);
    border-radius: 10px;
    align-items: center; justify-content: center;
    flex-direction: column; gap: 4px;
    cursor: pointer;
}
.menu-toggle span { width: 18px; height: 1.5px; background: var(--ink); display: block; transition: 0.25s; }

/* Mobile drawer */
.drawer {
    position: fixed; inset: 0;
    background: var(--cream);
    z-index: 80;
    padding: 80px 32px 40px;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(.16,.84,.34,1);
    display: none;
    flex-direction: column;
}
.drawer.open { transform: translateY(0); }
.drawer .x {
    position: absolute; top: 22px; right: 22px;
    width: 44px; height: 44px;
    background: transparent; border: 1px solid var(--hairline-2);
    border-radius: 10px;
    display: grid; place-items: center;
    cursor: pointer;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 20px;
}
.drawer nav { display: flex; flex-direction: column; gap: 4px; margin-top: 30px; }
.drawer nav a {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    padding: 14px 0;
    border-bottom: 1px solid var(--hairline);
    letter-spacing: -0.02em;
}
.drawer .actions { display: flex; gap: 10px; margin-top: 28px; }
.drawer .actions .cta-btn { flex: 1; justify-content: center; }

/* ============================================================
 * Hero — editorial split (LEFT typography, RIGHT image stack)
 * ============================================================ */
.hero {
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero .container {
    width: var(--container-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero .lede { position: relative; }
.hero .eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--ember-d);
    margin-bottom: 32px;
}
.hero .eyebrow::before {
    content: "";
    width: 36px; height: 1px;
    background: var(--ember);
}
.hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-size: clamp(48px, 7.6vw, 120px);
    color: var(--ink);
}
.hero h1 .em {
    background: linear-gradient(120deg, var(--ember) 0%, var(--brass) 60%, var(--brass-l) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.hero h1 .stroke {
    -webkit-text-stroke: 1.5px var(--ink);
    color: transparent;
}
.hero .lead {
    margin: 36px 0 28px;
    font-family: var(--serif);
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 560px;
}
.hero .lead em { font-family: var(--display); font-style: italic; color: var(--ember-d); font-size: 1.08em; letter-spacing: 0.01em; }

.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

.hero .meta-rule {
    margin-top: 56px;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--hairline);
}
.hero .meta-rule .item .label {
    font-family: var(--sans); font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-mute); margin-bottom: 6px;
}
.hero .meta-rule .item .value {
    font-family: var(--serif); font-weight: 600;
    font-size: 15px; color: var(--ink); letter-spacing: -0.01em;
}

.hero .stack {
    position: relative;
    height: 600px;
}
.hero .stack .frame {
    position: absolute;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-2);
    background: var(--parch);
}
.hero .stack img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}
.hero .stack .f1 { width: 64%; height: 84%; top: 0; left: 0; }
.hero .stack .f2 { width: 50%; height: 56%; right: 0; bottom: 0; transform: translateZ(0); }
.hero .stack .f3 {
    width: 22%; height: 22%;
    bottom: -3%; left: 22%;
    border-radius: 50%;
    box-shadow: 0 12px 38px rgba(28,23,20,0.22);
}
.hero .stack .f3 img { object-position: center; }
.hero .badge-stamp {
    position: absolute; top: 24px; right: -10px;
    width: 138px; height: 138px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ember) 0%, var(--ember-d) 100%);
    color: var(--cream);
    display: grid; place-items: center; text-align: center;
    font-family: var(--serif); font-weight: 700; font-size: 13px;
    line-height: 1.3; letter-spacing: -0.01em;
    box-shadow: var(--shadow-2);
    z-index: 4;
    transform: rotate(-8deg);
}
.hero .badge-stamp::before {
    content: "";
    position: absolute; inset: 8px;
    border: 1px dashed rgba(252, 245, 226, 0.6);
    border-radius: 50%;
}
.hero .badge-stamp .num { font-family: var(--display); font-style: italic; font-size: 30px; line-height: 1; margin-bottom: 4px; color: var(--brass-l); }

/* ============================================================
 * Marquee strip
 * ============================================================ */
.marquee {
    background: var(--ink);
    color: var(--cream);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid var(--brass);
    border-bottom: 1px solid var(--brass);
    position: relative;
    z-index: 3;
}
.marquee .track {
    display: flex; gap: 64px;
    animation: marquee 50s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.marquee .item {
    display: inline-flex; align-items: center; gap: 18px;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.marquee .item .dot { color: var(--brass-l); font-family: var(--display); font-style: italic; }
.marquee .item em { color: var(--brass-l); font-family: var(--display); font-style: italic; font-weight: 500; }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
 * Section frame
 * ============================================================ */
section { position: relative; z-index: 2; }
.sec-pad { padding: 120px 0; }
.sec-pad-sm { padding: 80px 0; }
.container { width: var(--container); margin: 0 auto; }
.container-wide { width: var(--container-wide); margin: 0 auto; }

.sec-head {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 64px;
}
.sec-head .num {
    font-family: var(--display);
    font-style: italic;
    font-size: 16px;
    color: var(--ember);
    margin-bottom: 18px;
    letter-spacing: 0.06em;
}
.sec-head .num::before {
    content: "";
    display: inline-block;
    width: 28px; height: 1px;
    background: var(--ember);
    vertical-align: middle;
    margin-right: 12px;
}
.sec-head .label {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 14px;
}
.sec-head h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--ink);
}
.sec-head .desc {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 540px;
}

/* ============================================================
 * Dayparts — 4 horizontal scroll-snap panels (mobile)
 * Asymmetric grid (desktop)
 * ============================================================ */
.dayparts {
    background: linear-gradient(180deg, var(--cream) 0%, var(--parch) 100%);
}
.dayparts .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}
.dp-card {
    position: relative;
    background: var(--vanilla);
    border: 1px solid var(--hairline);
    border-radius: 6px;
    padding: 38px 32px 36px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.16,.84,.34,1), box-shadow 0.4s ease;
    display: flex; flex-direction: column;
    min-height: 380px;
}
.dp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.dp-card .num {
    font-family: var(--display); font-style: italic;
    color: var(--brass);
    font-size: 64px; line-height: 1;
    margin-bottom: 18px;
    opacity: 0.85;
}
.dp-card h3 {
    margin: 0 0 14px;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.dp-card p {
    margin: 0; color: var(--ink-soft);
    font-size: 14.5px; line-height: 1.7;
    flex-grow: 1;
}
.dp-card .pill {
    margin-top: 22px;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--sans);
    font-size: 11.5px;
    color: var(--ember-d);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.dp-card .pill::before {
    content: ""; width: 24px; height: 1px;
    background: var(--ember);
}
.dp-card .photo {
    position: absolute;
    inset: auto -20% -30% auto;
    width: 70%; aspect-ratio: 1 / 1;
    background-size: cover; background-position: center;
    opacity: 0.18; border-radius: 50%;
    transition: opacity 0.5s ease, transform 0.6s ease;
}
.dp-card:hover .photo { opacity: 0.32; transform: scale(1.06); }

.dp-card.dp-1 { grid-column: span 5; min-height: 480px; background: var(--ink); color: var(--cream); }
.dp-card.dp-1 h3 { color: var(--cream); }
.dp-card.dp-1 p { color: rgba(245, 235, 210, 0.78); }
.dp-card.dp-1 .num { color: var(--brass-l); opacity: 1; }
.dp-card.dp-1 .pill { color: var(--brass-l); }
.dp-card.dp-1 .pill::before { background: var(--brass-l); }
.dp-card.dp-2 { grid-column: span 7; }
.dp-card.dp-3 { grid-column: span 7; }
.dp-card.dp-4 { grid-column: span 5; min-height: 480px; background: linear-gradient(135deg, var(--ember-d), var(--ember)); color: var(--cream); }
.dp-card.dp-4 h3, .dp-card.dp-4 .num { color: var(--cream); }
.dp-card.dp-4 .num { opacity: 0.92; }
.dp-card.dp-4 p { color: rgba(255, 245, 230, 0.92); }
.dp-card.dp-4 .pill { color: rgba(255, 245, 230, 0.92); }
.dp-card.dp-4 .pill::before { background: var(--cream); }

/* ============================================================
 * Tenets — vertical timeline (numbered chapters, NOT 3-col grid)
 * ============================================================ */
.tenets { background: var(--parch); }
.tenets .container-wide {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.tenets .left { position: sticky; top: 110px; }
.tenets .timeline { display: flex; flex-direction: column; gap: 0; }
.tenet {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 28px;
    padding: 40px 0;
    border-top: 1px solid var(--hairline-2);
    position: relative;
}
.tenet:first-child { border-top: 1px solid var(--ink); }
.tenet:last-child { border-bottom: 1px solid var(--hairline-2); }
.tenet .label {
    font-family: var(--display); font-style: italic;
    font-size: 14px; letter-spacing: 0.08em;
    color: var(--ember);
}
.tenet .num {
    font-family: var(--serif); font-weight: 700;
    font-size: 56px; line-height: 1;
    color: var(--ink);
    -webkit-text-stroke: 1.2px var(--ink);
    color: transparent;
    margin-top: 6px;
}
.tenet h3 {
    margin: 0 0 14px;
    font-family: var(--serif); font-weight: 700;
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--ink);
}
.tenet p {
    margin: 0;
    font-family: var(--serif);
    font-size: 16.5px;
    line-height: 1.78;
    color: var(--ink-soft);
}
.tenet:hover .num { color: var(--ember); -webkit-text-stroke-color: var(--ember); transition: 0.4s ease; }

/* ============================================================
 * Stats band
 * ============================================================ */
.stats { background: var(--ink); color: var(--cream); padding: 70px 0; }
.stats .row {
    width: var(--container-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    align-items: center;
}
.stat { text-align: center; padding: 0 18px; border-right: 1px solid rgba(252, 245, 226, 0.18); }
.stat:last-child { border-right: 0; }
.stat .num {
    font-family: var(--display); font-style: italic;
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 1;
    color: var(--brass-l);
    letter-spacing: -0.02em;
}
.stat .num small { font-size: 0.5em; color: var(--cream); margin-left: 6px; font-style: normal; }
.stat .label {
    margin-top: 12px;
    font-family: var(--sans); font-size: 12.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 235, 210, 0.74);
}

/* ============================================================
 * Lookbook — horizontal carousel of signature dishes
 * ============================================================ */
.lookbook { background: var(--cream); padding: 120px 0 100px; }
.lookbook .container-wide { padding-right: 0; padding-left: 0; }
.lookbook .head-row {
    width: var(--container-wide);
    margin: 0 auto 56px;
}
.lookbook .scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(360px, 420px);
    gap: 28px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 8px 24px 32px max(24px, calc((100vw - 1480px) / 2 + 16px));
    scrollbar-width: thin;
    scrollbar-color: var(--brass) transparent;
}
.lookbook .scroller::-webkit-scrollbar { height: 6px; }
.lookbook .scroller::-webkit-scrollbar-thumb { background: var(--brass); border-radius: 3px; }
.lookbook .scroller::-webkit-scrollbar-track { background: rgba(184, 136, 71, 0.12); border-radius: 3px; }

.dish-card {
    scroll-snap-align: start;
    background: var(--vanilla);
    border: 1px solid var(--hairline);
    border-radius: 6px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.45s cubic-bezier(.16,.84,.34,1);
}
.dish-card:hover { transform: translateY(-8px); }
.dish-card .img {
    aspect-ratio: 4 / 5;
    background-size: cover; background-position: center;
    position: relative;
    overflow: hidden;
}
.dish-card .img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(28, 23, 20, 0.45) 100%);
    pointer-events: none;
}
.dish-card .img .index {
    position: absolute; top: 18px; right: 22px;
    font-family: var(--display); font-style: italic;
    font-size: 22px; color: var(--cream);
    background: rgba(28, 23, 20, 0.6);
    padding: 4px 14px; border-radius: 999px;
    letter-spacing: 0.04em;
}
.dish-card .body {
    padding: 26px 26px 30px;
    display: flex; flex-direction: column; gap: 10px;
    flex-grow: 1;
}
.dish-card .name {
    font-family: var(--serif); font-weight: 700;
    font-size: 22px; letter-spacing: -0.02em; color: var(--ink);
}
.dish-card .tag {
    font-family: var(--sans); font-size: 12px;
    color: var(--ember); letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 4px;
}
.dish-card .copy { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); flex-grow: 1; }

.scroll-hint {
    width: var(--container-wide);
    margin: 18px auto 0;
    display: flex; align-items: center; gap: 12px;
    font-family: var(--display); font-style: italic;
    color: var(--ink-mute);
    font-size: 14px;
}
.scroll-hint::after {
    content: "";
    flex-grow: 1; height: 1px;
    background: linear-gradient(90deg, var(--brass) 0%, transparent 70%);
}

/* ============================================================
 * Editorial spread — 2-col with pull quote
 * ============================================================ */
.spread { background: var(--parch); padding: 130px 0; }
.spread .grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}
.spread .img-stack {
    position: relative;
    aspect-ratio: 4 / 5;
}
.spread .img-stack .main {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    border-radius: 4px;
    box-shadow: var(--shadow-2);
}
.spread .img-stack .accent {
    position: absolute;
    width: 56%; aspect-ratio: 4 / 5;
    bottom: -8%; right: -10%;
    background-size: cover; background-position: center;
    border-radius: 4px;
    box-shadow: var(--shadow-2);
    border: 6px solid var(--cream);
}

.spread .copy h2 {
    margin: 0 0 28px;
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--ink);
}
.spread .copy h2 em { font-family: var(--display); color: var(--ember); font-weight: 500; }
.spread .copy .pull-quote {
    font-family: var(--display); font-style: italic;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.4;
    color: var(--ember-d);
    border-left: 3px solid var(--brass);
    padding-left: 24px;
    margin: 32px 0;
    letter-spacing: 0.005em;
}
.spread .copy .body { font-family: var(--serif); font-size: 16.5px; line-height: 1.85; color: var(--ink-soft); }
.spread .copy .body p { margin: 0 0 18px; }
.spread .copy .signature { margin-top: 32px; font-family: var(--display); font-style: italic; color: var(--ink); font-size: 16px; letter-spacing: 0.04em; }
.spread .copy .signature::before { content: "— "; color: var(--ember); }

/* ============================================================
 * Broadcast band
 * ============================================================ */
.broadcast {
    background: linear-gradient(180deg, var(--vanilla) 0%, var(--cream) 100%);
    padding: 90px 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}
.broadcast .row {
    width: var(--container);
    margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.broadcast .copy h3 {
    margin: 0 0 12px;
    font-family: var(--serif); font-weight: 700;
    font-size: clamp(26px, 2.6vw, 34px); letter-spacing: -0.025em;
    color: var(--ink);
}
.broadcast .copy p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.broadcast .channels { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.broadcast .channel {
    background: #fff;
    border: 1px solid var(--hairline);
    padding: 24px;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.broadcast .channel:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }
.broadcast .channel .station {
    font-family: var(--display); font-style: italic;
    font-size: 32px; color: var(--ember); letter-spacing: 0.04em;
}
.broadcast .channel .program { margin-top: 8px; font-family: var(--serif); font-weight: 600; font-size: 15px; color: var(--ink); }
.broadcast .channel .ep { margin-top: 4px; font-family: var(--sans); font-size: 12px; color: var(--ink-mute); letter-spacing: 0.12em; text-transform: uppercase; }

/* ============================================================
 * Gallery — asymmetric magazine grid
 * ============================================================ */
.gallery { background: var(--cream); padding: 120px 0; }
.gallery .grid {
    width: var(--container-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 130px;
    gap: 14px;
}
.gal-tile {
    overflow: hidden;
    border-radius: 4px;
    background-size: cover; background-position: center;
    cursor: zoom-in;
    transition: transform 0.6s ease, filter 0.4s ease;
    position: relative;
}
.gal-tile::after {
    content: "";
    position: absolute; inset: 0;
    background: rgba(28, 23, 20, 0);
    transition: background 0.3s ease;
}
.gal-tile:hover { transform: scale(1.02); }
.gal-tile:hover::after { background: rgba(28, 23, 20, 0.18); }

.gal-1 { grid-column: span 4; grid-row: span 3; }
.gal-2 { grid-column: span 4; grid-row: span 2; }
.gal-3 { grid-column: span 2; grid-row: span 2; }
.gal-4 { grid-column: span 2; grid-row: span 2; }
.gal-5 { grid-column: span 4; grid-row: span 2; }
.gal-6 { grid-column: span 3; grid-row: span 3; }
.gal-7 { grid-column: span 3; grid-row: span 2; }
.gal-8 { grid-column: span 2; grid-row: span 2; }
.gal-9 { grid-column: span 4; grid-row: span 2; }
.gal-10{ grid-column: span 4; grid-row: span 2; }

/* Lightbox */
.lb {
    position: fixed; inset: 0;
    background: rgba(20, 16, 13, 0.94);
    z-index: 200; display: none;
    align-items: center; justify-content: center;
    padding: 32px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.lb.open { display: flex; }
.lb img { max-width: 92vw; max-height: 86vh; box-shadow: 0 30px 80px rgba(0,0,0,0.6); border-radius: 2px; }
.lb .x, .lb .nav {
    position: absolute; background: transparent; border: 1px solid rgba(245,235,210,0.4); color: var(--cream);
    width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-family: var(--serif); font-size: 22px;
    transition: 0.2s; display: grid; place-items: center;
}
.lb .x { top: 24px; right: 24px; }
.lb .nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb .nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb .x:hover, .lb .nav:hover { background: rgba(245,235,210,0.16); }
.lb .caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--cream); font-family: var(--display); font-style: italic; font-size: 14px; letter-spacing: 0.04em; }

/* ============================================================
 * Visit / Access
 * ============================================================ */
.visit { background: var(--parch); padding: 120px 0; }
.visit .grid {
    width: var(--container-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
}
.visit .info-panel {
    background: var(--vanilla);
    border: 1px solid var(--hairline);
    border-radius: 6px;
    padding: 44px 40px;
    box-shadow: var(--shadow-1);
}
.visit .info-panel .row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 22px;
    padding: 22px 0;
    border-top: 1px solid var(--hairline);
    align-items: start;
}
.visit .info-panel .row:first-child { border-top: 0; padding-top: 6px; }
.visit .info-panel .row .key {
    font-family: var(--sans); font-size: 11.5px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ember-d); padding-top: 4px;
}
.visit .info-panel .row .val {
    font-family: var(--serif); font-size: 16px;
    line-height: 1.7; color: var(--ink); letter-spacing: -0.005em;
}
.visit .info-panel .row .val .em { color: var(--ember-d); font-weight: 600; }
.visit .info-panel .row .val a { color: var(--ember); border-bottom: 1px solid rgba(179, 74, 44, 0.4); }
.visit .info-panel .row .val a:hover { border-color: var(--ember); }
.visit .info-panel .row .val .small { font-size: 14px; color: var(--ink-soft); display: block; margin-top: 4px; }
.visit .info-panel .actions {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    margin-top: 28px;
}

.visit .map-frame {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
    aspect-ratio: 4 / 4.6;
    min-height: 480px;
    background: var(--ink);
}
.visit .map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.visit .map-overlay {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--cream);
    padding: 22px 24px;
    border-radius: 4px;
    max-width: 320px;
    box-shadow: var(--shadow-2);
    border: 1px solid var(--hairline);
}
.visit .map-overlay h4 { margin: 0 0 6px; font-family: var(--serif); font-weight: 700; font-size: 17px; color: var(--ink); }
.visit .map-overlay p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.visit .map-overlay .gold-line { width: 28px; height: 2px; background: var(--brass); margin: 10px 0; }

/* ============================================================
 * Reviews — large editorial pull quotes
 * ============================================================ */
.reviews { background: var(--cream); padding: 130px 0; }
.reviews .head {
    width: var(--container);
    margin: 0 auto 56px;
    text-align: center;
}
.reviews .head .badge {
    display: inline-flex; align-items: baseline; gap: 8px;
    padding: 10px 20px;
    background: var(--ink); color: var(--brass-l);
    border-radius: 999px;
    font-family: var(--display); font-style: italic;
    font-size: 14px;
}
.reviews .head .badge strong { color: var(--cream); font-weight: 600; }
.reviews .head h2 {
    margin: 18px 0 12px;
    font-family: var(--serif); font-weight: 700;
    font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.035em;
    color: var(--ink);
}
.reviews .grid {
    width: var(--container);
    margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.review {
    background: var(--vanilla);
    border: 1px solid var(--hairline);
    border-radius: 6px;
    padding: 38px 32px 32px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }
.review .quote-mark {
    position: absolute; top: -28px; left: 26px;
    font-family: var(--display); font-style: italic;
    font-size: 110px; line-height: 1;
    color: var(--ember);
}
.review .text {
    font-family: var(--serif);
    font-size: 16px; line-height: 1.8;
    color: var(--ink-soft);
    margin: 24px 0 22px;
}
.review .meta { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--hairline); }
.review .who { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: 14px; }
.review .when { font-family: var(--display); font-style: italic; color: var(--ink-mute); font-size: 13px; margin-top: 2px; }
.review .source { margin-left: auto; font-family: var(--sans); font-size: 11px; color: var(--ember-d); letter-spacing: 0.18em; text-transform: uppercase; }

/* ============================================================
 * FAQ
 * ============================================================ */
.faq { background: var(--parch); padding: 120px 0; }
.faq .grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
}
.faq .head h2 {
    margin: 16px 0 18px;
    font-family: var(--serif); font-weight: 700;
    font-size: clamp(30px, 3.6vw, 48px); letter-spacing: -0.035em;
}
.faq .list { display: flex; flex-direction: column; }
.faq details {
    border-top: 1px solid var(--hairline-2);
    padding: 22px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--hairline-2); }
.faq summary {
    cursor: pointer;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 18px;
    color: var(--ink);
    list-style: none;
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 24px;
    letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    font-family: var(--display);
    color: var(--ember);
    font-size: 28px;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
    margin: 14px 0 0;
    font-family: var(--serif);
    color: var(--ink-soft);
    font-size: 16px; line-height: 1.78;
    padding-right: 40px;
}

/* ============================================================
 * Final CTA
 * ============================================================ */
.final-cta {
    position: relative;
    color: var(--cream);
    padding: 140px 0 130px;
    overflow: hidden;
    isolation: isolate;
}
.final-cta::before {
    content: "";
    position: absolute; inset: 0; z-index: -2;
    background-image: var(--cta-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    will-change: transform;
}
.final-cta::after {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(140, 47, 26, 0.86) 0%, rgba(28, 23, 20, 0.88) 100%);
}
.final-cta .container { text-align: center; max-width: 880px; }
.final-cta .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--sans); font-size: 12px; letter-spacing: 0.32em;
    text-transform: uppercase; color: var(--brass-l);
    margin-bottom: 22px;
}
.final-cta .eyebrow::before, .final-cta .eyebrow::after {
    content: ""; width: 30px; height: 1px; background: var(--brass-l);
}
.final-cta h2 {
    margin: 0 0 24px;
    font-family: var(--serif); font-weight: 800;
    font-size: clamp(36px, 5.4vw, 72px);
    line-height: 1.05; letter-spacing: -0.04em;
    color: var(--cream);
}
.final-cta p {
    font-family: var(--serif); font-size: 18px; line-height: 1.7;
    color: rgba(245, 235, 210, 0.86);
    margin: 0 auto 40px;
    max-width: 620px;
}
.final-cta .cta-row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.final-cta .cta-btn { padding: 16px 30px; font-size: 14px; }
.final-cta .cta-btn.outline { color: var(--cream); border: 1px solid rgba(245,235,210,0.4); background: transparent; }
.final-cta .cta-btn.outline:hover { background: var(--cream); color: var(--ink); }
.final-cta .cta-btn.brass { color: #fff; }

/* ============================================================
 * Footer
 * ============================================================ */
.footer {
    background: var(--ink);
    color: rgba(245, 235, 210, 0.72);
    padding: 80px 0 36px;
    font-size: 14px;
}
.footer .grid {
    width: var(--container-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245,235,210,0.12);
}
.footer h4 {
    margin: 0 0 18px;
    font-family: var(--serif); font-weight: 600;
    font-size: 15px; color: var(--cream);
    letter-spacing: 0.02em;
}
.footer .biz {
    font-family: var(--sans);
    font-size: 13px; line-height: 1.85;
    color: rgba(245,235,210,0.58);
}
.footer .biz strong { color: var(--brass-l); font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer ul a { color: rgba(245,235,210,0.78); }
.footer ul a:hover { color: var(--brass-l); }
.footer .col-brand .seal {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brass-l) 0%, var(--ember) 100%);
    display: grid; place-items: center;
    color: #fcf5e2;
    font-family: var(--serif); font-weight: 700; font-size: 24px;
    margin-bottom: 22px;
}
.footer .col-brand p { margin: 0 0 22px; font-family: var(--serif); font-size: 16px; line-height: 1.7; color: rgba(245,235,210,0.84); max-width: 320px; }
.footer .legal {
    width: var(--container-wide);
    margin: 24px auto 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: rgba(245,235,210,0.5);
    letter-spacing: 0.04em;
}
.footer .legal a { color: rgba(245,235,210,0.72); margin-left: 18px; }

/* Mobile sticky CTA */
.mob-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
    display: none;
    background: var(--ink);
    border-top: 1px solid rgba(245,235,210,0.18);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 8px;
}
.mob-cta .cta-btn { flex: 1; justify-content: center; padding: 12px 14px; font-size: 13px; border-radius: 8px; }

/* ============================================================
 * Responsive
 * ============================================================ */
@media (max-width: 1100px) {
    .nav-pc { display: none; }
    .menu-toggle { display: inline-flex; }
    .drawer { display: flex; }
    .hero .container { grid-template-columns: 1fr; gap: 48px; }
    .hero .stack { height: 480px; max-width: 540px; margin: 0 auto; width: 100%; }
    .sec-head { grid-template-columns: 1fr; gap: 20px; }
    .dayparts .grid { grid-template-columns: repeat(6, 1fr); }
    .dp-card.dp-1, .dp-card.dp-2, .dp-card.dp-3, .dp-card.dp-4 { grid-column: span 6; min-height: 320px; }
    .tenets .container-wide { grid-template-columns: 1fr; gap: 40px; }
    .tenets .left { position: static; }
    .stats .row { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .stat:nth-child(2) { border-right: 0; }
    .spread .grid { grid-template-columns: 1fr; gap: 60px; }
    .broadcast .row { grid-template-columns: 1fr; gap: 32px; }
    .gallery .grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; }
    .gal-1, .gal-5, .gal-9, .gal-10 { grid-column: span 4; grid-row: span 2; }
    .gal-2, .gal-6 { grid-column: span 4; grid-row: span 2; }
    .gal-3, .gal-4, .gal-7, .gal-8 { grid-column: span 2; grid-row: span 2; }
    .visit .grid { grid-template-columns: 1fr; }
    .reviews .grid { grid-template-columns: 1fr; }
    .faq .grid { grid-template-columns: 1fr; gap: 32px; }
    .footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
    body { font-size: 15px; }
    .sec-pad { padding: 80px 0; }
    .topbar .row { gap: 12px; }
    .brand-mark .copy .bot { display: none; }
    .hero { padding-top: 110px; min-height: 0; }
    .hero h1 { font-size: clamp(40px, 13vw, 64px); }
    .hero .meta-rule { grid-template-columns: 1fr; gap: 14px; }
    .hero .stack { height: 380px; }
    .hero .stack .f1 { width: 70%; height: 80%; }
    .hero .stack .f2 { width: 56%; height: 50%; }
    .hero .badge-stamp { width: 110px; height: 110px; font-size: 11px; top: 10px; right: -6px; }
    .marquee .item { font-size: 17px; gap: 14px; }
    .marquee .track { gap: 40px; }
    .dayparts .grid { grid-template-columns: 1fr; }
    .dp-card.dp-1, .dp-card.dp-2, .dp-card.dp-3, .dp-card.dp-4 { grid-column: span 1; min-height: 280px; padding: 30px 24px; }
    .stats .row { grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 24px; }
    .stat .num { font-size: 48px; }
    .lookbook .scroller { grid-auto-columns: 80vw; padding-left: 24px; padding-right: 24px; }
    .gallery .grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 100px; }
    .gal-1, .gal-5, .gal-9, .gal-10, .gal-2, .gal-6 { grid-column: span 2; grid-row: span 2; }
    .gal-3, .gal-4, .gal-7, .gal-8 { grid-column: span 1; grid-row: span 2; }
    .visit .info-panel { padding: 28px 22px; }
    .visit .info-panel .row { grid-template-columns: 100px 1fr; gap: 14px; padding: 18px 0; }
    .visit .info-panel .actions { grid-template-columns: 1fr; }
    .reviews .head h2, .faq .head h2 { font-size: 30px; }
    .footer .grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
    .footer .legal { flex-direction: column; gap: 10px; text-align: center; }
    .mob-cta { display: flex; }
    body { padding-bottom: 70px; }
}

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .ag-rise, .ag-drift-l, .ag-drift-r, .ag-fade, .ag-scale { opacity: 1 !important; transform: none !important; }
}
