/* ============================================================
   TKO Round 2 — appetite-first design system (v2)
   Display: DM Serif Display · Body: Barlow · Accent tags: Anton
   Palette: warm cream, rich espresso ink, terracotta, honey gold
   ============================================================ */

@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dm-serif-display-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/anton-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/barlow-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/barlow-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/barlow-latin-700-normal.woff2') format('woff2');
}

:root {
  --cream: #faf4ea;        /* page ground */
  --cream-deep: #f3e9d8;   /* alt band */
  --card: #fffdf8;         /* raised card */
  --ink: #26180c;          /* espresso, near-black warm */
  --ink-soft: #6d5a45;     /* muted copy */
  --terra: #a63f0e;        /* terracotta — primary (5.2:1+ on all light grounds) */
  --terra-deep: #8a3209;
  --gold: #c99334;         /* honey gold accents */
  --gold-soft: #e5c98a;
  --dark: #2b1c0e;         /* dark band (reviews/footer) */
  --line: rgba(38, 24, 12, 0.12);
  --line-dark: rgba(250, 244, 234, 0.16);
  --radius: 14px;
  --shadow: 0 14px 40px rgba(38, 24, 12, 0.08);
  --shadow-photo: 0 24px 60px rgba(38, 24, 12, 0.18);
  --display: 'DM Serif Display', Georgia, serif;
  --body: 'Barlow', system-ui, sans-serif;
  --tag: 'Anton', 'Arial Narrow', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--terra); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--cream); padding: 12px 20px; z-index: 100; }
.skip:focus { left: 0; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); text-wrap: balance; }
h2 { font-size: clamp(2rem, 4vw, 3rem); text-wrap: balance; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
.eyebrow {
  font-weight: 700; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--terra); margin-bottom: 14px;
}
.round-tag {
  font-family: var(--tag); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--card); background: var(--ink); padding: 5px 10px 4px; border-radius: 5px; white-space: nowrap;
}

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 244, 234, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 68px; }
.brand { display: inline-flex; align-items: baseline; gap: 7px; text-decoration: none; padding: 8px 0; }
.brand-tko { font-family: var(--tag); font-size: 1.45rem; color: var(--terra); letter-spacing: 0.02em; }
.brand-r2 { font-family: var(--display); font-size: 1.35rem; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.95rem;
  padding: 10px 2px; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--terra); border-color: var(--terra); }
.nav-links a.nav-cta {
  background: var(--terra); color: #fff; padding: 11px 22px; border-radius: 10px;
  border-bottom: none; transition: background 0.2s, transform 0.2s;
}
.nav-links a.nav-cta:hover { background: var(--terra-deep); transform: translateY(-2px); color: #fff; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 12px; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform 0.2s, opacity 0.2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: 12px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; min-height: 44px;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 8px 20px rgba(184, 74, 20, 0.25); }
.btn-primary:hover { background: var(--terra-deep); color: #fff; }
.btn-ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn-ghost:hover { color: var(--terra); }

/* ---------- hero ---------- */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 104px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 em { font-style: italic; color: var(--terra); }
.hero .lead { margin: 20px 0 32px; font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--ink-soft); max-width: 46ch; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 0.92rem; color: var(--ink-soft); }
.hero-note a { color: var(--terra); font-weight: 600; }
.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; aspect-ratio: 6 / 5; object-fit: cover;
  border-radius: 22px; box-shadow: var(--shadow-photo);
}
.hero-badge {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(43, 28, 14, 0.85); color: var(--cream);
  backdrop-filter: blur(4px);
  font-weight: 700; font-size: 0.9rem;
  padding: 9px 16px; border-radius: 999px;
}
.hero-badge .star { color: var(--gold-soft); }
.hero-caption {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: rgba(250, 244, 234, 0.92); backdrop-filter: blur(4px);
  padding: 12px 18px; border-radius: 12px; font-weight: 600;
}
.hero-caption b { font-family: var(--display); font-weight: 400; font-size: 1.15rem; }
.hero-caption span { color: var(--terra); font-weight: 700; font-variant-numeric: tabular-nums; }

/* ---------- signature dishes ---------- */
.signature { padding: clamp(56px, 8vw, 104px) 0; background: var(--cream-deep); }
.signature h2 { margin-bottom: 8px; }
.signature .sub { color: var(--ink-soft); margin-bottom: 40px; max-width: 60ch; }
.dish-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.dish-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform 0.22s, box-shadow 0.22s;
}
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-photo); }
.dish-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.dish-card figcaption { padding: 16px 18px 18px; display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.dish-card b { font-family: var(--display); font-weight: 400; font-size: 1.12rem; line-height: 1.2; }
.dish-card span { color: var(--terra); font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- reviews band ---------- */
.reviews { background: var(--dark); color: var(--cream); padding: clamp(56px, 8vw, 104px) 0; }
.reviews-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.reviews h2 { color: var(--cream); }
.rating-chip { display: flex; align-items: baseline; gap: 10px; }
.rating-num { font-family: var(--tag); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--gold-soft); }
.rating-meta { font-size: 0.95rem; color: rgba(250, 244, 234, 0.75); }
.stars { color: var(--gold-soft); letter-spacing: 2px; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.review-card {
  background: rgba(250, 244, 234, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: 24px;
}
.review-card p { font-size: 0.98rem; line-height: 1.65; color: rgba(250, 244, 234, 0.92); margin-bottom: 14px; }
.review-card cite { font-style: normal; font-weight: 700; font-size: 0.85rem; color: var(--gold-soft); }
.review-card cite small { display: block; font-weight: 400; color: rgba(250, 244, 234, 0.55); margin-top: 2px; }

/* ---------- menu ---------- */
.menu { padding: clamp(56px, 8vw, 104px) 0; }
.menu-intro { margin-bottom: 28px; }
.menu-intro h2 { margin-bottom: 8px; }
.menu-note { color: var(--ink-soft); max-width: 64ch; }
.menu-note a { font-weight: 600; }
.menu-nav {
  position: sticky; top: 68px; z-index: 40;
  background: var(--cream); padding: 12px 0;
  margin-bottom: 30px; border-bottom: 1px solid var(--line);
  display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.menu-nav a {
  flex: 0 0 auto; text-decoration: none; font-weight: 600; font-size: 0.85rem;
  color: var(--ink); background: var(--cream-deep);
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line);
  transition: background 0.2s, color 0.2s;
}
.menu-nav a:hover { background: var(--terra); color: #fff; border-color: var(--terra); }
.menu-grid { columns: 2 440px; column-gap: 24px; }
.menu-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 16px; box-shadow: var(--shadow);
  break-inside: avoid; margin-bottom: 24px; width: 100%;
}
.menu-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.menu-card-head h3 { color: var(--ink); }
.menu-card .sec-note { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 10px; }
.menu-list { list-style: none; }
.menu-list li {
  display: flex; align-items: baseline; gap: 8px;
  padding: 8px 0; border-bottom: 1px dashed var(--line);
}
.menu-list li:last-child { border-bottom: none; }
.menu-list .item { font-weight: 600; }
.menu-list .desc { display: block; font-weight: 400; font-size: 0.86rem; color: var(--ink-soft); }
.menu-list .dots { flex: 1; border-bottom: 2px dotted rgba(38, 24, 12, 0.22); transform: translateY(-4px); min-width: 16px; }
.menu-list .price { font-weight: 700; color: var(--terra); font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }

/* ---------- about ---------- */
.about { background: var(--cream-deep); padding: clamp(56px, 8vw, 104px) 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about h2 { margin-bottom: 18px; }
.about p { color: var(--ink-soft); margin-bottom: 16px; max-width: 54ch; }
.about-photo img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-photo); }

/* ---------- visit ---------- */
.visit { padding: clamp(56px, 8vw, 104px) 0; }
.visit h2 { margin-bottom: 36px; }
.visit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.visit-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
}
.visit-card h3 { color: var(--terra); }
.visit-big { font-size: 1.18rem; font-weight: 600; line-height: 1.45; }
.hours { border-collapse: collapse; width: 100%; }
.hours th, .hours td { text-align: left; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 1rem; }
.hours th { font-weight: 600; padding-right: 18px; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }
.hours td { font-variant-numeric: tabular-nums; }

/* ---------- order band / form ---------- */
.cta-band { background: var(--dark); color: var(--cream); text-align: center; padding: clamp(56px, 8vw, 104px) 0; }
.cta-band h2 { color: var(--cream); margin-bottom: 14px; }
.cta-band .eyebrow { color: var(--gold-soft); }
.band-lead { color: rgba(250, 244, 234, 0.75); max-width: 56ch; margin: 0 auto 40px; }
.band-lead a { color: var(--gold-soft); }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 640px; margin: 0 auto; text-align: left; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-soft); }
.field input, .field textarea {
  font-family: var(--body); font-size: 16px; color: var(--ink);
  background: var(--cream); border: 2px solid transparent; border-radius: 12px;
  padding: 13px 15px; width: 100%;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 110px; }
.btn-submit { grid-column: 1 / -1; justify-self: center; min-width: 220px; }

/* ---------- footer ---------- */
.site-foot { background: #1f1409; color: rgba(250, 244, 234, 0.7); padding: 56px 0 28px; }
.foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-bottom: 34px; }
.brand-foot { margin-bottom: 8px; }
.brand-foot .brand-tko { font-size: 1.3rem; color: #e0703a; }
.brand-foot .brand-r2 { color: var(--cream); }
.site-foot a { color: var(--cream); text-decoration-color: rgba(250, 244, 234, 0.35); }
.site-foot a:hover { color: var(--gold-soft); }
.site-foot .fine { border-top: 1px solid var(--line-dark); padding-top: 22px; font-size: 0.85rem; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .about-inner { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
}
@media (max-width: 720px) {
  .menu-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px 24px 20px; border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav-links a.nav-cta { margin-top: 12px; text-align: center; }
  .lead-form { grid-template-columns: 1fr; }
  .menu-nav { top: 64px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
