@charset "UTF-8";
/* ==========================================================================
   Cha Adda — stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Work+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand colors, sampled from the Cha Adda logo */
  --brown-900: #3A1D10;
  --brown-800: #4E2917;
  --brown-700: #5C2F1C;
  --brown-600: #764323;
  --brown-500: #8C5530;
  --gold-700: #B87A34;
  --gold-600: #C98C40;
  --gold-500: #DA9852;
  --gold-400: #E4B36A;
  --gold-300: #EFCB92;
  --cream-100: #FFF9F1;
  --cream-200: #FCF0DE;
  --cream-300: #F5E4C7;
  --ink: #2A160B;
  --white: #FFFFFF;

  --surface: var(--cream-100);
  --surface-alt: var(--cream-200);
  --text: var(--ink);
  --text-muted: #6B5747;
  --border: #E9D6B8;

  --shadow-sm: 0 2px 8px rgba(58, 29, 16, 0.08);
  --shadow-md: 0 8px 24px rgba(58, 29, 16, 0.12);
  --shadow-lg: 0 20px 48px rgba(58, 29, 16, 0.18);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-med: 280ms;

  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; }
p { margin: 0; }
section { position: relative; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold-600);
  border-radius: 2px;
}
.section-head { max-width: 640px; margin: 0 auto var(--space-6); text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-top: var(--space-2); font-weight: 600; }
.section-head p { margin-top: var(--space-3); color: var(--text-muted); font-size: 17px; }
.section-pad { padding: var(--space-8) 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 15px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--brown-700); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brown-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--brown-700); border-color: var(--brown-700); }
.btn-secondary:hover { background: var(--brown-700); color: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--gold-500); color: var(--brown-900); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--surface-alt);
  color: var(--brown-700);
  font-weight: 600;
  font-size: 13px;
  border: 1px solid var(--border);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 241, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.site-header.is-scrolled { border-color: var(--border); box-shadow: 0 4px 20px rgba(58,29,16,0.06); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: var(--space-4);
}
.brand { display: flex; align-items: flex-start; gap: 8px; flex-shrink: 0; }
.brand img { height: 54px; width: auto; margin-top: 2px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 27px;
  line-height: 1;
  color: var(--brown-800);
  letter-spacing: 0.01em;
  margin-top: 30px;
}
.brand-name span { color: var(--gold-600); }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--gold-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease-out);
}
.main-nav a:hover { color: var(--brown-700); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.header-actions .btn { padding: 12px 22px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 9px;
  color: var(--brown-800);
}
.nav-toggle svg { width: 26px; height: 26px; }

.mobile-nav { display: none; }

/* ---------- Hero ---------- */
.hero {
  padding: var(--space-7) 0 var(--space-8);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -8%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, var(--gold-300) 0%, transparent 70%);
  opacity: 0.55;
  z-index: 0;
  border-radius: 50%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-7);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy {
  background: linear-gradient(160deg, var(--cream-200) 0%, var(--gold-300) 130%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 600;
  color: var(--brown-900);
  letter-spacing: -0.01em;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--gold-700);
  font-weight: 500;
}
.hero-copy .eyebrow { margin-bottom: var(--space-3); }
.hero-copy p.lead {
  margin-top: var(--space-4);
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
}
.hero-actions { display: flex; gap: var(--space-3); margin-top: var(--space-5); flex-wrap: wrap; }

.hero-meta { display: flex; gap: var(--space-5); margin-top: var(--space-6); flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 10px; }
.hero-meta-item .icon-badge {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-100);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-700);
  flex-shrink: 0;
}
.hero-meta-item .icon-badge svg { width: 19px; height: 19px; }
.hero-meta-item strong { display: block; font-size: 14px; color: var(--brown-900); }
.hero-meta-item span { font-size: 13px; color: var(--text-muted); }

.hero-visual { position: relative; }
.hero-visual-shape {
  position: absolute;
  inset: -6% -6% 6% 10%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  z-index: 0;
}
.hero-visual-frame {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream-100);
}
.hero-visual-frame img,
.hero-visual-frame video { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--surface-alt); }

.hero-float-card {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-card.card-top { top: 6%; left: -6%; }
.hero-float-card.card-bottom { bottom: 8%; right: -4%; }
.hero-float-card .icon-badge { width: 42px; height: 42px; border-radius: 50%; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; color: var(--gold-700); flex-shrink: 0; }
.hero-float-card .icon-badge svg { width: 20px; height: 20px; }
.hero-float-card strong { display: block; font-size: 14px; color: var(--brown-900); }
.hero-float-card span { font-size: 12.5px; color: var(--text-muted); }

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--brown-700);
  color: var(--cream-200);
  overflow: hidden;
  padding: 14px 0;
}
.strip-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.strip-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  color: var(--gold-300);
}
.strip-track span::after { content: '\2022'; color: var(--gold-500); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about .container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-7); align-items: center; }
.about-gallery { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.about-gallery img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-md);
}
.about-gallery .g1 { grid-column: 1 / 2; grid-row: 1 / 3; height: 100%; aspect-ratio: unset; }
.about-gallery .g2 { aspect-ratio: 1/1; height: 100%; }
.about-gallery .g3 { aspect-ratio: 1/1; height: 100%; margin-top: var(--space-5); }
.about-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--brown-800);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}
.about-badge strong { font-family: var(--font-display); font-size: 30px; display: block; color: var(--gold-400); }
.about-badge span { font-size: 12.5px; color: var(--cream-200); }

.about-copy .eyebrow { margin-bottom: var(--space-2); }
.about-copy h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 600; margin-top: var(--space-2); color: var(--brown-900); }
.about-copy p { margin-top: var(--space-4); color: var(--text-muted); font-size: 16.5px; }
.about-copy p + p { margin-top: var(--space-3); }
.about-points { margin-top: var(--space-5); display: grid; gap: var(--space-3); }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.about-point .icon-badge { width: 38px; height: 38px; border-radius: 10px; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; color: var(--brown-700); flex-shrink: 0; }
.about-point .icon-badge svg { width: 18px; height: 18px; }
.about-point strong { display: block; font-size: 15px; color: var(--brown-900); }
.about-point span { font-size: 14px; color: var(--text-muted); }

/* ---------- Menu ---------- */
.menu { background: var(--surface-alt); }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.menu-tab {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--brown-700);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--dur-fast) var(--ease-out);
}
.menu-tab:hover { border-color: var(--gold-500); }
.menu-tab.is-active { background: var(--brown-700); border-color: var(--brown-700); color: var(--white); }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fadeUp 380ms var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }

.menu-note {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-5);
  font-size: 14.5px;
  color: var(--text-muted);
  background: var(--white);
  border: 1px dashed var(--gold-500);
  border-radius: var(--radius-md);
  padding: 12px 18px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: var(--space-4);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.menu-card .thumb {
  width: 132px; height: 132px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-alt);
  border: 4px solid var(--cream-100);
  box-shadow: var(--shadow-sm);
}
.menu-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease-out); }
.menu-card:hover .thumb img { transform: scale(1.06); }
/* Video menu card (hover / tap to play) keeps the original full-bleed rectangular thumb */
.menu-card.has-video {
  overflow: hidden;
  padding-top: 0;
  border-radius: var(--radius-md);
}
.menu-card.has-video .thumb {
  width: auto; height: auto;
  aspect-ratio: 4/3;
  border-radius: 0;
  border: none;
  box-shadow: none;
  position: relative;
}
.menu-card .thumb video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms var(--ease-out);
}
.menu-card.has-video:hover .thumb video { transform: scale(1.04); }

.video-cue {
  position: absolute;
  left: 12px; bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px 7px 10px;
  border-radius: var(--radius-full);
  background: rgba(58,29,16,0.72);
  backdrop-filter: blur(6px);
  color: var(--cream-200);
  transition: opacity var(--dur-med) var(--ease-out);
  pointer-events: none;
}
.video-cue svg { width: 15px; height: 15px; flex-shrink: 0; }
.video-cue em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.menu-card.is-playing .video-cue { opacity: 0; }

.menu-card .thumb.no-photo { display: flex; align-items: center; justify-content: center; color: var(--gold-600); }
.menu-card .thumb.no-photo svg { width: 34px; height: 34px; opacity: 0.6; }
.menu-card-body { padding: var(--space-2) var(--space-4) var(--space-4); flex: 1; display: flex; flex-direction: column; align-items: center; }
.menu-card-top { display: flex; justify-content: center; align-items: baseline; gap: var(--space-2); }
.menu-card-top h4 { font-size: 17px; font-weight: 600; color: var(--brown-900); }
.menu-card-price {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brown-900);
  font-size: 13px;
  white-space: nowrap;
  background: var(--gold-500);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-full);
  padding: 5px 12px;
}
.menu-card-desc { margin-top: 6px; font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }
.menu-card-tag {
  align-self: center;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brown-700);
  background: var(--surface-alt);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.menu-list-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.menu-list-card h4 { font-size: 15px; font-weight: 700; color: var(--gold-700); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-3); }
.menu-list-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 11px 0;
  border-bottom: 1px dashed var(--border);
}
.menu-list-row:last-child { border-bottom: none; }
.menu-list-row .name { font-weight: 600; color: var(--brown-900); font-size: 15px; }
.menu-list-row .desc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.menu-list-row .price { font-family: var(--font-display); font-weight: 600; color: var(--gold-700); white-space: nowrap; }

.menu-secondary { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); margin-top: var(--space-4); }

.menu-cta { text-align: center; margin-top: var(--space-6); }
.menu-cta p { color: var(--text-muted); margin-bottom: var(--space-3); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: var(--space-3);
}
.gallery-grid a { border-radius: var(--radius-md); overflow: hidden; display: block; position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease-out); }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid a::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(58,29,16,0.35), transparent 45%);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

/* ---------- Reviews ---------- */
.reviews { background: var(--surface-alt); }
.reviews-widget { min-height: 120px; }

.reviews-fallback {
  background: var(--white);
  border: 1px dashed var(--gold-500);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.google-rating-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(250,243,230,0.98) 100%);
  border: 1px solid rgba(187, 114, 42, 0.22);
  border-radius: 26px;
  padding: 18px 20px 20px;
  margin: 0 auto var(--space-4);
  max-width: 520px;
  box-shadow: 0 16px 40px rgba(58, 29, 16, 0.10);
}
.google-rating-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 9px;
  background: linear-gradient(180deg, var(--gold-500), var(--gold-700));
}
.google-rating-card::after {
  content: '';
  position: absolute;
  right: -56px;
  top: -56px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,179,106,0.22) 0%, rgba(228,179,106,0.08) 45%, transparent 72%);
}
.google-rating-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.google-rating-mark {
  width: 46px; height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--brown-800);
  background: linear-gradient(135deg, #f5dbb4 0%, #fff2de 100%);
  border: 1px solid rgba(187, 114, 42, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.google-rating-card__identity {
  display: grid;
  gap: 2px;
}
.google-rating-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.google-rating-card__identity strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--brown-900);
}
.google-rating-card__main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 2px 0 0;
}
.google-rating-score {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 72px);
  line-height: 0.95;
  font-weight: 600;
  color: var(--brown-900);
  letter-spacing: -0.03em;
}
.google-rating-card__stats {
  display: grid;
  gap: 5px;
  align-self: center;
}
.google-rating-stars {
  color: #f4b400;
  letter-spacing: 0.12em;
  font-size: 19px;
  line-height: 1;
}
.google-rating-meta {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-700);
}
.google-rating-sub {
  font-size: 13px;
  color: var(--text-muted);
}
.reviews-fallback h3 { font-size: 21px; font-weight: 600; color: var(--brown-900); }
.reviews-fallback p { margin-top: var(--space-2); color: var(--text-muted); font-size: 15px; }
.reviews-fallback-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-5);
}

/* ---------- Visit / Schedule ---------- */
.visit {
  color: var(--cream-200);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(58,29,16,0.45) 0%, rgba(58,29,16,0.55) 30%, rgba(58,29,16,0.94) 65%, var(--brown-800) 100%),
    url('../images/truck-wrap.jpg') top center / 100% auto no-repeat,
    var(--brown-800);
}
.visit::before {
  content: '';
  position: absolute; left: -10%; bottom: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-700) 0%, transparent 70%);
  opacity: 0.35;
}
.visit .section-head p { color: var(--cream-300); }
.visit .eyebrow { color: var(--gold-400); }
.visit .eyebrow::before { background: var(--gold-400); }
.visit .container { position: relative; z-index: 1; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: start; }

.hours-card, .location-card {
  background: rgba(58,29,16,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.hours-card h3, .location-card h3 { font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: var(--space-4); display: flex; align-items: center; gap: 10px; }
.hours-card h3 svg, .location-card h3 svg { width: 20px; height: 20px; color: var(--gold-400); }

.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hours-day {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hours-day .day { font-weight: 700; color: var(--white); font-size: 13.5px; margin-bottom: 3px; }
.hours-day .shift { font-size: 12px; color: var(--cream-300); }
.closed-note { margin-top: var(--space-4); font-size: 13.5px; color: var(--cream-300); display: flex; align-items: center; gap: 8px; }
.closed-note svg { width: 16px; height: 16px; color: var(--gold-400); flex-shrink: 0; }

.location-card .addr { display: flex; gap: 12px; margin-bottom: var(--space-4); }
.location-card .addr .icon-badge { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--gold-400); flex-shrink: 0; }
.location-card .addr .icon-badge svg { width: 18px; height: 18px; }
.location-card .addr strong { display: block; color: var(--white); font-size: 15.5px; }
.location-card .addr span { font-size: 14px; color: var(--cream-300); }
.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(255,255,255,0.14); }
.map-frame iframe { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(0.15) sepia(0.12); }
.location-actions { display: flex; gap: 10px; margin-top: var(--space-4); flex-wrap: wrap; }

.order-note {
  margin-top: var(--space-5);
  background: rgba(58,29,16,0.55);
  backdrop-filter: blur(8px);
  border: 1px dashed rgba(228,179,106,0.5);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.order-note .icon-badge { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--gold-400); flex-shrink: 0; }
.order-note .icon-badge svg { width: 20px; height: 20px; }
.order-note strong { display: block; color: var(--white); font-size: 15px; }
.order-note span { font-size: 13.5px; color: var(--cream-300); }
.order-note > span:not(.icon-badge) { flex: 1; min-width: 160px; }
.order-note .btn-gold { padding: 10px 18px; font-size: 13.5px; flex-shrink: 0; }

/* ---------- Catering ---------- */
.catering .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.catering-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.catering-visual img { width: 100%; height: 100%; object-fit: cover; }
.catering-copy .eyebrow { margin-bottom: var(--space-2); }
.catering-copy h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 600; margin-top: var(--space-2); color: var(--brown-900); }
.catering-copy p { margin-top: var(--space-4); color: var(--text-muted); font-size: 16.5px; }
.catering-list { margin-top: var(--space-5); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.catering-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; color: var(--brown-900); }
.catering-list li svg { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; }
.catering-actions { display: flex; gap: var(--space-3); margin-top: var(--space-5); flex-wrap: wrap; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--gold-500), var(--gold-600));
  border-radius: var(--radius-lg);
  margin: 0 var(--space-4);
  padding: var(--space-6) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
  max-width: calc(var(--container) - 0px);
  margin-left: auto;
  margin-right: auto;
}
.cta-band-visual {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-md);
}
.cta-band-visual img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-copy { flex: 1; min-width: 220px; }
.cta-band h3 { font-size: clamp(24px, 3vw, 32px); color: var(--brown-900); font-weight: 600; max-width: 480px; }
.cta-band p { color: var(--brown-800); margin-top: 8px; }
.cta-band-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--brown-900); }
.cta-band .btn-primary:hover { background: var(--brown-800); }
.cta-band .btn-secondary { border-color: var(--brown-900); color: var(--brown-900); }
.cta-band .btn-secondary:hover { background: var(--brown-900); color: var(--white); }

/* ---------- Contact ---------- */
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); }
.contact-info h2 { font-size: clamp(26px, 3.6vw, 36px); font-weight: 600; color: var(--brown-900); }
.contact-info > p { margin-top: var(--space-3); color: var(--text-muted); max-width: 420px; }
.contact-cards { margin-top: var(--space-5); display: grid; gap: var(--space-3); }
.contact-card { display: flex; align-items: center; gap: 14px; background: var(--white); border-radius: var(--radius-md); padding: 16px 18px; box-shadow: var(--shadow-sm); transition: transform var(--dur-fast) var(--ease-out); }
.contact-card:hover { transform: translateX(4px); }
.contact-card .icon-badge { width: 44px; height: 44px; border-radius: 50%; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; color: var(--brown-700); flex-shrink: 0; }
.contact-card .icon-badge svg { width: 20px; height: 20px; }
.contact-card strong { display: block; font-size: 14px; color: var(--brown-900); }
.contact-card span { font-size: 13.5px; color: var(--text-muted); }
.social-row { display: flex; gap: 10px; margin-top: var(--space-5); }
.social-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--brown-700);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast) var(--ease-out);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { background: var(--gold-600); transform: translateY(-3px); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: var(--space-5); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.field { margin-bottom: var(--space-3); }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--brown-900); margin-bottom: 6px; }
.field .req { color: var(--gold-700); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--cream-100);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  transition: border-color var(--dur-fast) var(--ease-out);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold-500); outline: none; }
.field textarea { resize: vertical; min-height: 100px; }
.field-help { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.form-status { margin-top: var(--space-3); font-size: 14px; padding: 10px 14px; border-radius: var(--radius-sm); display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #E7F4EA; color: #2A6B3D; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brown-900); color: var(--cream-300); padding: var(--space-6) 0 var(--space-4); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-6); padding-bottom: var(--space-6); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-3); }
.footer-brand img { height: 46px; }
.footer-brand span { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--white); }
.footer-col p { font-size: 14px; line-height: 1.7; color: var(--cream-300); max-width: 280px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-400); margin-bottom: var(--space-3); font-family: var(--font-body); font-weight: 700; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: var(--cream-300); transition: color var(--dur-fast) var(--ease-out); }
.footer-col ul a:hover { color: var(--gold-400); }
.footer-social { display: flex; gap: 10px; margin-top: var(--space-3); }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--cream-200); transition: all var(--dur-fast) var(--ease-out); }
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--gold-500); color: var(--brown-900); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--space-4); font-size: 13px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: var(--space-2); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brown-700);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--dur-med) var(--ease-out);
  z-index: 90;
  border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top:hover { background: var(--gold-600); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .about .container { grid-template-columns: 1fr; }
  .catering .container { grid-template-columns: 1fr; }
  .catering-visual { order: -1; }
  .contact .container { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1250px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }

  .mobile-nav {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--surface);
    z-index: 99;
    padding: var(--space-5) var(--space-4);
    display: none;
    overflow-y: auto;
  }
  .mobile-nav.is-open { display: block; }
  .mobile-nav a:not(.btn) {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--brown-900);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-display);
  }
  .mobile-nav .btn { margin-top: var(--space-4); }
}

@media (max-width: 768px) {
  /* Center the brand, float the hamburger to the right */
  .site-header .container { height: 76px; position: relative; justify-content: center; }
  .brand { margin: 0 auto; }
  .brand img { height: 50px; }
  .brand-name { font-size: 24px; }
  .nav-toggle { position: absolute; right: var(--space-4); top: 50%; transform: translateY(-50%); }
  .mobile-nav { inset: 76px 0 0 0; }

  .section-pad { padding: var(--space-6) 0; }
  .hero { padding: var(--space-5) 0 var(--space-6); }
  .hero-copy { padding: var(--space-4); border-radius: var(--radius-md); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-meta { gap: var(--space-4); }
  .hero-float-card { display: none; }
  .hero-visual-shape { inset: -4% -2% 4% 6%; }

  .about-gallery { grid-template-columns: 1fr 1fr; }
  .about-badge { position: static; grid-column: 1 / -1; margin-top: var(--space-3); display: inline-flex; align-items: center; gap: 10px; border-radius: var(--radius-full); padding: 10px 18px; }
  .about-badge strong { font-size: 20px; display: inline; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-secondary { grid-template-columns: 1fr; }
  .menu-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .menu-tab { flex-shrink: 0; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }

  .reviews-fallback { padding: var(--space-5) var(--space-4); }
  .reviews-fallback-actions { flex-direction: column; }
  .reviews-fallback-actions .btn { width: 100%; }

  .catering-list { grid-template-columns: 1fr; }
  .catering-actions, .hero-actions, .cta-band-actions { width: 100%; }
  .catering-actions .btn, .cta-band-actions .btn { width: 100%; }

  .cta-band { flex-direction: column; text-align: center; margin: 0 var(--space-3); padding: var(--space-5); }
  .cta-band-actions { flex-direction: column; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer-bottom { flex-direction: column; text-align: center; }

}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { flex-direction: column; gap: var(--space-3); }
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
}
