/* ==========================================================================
   Heart & Soul Food Truck — Smokehouse theme (neutral dark base)
   bg #131211 | text #F0EDE8 | accent #C8450A | surface #1B1A18 | gold #E8B84B
   Fonts: Alfa Slab One (display) / Barlow (body)
   ========================================================================== */

:root {
  --bg: #131211;
  --bg-alt: #0D0C0B;
  --text: #F0EDE8;
  --text-dim: #B8B2A9;
  --accent: #C8450A;
  --accent-bright: #E85D1A;
  --gold: #E8B84B;
  --surface: #1B1A18;
  --surface-2: #221F1C;
  --line: #33302B;

  --font-display: 'Alfa Slab One', serif;
  --font-body: 'Barlow', sans-serif;

  --radius-sm: 3px;
  --radius-lg: 2px;
  --shadow-card: 0 18px 40px rgba(0,0,0,0.45);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 16px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  color: var(--text);
}

.section-head p {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 540px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-bright); border-color: var(--accent-bright); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: #1A0E00;
  border-color: var(--gold);
}
.btn-gold:hover { background: #f2c766; transform: translateY(-2px); }

/* ---------------------------------- NAV ---------------------------------- */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), padding 0.35s var(--ease);
}

.site-nav.scrolled {
  background: rgba(10, 9, 8, 0.92);
  border-bottom-color: var(--line);
  padding: 12px 0;
  backdrop-filter: blur(6px);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: #000;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.1;
  color: var(--text);
}
.brand-text span { display: block; color: var(--gold); font-size: 0.78rem; letter-spacing: 0.1em; font-family: var(--font-body); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent-bright);
}

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
}
.nav-phone svg { width: 16px; height: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------- HERO ---------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 110px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.35) 0%, rgba(10,9,8,0.55) 45%, rgba(10,9,8,0.97) 100%),
    linear-gradient(90deg, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.2) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-content .eyebrow {
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.15s forwards;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  color: var(--text);
  overflow: hidden;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 span {
  display: inline-block;
  transform: translateY(110%);
  animation: fadeUp 0.7s var(--ease) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: 0.25s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.38s; color: var(--gold); }

.hero p.lede {
  margin-top: 24px;
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.55s forwards;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.68s forwards;
}

.hero-tag {
  position: absolute;
  top: 130px;
  right: 32px;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px 20px;
  max-width: 220px;
  font-size: 0.85rem;
  color: var(--text-dim);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.9s forwards;
}
.hero-tag strong { display: block; color: var(--gold); font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 4px; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------- SECTIONS -------------------------------- */

section { position: relative; padding: 110px 0; }
.bg-alt { background: var(--bg-alt); }
.bg-surface { background: var(--surface); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------------------------- FEATURED SPOTLIGHT --------------------------- */

.spotlight {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 90px 0;
  position: relative;
}
.spotlight::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.02) 12px, rgba(255,255,255,0.02) 24px);
  pointer-events: none;
}
.spotlight .wrap { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.spotlight-copy h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.spotlight-copy p { margin-top: 18px; color: var(--text-dim); max-width: 460px; }
.spotlight-stat {
  margin-top: 32px;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  border-left: 3px solid var(--accent-bright);
  padding-left: 18px;
}
.spotlight-stat .num { font-family: var(--font-display); font-size: 3rem; color: var(--gold); }
.spotlight-stat .label { color: var(--text-dim); font-size: 0.9rem; max-width: 160px; }
.spotlight-img { position: relative; }
.spotlight-img img { width: 100%; height: 420px; object-fit: cover; border: 1px solid var(--line); }
.spotlight-img .badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent-bright);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 16px 22px;
  line-height: 1.2;
  box-shadow: var(--shadow-card);
}
.spotlight-img .badge span { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.14em; color: var(--text-dim); }

/* ------------------------------ SERVICES / MENU PREVIEW ---------------------------- */

.menu-rows { display: flex; flex-direction: column; }
.menu-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.menu-row:first-child { padding-top: 0; }
.menu-row:last-child { border-bottom: none; padding-bottom: 0; }
.menu-row:nth-child(even) { direction: rtl; }
.menu-row:nth-child(even) > * { direction: ltr; }

.menu-row-img { position: relative; overflow: hidden; }
.menu-row-img img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.6s var(--ease); }
.menu-row-img:hover img { transform: scale(1.05); }
.menu-row-num {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  background: rgba(10,9,8,0.8);
  color: var(--gold);
  padding: 6px 12px;
  border: 1px solid var(--line);
}

.menu-row-copy .eyebrow { margin-bottom: 10px; }
.menu-row-copy h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--text); margin-bottom: 14px; }
.menu-row-copy p { color: var(--text-dim); max-width: 460px; margin-bottom: 22px; }

.menu-row-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.menu-row-list li {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 0.95rem;
  padding-bottom: 10px;
  border-bottom: 1px dotted var(--line);
  color: var(--text-dim);
}
.menu-row-list li .name { color: var(--text); font-weight: 600; }
.menu-row-list li .price { color: var(--gold); font-weight: 700; white-space: nowrap; }

/* ------------------------------- WHY CHOOSE ------------------------------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why-card {
  background: var(--bg);
  padding: 38px 28px;
  transition: background 0.3s var(--ease);
}
.why-card:hover { background: var(--surface); }
.why-card .icon {
  width: 42px; height: 42px;
  color: var(--accent-bright);
  margin-bottom: 20px;
}
.why-card .icon svg { width: 100%; height: 100%; }
.why-card h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; color: var(--text); margin-bottom: 10px; }
.why-card p { font-size: 0.92rem; color: var(--text-dim); }

/* -------------------------------- GALLERY --------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 8px;
}
.gallery-item { position: relative; overflow: hidden; grid-column: span 3; grid-row: span 2; }
.gallery-item.tall { grid-row: span 3; }
.gallery-item.wide { grid-column: span 4; }
.gallery-item.small { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.92);
}
.gallery-item:hover img { transform: scale(1.07); filter: saturate(1.1); }
.gallery-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(10,9,8,0.9), transparent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.gallery-item:hover .gallery-cap { transform: translateY(0); opacity: 1; }

/* ------------------------------ TESTIMONIALS ------------------------------ */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px 28px;
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 18px; color: var(--gold); }
.testi-stars svg { width: 16px; height: 16px; }
.testi-card p { color: var(--text-dim); font-size: 0.98rem; margin-bottom: 22px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: var(--accent-bright);
  font-size: 1rem;
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.testi-loc { font-size: 0.8rem; color: var(--text-dim); }

/* -------------------------------- ABOUT TEASER ----------------------------- */

.about-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-teaser-img { position: relative; }
.about-teaser-img img { width: 100%; height: 460px; object-fit: cover; border: 1px solid var(--line); }
.about-teaser-copy p { color: var(--text-dim); margin-bottom: 18px; max-width: 480px; }
.about-teaser-copy p:first-of-type { font-size: 1.1rem; color: var(--text); }

/* ------------------------------- SERVICE AREA ------------------------------ */

.area-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 70px 0;
}
.area-band .wrap { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.area-band h2 { color: var(--text); font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.area-band p { color: var(--text-dim); margin-top: 12px; max-width: 460px; }
.area-list { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.area-list li { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); }
.area-list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); }

/* ---------------------------------- FAQ ------------------------------------ */

.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none; border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
}
.faq-q .plus { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; background: var(--gold);
  transition: transform 0.3s var(--ease);
}
.faq-q .plus::before { top: 50%; left: 0; width: 100%; height: 2px; margin-top: -1px; }
.faq-q .plus::after { left: 50%; top: 0; height: 100%; width: 2px; margin-left: -1px; }
.faq-item.open .plus::after { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a p { padding-bottom: 24px; color: var(--text-dim); max-width: 620px; }

/* -------------------------------- CTA BAND ---------------------------------- */

.cta-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 100px 0;
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.3rem); max-width: 720px; margin: 0 auto 20px; }
.cta-band p { color: var(--text-dim); max-width: 480px; margin: 0 auto 34px; }
.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------- FOOTER ----------------------------------- */

footer.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 50px; width: 50px; border-radius: 50%; border: 2px solid var(--line); background: #000; }
.footer-brand-text { font-family: var(--font-display); font-size: 1.1rem; }
.footer-col p { color: var(--text-dim); font-size: 0.92rem; max-width: 280px; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-dim); font-size: 0.92rem; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px;
  font-size: 0.82rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* ================================ MENU PAGE ================================= */

.page-hero {
  position: relative;
  padding: 190px 0 90px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.02) 12px, rgba(255,255,255,0.02) 24px);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.page-hero p { margin-top: 18px; color: var(--text-dim); max-width: 520px; font-size: 1.05rem; }
.crumb { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 18px; }
.crumb a { color: var(--gold); }

.menu-note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 640px;
}

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.tab-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 14px 6px;
  position: relative;
  cursor: pointer;
  transition: color 0.25s var(--ease);
  margin-right: 26px;
}
.tab-btn::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--accent-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--text); }
.tab-btn.active::after { transform: scaleX(1); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.menu-cat-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 30px; gap: 20px; flex-wrap: wrap; }
.menu-cat-head h3 { font-size: 1.6rem; color: var(--gold); }
.menu-cat-head span { color: var(--text-dim); font-size: 0.9rem; }

.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }
.menu-item {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item .mi-name { font-weight: 700; color: var(--text); font-size: 1.02rem; }
.menu-item .mi-desc { color: var(--text-dim); font-size: 0.88rem; margin-top: 6px; max-width: 320px; }
.menu-item .mi-tag { display: inline-block; margin-top: 8px; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-bright); border: 1px solid var(--accent); padding: 2px 8px; }
.menu-item .mi-price { font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; white-space: nowrap; }

.combo-strip {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.combo-strip h4 { color: var(--text); font-family: var(--font-body); font-size: 1rem; }
.combo-strip p { color: var(--text-dim); font-size: 0.88rem; margin-top: 4px; }

/* ================================ ABOUT PAGE ================================= */

.story-block { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 70px; align-items: center; }
.story-block img { width: 100%; height: 500px; object-fit: cover; border: 1px solid var(--line); }
.story-copy p { color: var(--text-dim); margin-bottom: 18px; max-width: 500px; }
.story-copy p:first-of-type { color: var(--text); font-size: 1.15rem; }

.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 10px; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); }
.timeline-item:last-child { border-bottom: 1px solid var(--line); }
.timeline-item .yr { font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; }
.timeline-item h4 { color: var(--text); margin-bottom: 6px; font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; }
.timeline-item p { color: var(--text-dim); font-size: 0.92rem; max-width: 480px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { padding: 34px 26px; border: 1px solid var(--line); background: var(--bg-alt); }
.value-card .icon { width: 36px; height: 36px; color: var(--accent-bright); margin-bottom: 18px; }
.value-card .icon svg { width: 100%; height: 100%; }
.value-card h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 10px; color: var(--text); }
.value-card p { color: var(--text-dim); font-size: 0.9rem; }

/* ================================ CONTACT PAGE ================================ */

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.contact-info-card { background: var(--surface); border: 1px solid var(--line); padding: 40px; height: fit-content; }
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 26px; }
.contact-row { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-row:first-of-type { border-top: none; }
.contact-row .ic { width: 22px; height: 22px; color: var(--accent-bright); flex-shrink: 0; margin-top: 2px; }
.contact-row .ic svg { width: 100%; height: 100%; }
.contact-row .lbl { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; }
.contact-row .val { color: var(--text); font-weight: 600; }
.contact-row .val a:hover { color: var(--gold); }

.form-card { background: var(--bg-alt); border: 1px solid var(--line); padding: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; color: var(--text-dim); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: border-color 0.25s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-bright);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: 0.78rem; color: var(--accent-bright); min-height: 16px; margin-top: -12px; margin-bottom: 12px; }
.field-invalid { border-color: var(--accent-bright) !important; }

.form-success {
  display: none;
  text-align: center;
  padding: 50px 20px;
}
.form-success.show { display: block; }
.form-success .check { width: 56px; height: 56px; margin: 0 auto 20px; color: var(--gold); }
.form-success h3 { font-size: 1.4rem; margin-bottom: 10px; }
.form-success p { color: var(--text-dim); }
.form-card.submitted .the-form { display: none; }

.schedule-note { display: flex; gap: 14px; align-items: flex-start; margin-top: 26px; padding: 20px; background: var(--surface); border-left: 3px solid var(--gold); }
.schedule-note .ic { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.schedule-note .ic svg { width: 100%; height: 100%; }
.schedule-note p { font-size: 0.88rem; color: var(--text-dim); }

/* --------------------------------- RESPONSIVE -------------------------------- */

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .spotlight .wrap, .about-teaser, .story-block, .contact-grid { grid-template-columns: 1fr; }
  .menu-row, .menu-row:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .menu-items { grid-template-columns: 1fr; }
  .area-band .wrap { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item, .gallery-item.wide, .gallery-item.small { grid-column: span 1; grid-row: span 2; }
}

@media (max-width: 640px) {
  section { padding: 70px 0; }
  .wrap { padding: 0 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding-bottom: 70px; }
  .hero-tag { display: none; }
  .cta-band .btn-row { flex-direction: column; align-items: stretch; }
  .page-hero { padding: 150px 0 60px; }
}

/* ------------------------------- MOBILE NAV DRAWER ---------------------------- */

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg-alt);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 1.7rem; color: var(--text); }
.mobile-nav .nav-phone { margin-top: 10px; font-size: 1.1rem; }
