/* ---- Tokens ---- */
:root{
  --bg: #0E0C0A;
  --bg-2: #14110D;
  --bg-3: #1B1712;
  --bg-deep: #050402;
  --cream: #F4ECDA;
  --cream-soft: rgba(244,236,218,0.72);
  --cream-mute: rgba(244,236,218,0.5);
  --accent: #D63A2A;
  --accent-deep: #A82A1F;
  --hairline: rgba(244,236,218,0.13);

  --display: "Fraunces", "Times New Roman", Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 4.5vw, 56px);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference){
  html{ scroll-behavior: smooth; }
}

body{
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{ display: block; max-width: 100%; height: auto; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
::selection{ background: var(--accent); color: var(--cream); }

h1, h2, h3, h4{
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow{
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ============ HEADER ============ */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  padding-block: 18px;
  color: var(--cream);
  transition: background .25s ease, padding .25s ease;
}
.site-header::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,4,2,0.62) 0%, rgba(5,4,2,0) 100%);
  pointer-events: none;
}
.nav-row{
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
  gap: 16px;
}
.brand{
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(22px, 3vw, 26px);
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1;
  display: inline-flex; align-items: baseline; gap: 3px;
}
.brand .dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  transform: translateY(-2px);
}
.order-cta{
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--cream);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600; font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .15s ease, transform .15s ease;
}
.order-cta:hover{ background: var(--accent-deep); }
.order-cta:active{ transform: translateY(1px); }

/* ============ HERO ============ */
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.hero-bg{ position: absolute; inset: 0; z-index: -2; }
.hero-bg img{
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after{
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(5,4,2,0.65) 0%, rgba(5,4,2,0.25) 35%, rgba(5,4,2,0.95) 100%),
    linear-gradient(90deg, rgba(5,4,2,0.55) 0%, rgba(5,4,2,0) 60%);
}
.hero-body{
  width: 100%;
  padding-block: clamp(120px, 14vw, 200px);
}
.hero-eyebrow{
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-family: var(--sans); font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-eyebrow::before{
  content: ""; width: 32px; height: 1px;
  background: var(--accent);
}
.hero h1{
  font-size: clamp(64px, 13vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--cream);
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  max-width: 12ch;
}
.hero h1 em{
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--accent);
}
.hero-lede{
  font-family: var(--display);
  font-variation-settings: "opsz" 14, "SOFT" 50;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  max-width: 32ch;
  margin: 0 0 40px;
  color: rgba(244,236,218,0.96);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-actions{
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center;
}
.btn-primary{
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--accent); color: var(--cream);
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 600; font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .15s ease, transform .15s ease;
}
.btn-primary:hover{ background: var(--accent-deep); }
.btn-primary:active{ transform: translateY(1px); }
.btn-ghost{
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--cream);
  padding: 18px 26px;
  border: 1px solid rgba(244,236,218,0.45);
  border-radius: 999px;
  font-weight: 600; font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .15s ease, border-color .15s ease;
}
.btn-ghost:hover{ background: rgba(244,236,218,0.06); border-color: var(--cream); }

/* ============ SECTIONS SHARED ============ */
section{ padding-block: clamp(80px, 11vw, 160px); }
.section-head{ margin-bottom: clamp(48px, 7vw, 80px); max-width: 720px; }
.section-head h2{
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.96;
  margin-bottom: 0;
}
.section-head .lede{
  margin-top: 24px;
  max-width: 56ch;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.55;
  color: var(--cream-soft);
}

/* ============ MENU ============ */
.menu{ background: var(--bg); position: relative; }
.menu-feature{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(48px, 7vw, 80px);
}
.menu-card{
  display: flex; flex-direction: column; gap: 18px;
  background: var(--bg-2);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 22px 22px 26px;
  transition: transform .25s ease, border-color .25s ease;
}
.menu-card:hover{
  transform: translateY(-4px);
  border-color: rgba(214,58,42,0.4);
}
.menu-card .img-frame{
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
}
.menu-card .img-frame img{
  width: 92%; height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.5));
}
.menu-card h3{
  font-size: clamp(26px, 3vw, 34px);
  font-variation-settings: "opsz" 60, "SOFT" 50;
  margin: 0;
}
.menu-card .desc{
  color: var(--cream-soft);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
.menu-cat{
  margin-bottom: clamp(56px, 8vw, 96px);
}
.menu-cat:last-of-type{ margin-bottom: 0; }
.menu-cat > h3{
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(36px, 4.6vw, 56px);
  color: var(--accent);
  margin: 0 0 18px;
  letter-spacing: -0.015em;
  line-height: 1;
}
.menu-cat .cat-intro{
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--cream-soft);
  margin: 0 0 36px;
}

.menu-list{
  border-top: 1px solid var(--hairline);
}
.menu-row{
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}
.menu-row h4{
  font-size: clamp(22px, 2.4vw, 28px);
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "SOFT" 50;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--cream);
  line-height: 1.15;
}
.menu-row .desc{
  color: var(--cream-soft);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  max-width: 76ch;
}
.menu-row .tag{
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(214,58,42,0.12);
  padding: 3px 8px; border-radius: 2px;
  margin-left: 10px;
  vertical-align: 2px;
}
.menu-note{
  margin-top: 28px;
  font-size: 13px; font-style: italic;
  color: var(--cream-mute);
}

/* ============ STORY ============ */
.story{ background: var(--bg-2); position: relative; overflow: hidden; }
.story-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.story-copy p{
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 50;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  margin: 0 0 22px;
  color: var(--cream);
}
.story-copy p:last-child{ margin-bottom: 0; }
.story-copy .pull{
  font-style: italic;
  color: var(--accent);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.story-stamp{
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.story-stamp img{
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 16px 48px rgba(214,58,42,0.25));
}

/* ============ WHERE ============ */
.where{ background: var(--bg); }
.where-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--hairline);
}
.where-block{
  padding-top: 32px;
  border-right: 1px solid var(--hairline);
  padding-right: clamp(20px, 3vw, 36px);
}
.where-block:last-child{ border-right: 0; padding-right: 0; }
.where-block h3{
  font-family: var(--sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.where-block .where-name{
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "SOFT" 50;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--cream);
}
.where-block p{
  font-size: 16px;
  line-height: 1.55;
  color: var(--cream-soft);
  margin: 0 0 8px;
}
.where-block .tel{
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "SOFT" 50;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--accent);
  display: inline-block;
  margin-top: 8px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.where-block .tel:hover{ color: var(--cream); border-color: var(--cream); }
.placeholder-note{
  font-size: 13px; font-style: italic;
  color: var(--cream-mute);
}

.hours-list{ display: flex; flex-direction: column; }
.hours-list .day{
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 16px;
  color: var(--cream);
}
.hours-list .day:last-child{ border-bottom: 0; }
.hours-list .day .time{
  color: var(--cream-soft);
  font-variant-numeric: tabular-nums;
}

/* ============ CONTACT ============ */
.contact{
  background: var(--bg-2);
  text-align: center;
}
.contact .wrap{
  display: flex; flex-direction: column; align-items: center;
}
.contact .eyebrow{ color: var(--accent); }
.contact h2{
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.96;
  margin-bottom: 36px;
}
.contact h2 em{
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--accent);
}
.contact-sub{
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 50;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.4;
  color: var(--cream-soft);
  max-width: 44ch;
  margin: 0 0 40px;
  text-align: center;
}
.contact-tel{
  display: inline-block;
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 6vw, 72px);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.01em;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  margin-bottom: 36px;
}
.contact-tel:hover{ color: var(--cream); border-color: var(--cream); }
.contact-meta{
  display: flex; flex-wrap: wrap; gap: 16px 28px;
  justify-content: center;
  font-size: 15px;
  color: var(--cream-soft);
}
.contact-meta a{
  color: var(--cream);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: color .15s ease, border-color .15s ease;
}
.contact-meta a:hover{ color: var(--accent); }

/* ============ FOOTER ============ */
footer{
  background: var(--bg-deep);
  color: var(--cream-mute);
  padding: 32px 0;
  font-size: 13px;
  border-top: 1px solid var(--hairline);
}
.foot-row{
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap;
}
.foot-brand{
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 700;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.foot-brand .dot{
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  transform: translateY(-3px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px){
  .menu-feature{ grid-template-columns: repeat(2, 1fr); }
  .menu-feature .menu-card:nth-child(3){
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
  }
  .menu-feature .menu-card:nth-child(3) .img-frame{
    aspect-ratio: 1/1;
    width: 200px; flex: none;
  }
  .menu-feature .menu-card:nth-child(3) > div{
    display: flex; flex-direction: column; gap: 14px;
    flex: 1;
  }
  .story-grid{ grid-template-columns: 1fr; gap: 48px; }
  .story-stamp{ order: -1; }
  .story-stamp img{ max-width: 280px; }
  .where-grid{ grid-template-columns: 1fr 1fr; }
  .where-block:nth-child(2){ border-right: 0; padding-right: 0; }
  .where-block:nth-child(3){ grid-column: 1 / -1; padding-top: 32px; border-top: 1px solid var(--hairline); }
}
@media (max-width: 700px){
  body{ font-size: 16px; }
  .order-cta{ padding: 8px 14px; font-size: 12px; }
  .order-cta .label{ display: none; }
  .menu-feature{ grid-template-columns: 1fr; }
  .menu-feature .menu-card:nth-child(3){
    grid-column: auto;
    flex-direction: column;
  }
  .menu-feature .menu-card:nth-child(3) .img-frame{
    width: 100%; aspect-ratio: 1/1;
  }
  .menu-feature .menu-card:nth-child(3) > div{ display: contents; }
  .menu-row{ padding: 18px 0; }
  .where-grid{ grid-template-columns: 1fr; }
  .where-block{ border-right: 0; padding-right: 0; padding-top: 28px; border-top: 1px solid var(--hairline); }
  .where-block:first-child{ border-top: 0; padding-top: 32px; }
  .hero-actions{ width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost{ width: 100%; justify-content: center; }
  .btn-primary, .btn-ghost{ padding: 16px 22px; font-size: 12px; }
}
