:root {
  --paper:       #f8f5f0;      /* warm off-white */
  --ink:         #2b2823;      /* warm near-black */
  --muted:       #8d877c;
  --line:        #ded6c7;
  --sienna:      #8c4f2d;
  --serif:       "Fraunces", "Times New Roman", serif;
  --sans:        "Inter", system-ui, sans-serif;
  --pad:         clamp(24px, 6vw, 96px);
  --max:         1200px;
  --ease:        cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-weight: 300; font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1em; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 300; letter-spacing: -0.01em; line-height: 1.08; margin: 0 0 .6em; }

/* ───────── Nav — hairline, no background ───────── */
.she-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 26px var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.she-nav.scrolled { background: var(--paper); border-bottom-color: var(--line); }
.she-nav.on-hero { color: #fff; }
.she-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 32px; }
.she-nav .brand {
  font-family: var(--serif); font-size: 15px; letter-spacing: .4em; font-weight: 400;
  font-style: italic; text-transform: uppercase; text-align: center;
}
.she-right { justify-content: flex-end; display: flex; align-items: center; gap: 28px; }
.she-reserve {
  border: 1px solid currentColor; padding: 8px 18px; transition: background .3s, color .3s, border-color .3s;
}
.she-reserve:hover { background: var(--sienna); color: #fff; border-color: var(--sienna); }
.she-burger { display: none; background: transparent; border: 0; color: inherit; font-size: 20px; letter-spacing: 0; text-transform: none; cursor: pointer; padding: 4px 8px; }
@media (max-width: 900px) {
  .she-nav { grid-template-columns: 1fr auto; padding: 18px var(--pad); }
  .she-left, .she-right .she-reserve, .she-right .she-tel { display: none; }
  .she-brand-col { order: 1; text-align: left; }
  .she-right { order: 2; }
  .she-burger { display: inline-block; }
  .she-nav .brand { font-size: 13px; letter-spacing: .34em; text-align: left; }
}

.she-panel {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: 32px var(--pad); display: flex; flex-direction: column;
  transform: translateY(-100%); transition: transform .55s var(--ease); visibility: hidden;
  overflow-y: auto;
}
.she-panel.open { transform: translateY(0); visibility: visible; }
.she-panel-head { display: flex; justify-content: space-between; align-items: center; }
.she-panel .close { background: transparent; border: 0; color: var(--paper); font-size: 22px; cursor: pointer; }
.she-panel ul { list-style: none; margin: 40px 0 0; padding: 0; }
.she-panel li { border-bottom: 1px solid rgba(248,245,240,.12); }
.she-panel a {
  display: block; padding: 20px 0; font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(28px, 7vw, 38px);
}
.she-panel a:hover { color: #e5a47c; }

/* ───────── Hero — ultra-minimal, type is the star ───────── */
.hero {
  height: 100vh; min-height: 680px; position: relative; color: #fff; overflow: hidden;
  display: flex; align-items: center; justify-content: flex-start;
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(45deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.1) 50%, rgba(0,0,0,.4) 100%); }
.hero .copy { position: relative; z-index: 2; padding: 0 var(--pad); max-width: 900px; }
.hero .loc {
  font-size: 11px; letter-spacing: .5em; text-transform: uppercase; color: #ede4d5;
  margin-bottom: 40px; display: inline-block; padding: 6px 14px; border: 1px solid rgba(255,255,255,.4);
  opacity: 0; animation: up 1.1s .35s var(--ease) forwards;
}
.hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(44px, 8.5vw, 128px);
  line-height: .96; letter-spacing: -0.02em;
  max-width: 13ch; margin: 0 0 28px;
  opacity: 0; animation: up 1.3s .55s var(--ease) forwards;
}
.hero h1 em { font-family: var(--serif); font-style: italic; font-weight: 300; }
.hero .sub {
  font-size: 16px; max-width: 40ch; line-height: 1.7;
  color: rgba(255,255,255,.9);
  opacity: 0; animation: up 1.3s .75s var(--ease) forwards;
}
.hero .meta {
  position: absolute; bottom: 40px; right: var(--pad); z-index: 2;
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: in 2s 1.5s var(--ease) forwards;
}
.hero .meta::before { content: ""; width: 40px; height: 1px; background: currentColor; }
@media (max-width: 700px) {
  .hero .meta { display: none; }
  .hero .copy { padding: 80px var(--pad) 60px; }
}
@keyframes up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes in { to { opacity: 1; } }

/* ───────── Chapter — editorial, single column, wide margins ───────── */
.chapter { padding: clamp(80px, 14vw, 180px) 0; }
.chapter.dark { background: var(--ink); color: var(--paper); }

.chapter-head {
  max-width: 820px; margin: 0 auto 80px; padding: 0 var(--pad); text-align: left;
}
.chapter-head .no { font-family: var(--serif); font-size: 13px; letter-spacing: .4em; color: var(--muted); text-transform: uppercase; margin-bottom: 20px; display: block; }
.chapter-head h2 { font-size: clamp(36px, 5.8vw, 80px); font-weight: 300; max-width: 18ch; margin: 0; line-height: 1.05; }
.chapter-head h2 em { font-style: italic; color: var(--sienna); }
.chapter-head .lede { margin-top: 40px; font-size: 18px; max-width: 56ch; color: #4a453e; }

/* Asymmetric grid: text narrow-left, image wide-right (alternates) */
.asym { display: grid; grid-template-columns: 4fr 6fr; gap: 80px; max-width: var(--max); margin: 0 auto clamp(80px, 12vw, 160px); padding: 0 var(--pad); align-items: end; }
.asym.reverse { grid-template-columns: 6fr 4fr; }
.asym.reverse > :first-child { order: 2; }
.asym .txt .label { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--sienna); margin-bottom: 24px; display: block; }
.asym .txt h3 { font-size: clamp(28px, 3.6vw, 54px); font-weight: 300; max-width: 16ch; margin: 0 0 24px; line-height: 1.05; }
.asym .txt h3 em { font-style: italic; color: var(--sienna); }
.asym .txt .body { font-size: 16px; max-width: 44ch; line-height: 1.85; color: #534d44; }
.asym .txt .more {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 28px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  padding-bottom: 4px; border-bottom: 1px solid var(--ink); transition: gap .3s, border-color .3s;
}
.asym .txt .more:hover { gap: 20px; border-color: var(--sienna); color: var(--sienna); }
.asym .image { aspect-ratio: 3/4; overflow: hidden; }
.asym .image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease); filter: saturate(.85); }
.asym .image:hover img { transform: scale(1.04); }
@media (max-width: 900px) {
  .asym, .asym.reverse { grid-template-columns: 1fr; gap: 40px; }
  .asym.reverse > :first-child { order: 0; }
}

/* Index list (restaurants — editorial table, not tiles) */
.index-table { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.index-row {
  display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 60px;
  align-items: start;
  padding: 60px 0; border-top: 1px solid var(--line);
  transition: padding .4s var(--ease), background .4s var(--ease);
}
.index-row:last-child { border-bottom: 1px solid var(--line); }
.index-row:hover { padding-left: 24px; padding-right: 24px; background: rgba(140,79,45,.04); }
.index-row .num { font-family: var(--serif); font-size: 14px; letter-spacing: .25em; color: var(--muted); font-style: italic; }
.index-row h4 { font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px); font-weight: 300; margin: 0 0 12px; }
.index-row h4 em { font-style: italic; }
.index-row p { font-size: 15px; color: #534d44; max-width: 48ch; margin: 0 0 16px; }
.index-row .cuisine { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--sienna); display: block; margin-bottom: 10px; }
.index-row .arrow { justify-self: end; font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--sienna); transition: transform .4s var(--ease); }
.index-row:hover .arrow { transform: translateX(10px); }
@media (max-width: 900px) {
  .index-row { grid-template-columns: 1fr; gap: 12px; padding: 40px 0; }
  .index-row .arrow { justify-self: start; }
}

/* Pull-quote — magazine style */
.pull {
  max-width: 960px; margin: 0 auto; padding: clamp(80px, 14vw, 160px) var(--pad); text-align: center;
}
.pull p {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(28px, 4.5vw, 56px); line-height: 1.2; letter-spacing: -0.01em;
  margin: 0 auto 28px; max-width: 22ch;
}
.pull p em { color: var(--sienna); font-weight: 400; }
.pull cite { font-style: normal; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.pull::before { content: ""; display: block; width: 40px; height: 1px; background: var(--sienna); margin: 0 auto 40px; }

/* Full-bleed portrait */
.portrait {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; overflow: hidden;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; min-height: 80vh; }
.portrait .txt { padding: clamp(60px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; background: var(--ink); color: var(--paper); }
.portrait .txt .label { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: #d9a37a; margin-bottom: 24px; }
.portrait .txt h3 { font-size: clamp(32px, 4vw, 56px); font-weight: 300; margin: 0 0 24px; max-width: 16ch; }
.portrait .txt h3 em { font-style: italic; }
.portrait .txt p { font-size: 16px; color: rgba(248,245,240,.75); max-width: 44ch; line-height: 1.8; }
@media (max-width: 900px) { .portrait { grid-template-columns: 1fr; } .portrait img { min-height: 60vh; } }

/* Contact / footer */
.contact {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.contact-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 300; margin: 0 0 40px; max-width: 14ch; }
.contact h2 em { font-style: italic; color: var(--sienna); }
.contact .row { padding: 18px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 100px 1fr; gap: 24px; font-size: 15px; line-height: 1.7; }
.contact .row:last-child { border-bottom: 1px solid var(--line); }
.contact .row .k { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--sienna); padding-top: 3px; }
.contact .map { aspect-ratio: 4/5; }
.contact .map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4); }
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 40px; } }

/* Page hero (non-home) */
.page-hero { height: 60vh; min-height: 440px; position: relative; color: #fff; display: flex; align-items: center; justify-content: flex-start; overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.1) 60%); }
.page-hero .wrap { position: relative; z-index: 2; max-width: var(--max); margin: 0; padding: 0 var(--pad); }
.page-hero .no { font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: #e5a47c; margin-bottom: 24px; display: inline-block; padding: 4px 12px; border: 1px solid rgba(255,255,255,.45); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(48px, 8vw, 104px); font-weight: 300; font-style: italic; margin: 0; max-width: 14ch; line-height: 1; }
.prose { max-width: 760px; margin: 0 auto; padding: clamp(80px, 12vw, 140px) var(--pad); font-size: 17px; line-height: 1.9; font-weight: 300; }
.prose h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 300; font-style: italic; margin: 2em 0 .6em; color: var(--sienna); }
.prose h3 { font-size: clamp(20px, 2.5vw, 28px); margin: 2em 0 .5em; font-weight: 400; }
.prose img { margin: 2em 0; }
.prose a { color: var(--sienna); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: border-color .3s; }
.prose a:hover { border-color: var(--sienna); }

/* Footer */
.she-footer {
  background: var(--ink); color: var(--paper);
  padding: 100px var(--pad) 40px;
}
.she-footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(248,245,240,.1); }
.she-footer-grid h5 { font-family: var(--sans); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; font-weight: 500; margin-bottom: 20px; color: #d9a37a; }
.she-footer-grid ul { list-style: none; padding: 0; margin: 0; line-height: 2; font-size: 14px; }
.she-footer-grid a { opacity: .7; }
.she-footer-grid a:hover { opacity: 1; color: #e5a47c; }
.she-footer .mark { font-family: var(--serif); font-style: italic; font-size: 32px; letter-spacing: .05em; margin-bottom: 16px; }
.she-footer-bot { max-width: var(--max); margin: 0 auto; padding-top: 28px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(248,245,240,.4); display: flex; justify-content: space-between; }
@media (max-width: 900px) { .she-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .she-footer-bot { flex-direction: column; gap: 12px; text-align: center; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
body.menu-open { overflow: hidden; }
