/* =========================================================
   EMBERLINE SMOKEHOUSE — Dark Smoky BBQ Pit
   Palette: charcoal #241C18 · ember #B5502A · smoke #8A8175 · cream #EDE4D6
   Type: Alfa Slab One (display) · Oswald (UI/body)
   ========================================================= */

:root {
  --charcoal:      #241C18;
  --charcoal-deep: #1A1310;
  --charcoal-soft: #2E241F;
  --panel:         #2B211C;
  --ember:         #B5502A;
  --ember-bright:  #D4622E;
  --ember-glow:    #E07A3E;
  --smoke:         #8A8175;
  --smoke-dim:     #6E655B;
  --cream:         #EDE4D6;
  --cream-dim:     #C9BDAC;

  --line: rgba(237, 228, 214, 0.12);
  --line-ember: rgba(181, 80, 42, 0.35);

  --wrap: 1200px;
  --radius: 4px;

  --ff-display: "Alfa Slab One", Georgia, serif;
  --ff-body: "Oswald", "Helvetica Neue", Arial, sans-serif;

  --shadow-deep: 0 30px 70px -30px rgba(0,0,0,0.85);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--cream);
  background-color: var(--charcoal);
  background-image:
    radial-gradient(1200px 700px at 80% -10%, rgba(181,80,42,0.16), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(181,80,42,0.08), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* -------- Layout helpers -------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

/* -------- Accessibility -------- */
.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  background: var(--ember);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  z-index: 999;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid var(--ember-glow);
  outline-offset: 3px;
  border-radius: 2px;
}

/* -------- Typography -------- */
h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }

.eyebrow, .section-kicker {
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--ember-glow);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  --btn-bg: var(--ember);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 1.7rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--ember);
  color: var(--cream);
  box-shadow: 0 8px 30px -10px rgba(181,80,42,0.7);
}
.btn-primary:hover {
  background: var(--ember-bright);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -12px rgba(224,122,62,0.85);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: var(--ember);
  color: var(--ember-glow);
  transform: translateY(-3px);
}
.btn-whatsapp {
  background: #1e3d2f;
  color: var(--cream);
  border-color: rgba(37,211,102,0.4);
}
.btn-whatsapp:hover { background: #25503c; transform: translateY(-3px); }
.btn-block { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 19, 16, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(20, 14, 11, 0.94);
  border-bottom-color: var(--line-ember);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-mark { flex: none; filter: drop-shadow(0 0 8px rgba(181,80,42,0.5)); }
.brand-name {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--cream);
  display: flex;
  flex-direction: column;
}
.brand-sub {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: var(--ember-glow);
  margin-top: 2px;
}

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 1.9rem; }
.site-nav a {
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--cream-dim);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--ember);
  transition: width 0.28s var(--ease);
}
.site-nav a:hover { color: var(--cream); }
.site-nav a:hover::after { width: 100%; }

.header-cta { padding: 0.7rem 1.25rem; }

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 0 0;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(20,14,11,0.94) 0%, rgba(20,14,11,0.7) 42%, rgba(20,14,11,0.25) 75%, rgba(20,14,11,0.55) 100%),
    linear-gradient(to top, var(--charcoal) 2%, transparent 40%),
    radial-gradient(120% 90% at 20% 60%, transparent 40%, rgba(20,14,11,0.5) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3.5rem;
}
.hero-copy { max-width: 640px; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.4rem; }
.ember-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ember-glow);
  box-shadow: 0 0 12px 2px var(--ember-glow);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

#hero-title {
  text-shadow: 0 6px 30px rgba(0,0,0,0.7);
  margin-bottom: 1.4rem;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--cream-dim);
  max-width: 30ch;
  margin-bottom: 2.2rem;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero seal / 14 HRS motif */
.hero-seal {
  position: relative;
  flex: none;
  width: 150px; height: 150px;
  display: grid;
  place-items: center;
}
.hero-seal svg {
  position: absolute; inset: 0;
  animation: spin 26s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.seal-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.8;
}
.seal-num {
  font-family: var(--ff-display);
  font-size: 3.1rem;
  color: var(--ember-glow);
  text-shadow: 0 0 24px rgba(224,122,62,0.6);
}
.seal-unit {
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  color: var(--cream);
  margin-left: 0.32em;
  margin-top: 0.35rem;
}
@media (prefers-reduced-motion: reduce) {
  .hero-seal svg, .ember-dot { animation: none; }
}

/* Hero ticker */
.hero-ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-ember);
  border-bottom: 1px solid var(--line-ember);
  background: rgba(26,19,16,0.55);
  overflow: hidden;
  padding: 0.85rem 0;
  margin-top: auto;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  white-space: nowrap;
  width: max-content;
  animation: ticker 34s linear infinite;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}
.ticker-track span { color: var(--cream); }
.tk-dot { color: var(--ember); font-size: 0.7rem; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* =========================================================
   SECTION SCAFFOLD
   ========================================================= */
section { position: relative; }
.section-head { margin-bottom: 3rem; max-width: 640px; }
.section-head-center { margin-inline: auto; text-align: center; }
.section-kicker { display: block; margin-bottom: 0.9rem; }
.section-lede {
  margin-top: 1.1rem;
  color: var(--cream-dim);
  font-size: 1.08rem;
  font-weight: 300;
}

/* =========================================================
   STORY
   ========================================================= */
.story { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.story-media { position: relative; }
.story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--line);
}
.story-badge {
  position: absolute;
  bottom: -26px; right: -22px;
  background: var(--ember);
  color: var(--cream);
  width: 128px; height: 128px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: 0 20px 40px -14px rgba(181,80,42,0.8);
  border: 3px solid var(--charcoal);
}
.story-badge-num { font-family: var(--ff-display); font-size: 1.9rem; line-height: 1; }
.story-badge-label {
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 0.72rem; margin-top: 0.3rem;
}
.story-copy p { color: var(--cream-dim); margin-top: 1.1rem; max-width: 52ch; }
.story-copy h2 { margin-top: 0.5rem; }

.story-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem 2.4rem;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.fact-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.9rem;
  color: var(--ember-glow);
  line-height: 1;
}
.fact-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.86rem;
  color: var(--smoke);
  max-width: 16ch;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =========================================================
   MENU
   ========================================================= */
.menu {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background:
    linear-gradient(180deg, var(--charcoal-deep), var(--charcoal) 30%, var(--charcoal-deep));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.menu-cat {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 1.6rem;
}
.menu-cat-sides { margin-top: 3rem; }
.cat-line {
  height: 2px; width: 34px;
  background: var(--ember);
  flex: none;
}
.menu-list { display: flex; flex-direction: column; gap: 1.5rem; }
.menu-item { }
.mi-head {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.mi-name {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.mi-dots {
  flex: 1;
  border-bottom: 2px dotted var(--smoke-dim);
  transform: translateY(-4px);
  opacity: 0.6;
}
.mi-price {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--ember-glow);
  white-space: nowrap;
}
.mi-desc {
  color: var(--smoke);
  font-size: 0.96rem;
  margin-top: 0.35rem;
  max-width: 46ch;
  font-weight: 300;
}
.menu-note {
  margin-top: 3rem;
  text-align: center;
  color: var(--smoke);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
}

/* =========================================================
   PLATTERS + SAUCES (signature block)
   ========================================================= */
.platters {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.ember-glow {
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(circle, rgba(181,80,42,0.22), transparent 62%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.platters .wrap { position: relative; z-index: 1; }

.platter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}
.platter-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.platter-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-ember);
  box-shadow: var(--shadow-deep);
}
.platter-media { overflow: hidden; }
.platter-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.platter-card:hover .platter-media img { transform: scale(1.06); }
.platter-body { padding: 1.6rem 1.7rem 1.9rem; }
.platter-tag {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--ember-glow);
  border: 1px solid var(--line-ember);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.platter-body h3 { margin-bottom: 0.7rem; }
.platter-body p { color: var(--cream-dim); font-size: 0.98rem; font-weight: 300; }
.platter-price {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--ember-glow);
}

/* Sauces */
.sauces {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--charcoal-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.sauces-media { height: 100%; }
.sauces-media img {
  width: 100%; height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.sauces-copy { padding: clamp(1.8rem, 4vw, 3rem) clamp(1.8rem, 4vw, 3rem) clamp(1.8rem, 4vw, 3rem) 0; }
.sauces-copy h3 { margin-bottom: 0.6rem; }
.sauces-lede { color: var(--cream-dim); margin-bottom: 1.6rem; font-weight: 300; }
.sauce-list { display: flex; flex-direction: column; gap: 1.1rem; }
.sauce-list li {
  padding-left: 1.2rem;
  border-left: 2px solid var(--ember);
}
.sauce-name {
  display: block;
  font-family: var(--ff-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  font-size: 1.02rem;
}
.sauce-note { display: block; color: var(--smoke); font-size: 0.92rem; margin-top: 0.15rem; font-weight: 300; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: var(--charcoal-deep);
  border-top: 1px solid var(--line);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.2rem;
}
.gal-item {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.92) brightness(0.92);
}
.gal-item:hover img { transform: scale(1.07); filter: saturate(1.05) brightness(1); }
.gal-tall { grid-row: span 2; }
.gal-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,14,11,0.55), transparent 55%);
  pointer-events: none;
}

/* =========================================================
   PEOPLE
   ========================================================= */
.people { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.people-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--ember);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem);
}
.pit-monogram {
  width: clamp(120px, 18vw, 180px);
  height: clamp(120px, 18vw, 180px);
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, var(--ember-bright), var(--ember) 45%, var(--charcoal-deep) 100%);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5), 0 20px 50px -20px rgba(181,80,42,0.8);
  border: 2px solid var(--line-ember);
}
.pit-monogram span {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--cream);
  text-shadow: 0 4px 14px rgba(0,0,0,0.5);
}
.people-copy h2 { margin: 0.4rem 0 1rem; }
.people-bio { color: var(--cream-dim); max-width: 58ch; font-weight: 300; }
.people-cred {
  margin-top: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--ember-glow);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background: var(--charcoal-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tst-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tst-card:hover { transform: translateY(-5px); border-color: var(--line-ember); }
.tst-stars { color: var(--ember-glow); letter-spacing: 0.2em; font-size: 1rem; margin-bottom: 1rem; }
.tst-card blockquote p {
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 300;
  line-height: 1.55;
}
.tst-card figcaption { margin-top: 1.4rem; display: flex; flex-direction: column; }
.tst-name { font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--cream); }
.tst-role { color: var(--smoke); font-size: 0.85rem; margin-top: 0.15rem; }

/* =========================================================
   VISIT + RESERVE
   ========================================================= */
.visit { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.visit-block { margin-top: 2rem; }
.visit-block h3 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember-glow);
  margin-bottom: 0.6rem;
}
.visit-block p { color: var(--cream-dim); font-weight: 300; }
.hours-list { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-size: 0.98rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list span:first-child { color: var(--cream-dim); }
.closed { color: var(--smoke); font-style: italic; }
.visit-fineprint { margin-top: 1rem; color: var(--smoke); font-size: 0.9rem; }
.visit-contacts { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }

/* Reserve card */
.reserve-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 4px solid var(--ember);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-deep);
}
.reserve-card h3 { margin-bottom: 0.6rem; }
.reserve-lede { color: var(--cream-dim); margin-bottom: 1.8rem; font-weight: 300; font-size: 0.98rem; }

.reserve-form { display: flex; flex-direction: column; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label {
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
}
.field input,
.field select,
.field textarea {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--cream);
  background: var(--charcoal-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(181,80,42,0.25);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--smoke-dim); }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238A8175' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}
/* Dark date picker hint */
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.7) sepia(1) saturate(3) hue-rotate(340deg); cursor: pointer; }

.form-reassure {
  margin-top: 0.4rem;
  color: var(--smoke);
  font-size: 0.85rem;
  text-align: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--charcoal-deep);
  border-top: 1px solid var(--line-ember);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 2.5rem;
  align-items: start;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem;
}
.footer-tag { color: var(--smoke); font-size: 0.92rem; margin-top: 1rem; font-weight: 300; line-height: 1.7; }
.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a {
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
  width: fit-content;
}
.footer-nav a:hover { color: var(--ember-glow); }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream-dim);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-social a:hover { color: var(--ember-glow); border-color: var(--ember); transform: translateY(-3px); }

.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.6rem 0;
  color: var(--smoke);
  font-size: 0.86rem;
}
.studio-credit a { color: var(--cream-dim); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s var(--ease); }
.studio-credit a:hover { color: var(--ember-glow); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-page-main { padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem); }
.contact-hero {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.contact-hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin: 1rem 0; }
.contact-hero p { color: var(--cream-dim); font-size: 1.1rem; font-weight: 300; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-aside { }
.contact-aside .visit-block:first-of-type { margin-top: 1.5rem; }
.contact-channels { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 2rem; }

/* =========================================================
   THANK YOU PAGE
   ========================================================= */
.thankyou-main {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0;
}
.thankyou-inner { max-width: 620px; }
.thankyou-seal {
  width: 92px; height: 92px;
  margin: 0 auto 2rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--ember-bright), var(--ember) 55%, var(--charcoal-deep));
  box-shadow: 0 20px 50px -18px rgba(181,80,42,0.8);
  border: 2px solid var(--line-ember);
}
.thankyou-seal svg { width: 44px; height: 44px; }
.thankyou-inner h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 1.2rem; }
.thankyou-inner p { color: var(--cream-dim); font-size: 1.1rem; font-weight: 300; margin-bottom: 0.8rem; }
.thankyou-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.4rem; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 940px) {
  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: rgba(20,14,11,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-ember);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
  }
  .site-nav.open { max-height: 60vh; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 0.5rem 0; }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav .wrap, .site-nav ul { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
  .site-nav a { display: block; padding: 1rem 0; font-size: 1rem; }
  .site-nav a::after { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  .story-grid { grid-template-columns: 1fr; }
  .story-media { max-width: 460px; }
  .story-badge { width: 104px; height: 104px; bottom: -20px; right: 10px; }
  .menu-columns { grid-template-columns: 1fr; }
  .sauces { grid-template-columns: 1fr; }
  .sauces-media img { min-height: 220px; }
  .sauces-copy { padding: 0 clamp(1.5rem,4vw,2.5rem) clamp(1.8rem,4vw,2.5rem); }
  .people-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .people-bio { margin-inline: auto; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero { min-height: auto; padding-top: 3rem; }
  .hero-inner { flex-direction: column; align-items: flex-start; padding-top: 2rem; padding-bottom: 2.5rem; }
  .hero-seal { order: -1; margin-bottom: 1rem; width: 116px; height: 116px; }
  .hero-media img { object-position: center 30%; }
  .platter-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .gal-tall { grid-row: span 2; }
  .tst-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 460px) {
  .field-row { grid-template-columns: 1fr; }
  .story-facts { gap: 1.4rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gal-tall { grid-row: span 1; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; }
}
