/* =============================================
   ZAYTONA GRILL — style.css  v2
   Typeface: Cormorant Garamond + Inter
   Palette: near-black · sand · warm white · gold
   ============================================= */

:root {
  --ink:        #111210;
  --ink-soft:   #2c2e28;
  --ink-mid:    #4a4d42;
  --ink-muted:  #7a7d70;
  --sand:       #e8e0d0;
  --sand-light: #f3efe6;
  --white:      #fefdfb;
  --off-white:  #f7f4ef;
  --gold:       #b8912e;
  --gold-light: #d4aa4a;
  --olive:      #3a4820;
  --olive-dark: #232c13;
  --success:    #2d6a4f;
  --error:      #9b2335;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, -apple-system, sans-serif;

  --text-xs:   0.6875rem;
  --text-sm:   0.8125rem;
  --text-base: 1rem;
  --text-md:   1.0625rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.75rem;
  --text-4xl:  3.5rem;
  --text-5xl:  4.75rem;

  --max-w: 1160px;
  --r-sm:  4px;
  --r:     8px;
  --r-lg:  14px;
  --r-xl:  20px;
  --ease:  cubic-bezier(0.4,0,0.2,1);
  --dur:   200ms;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
address { font-style: normal; }
table { border-collapse: collapse; }

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--r);
  z-index: 999;
  transition: top var(--dur);
}
.skip-link:focus { top: 1rem; }

/* SR-ONLY */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* FOCUS */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* TYPE */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1  { font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl)); }
h2  { font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); }
h3  { font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl)); }
h4  { font-size: var(--text-lg); }
em  { font-style: italic; color: var(--gold); }
p   { line-height: 1.7; }

.label {
  display: block;
  font-family: var(--ff-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}
.label-light { color: rgba(255,255,255,0.55); }

.body-lg {
  font-size: var(--text-md);
  color: var(--ink-mid);
  line-height: 1.8;
}

/* SECTION */
.section { padding: 5rem 0; }
.section-light  { background: var(--off-white); }
.section-white  { background: var(--white); }
.section-dark   { background: var(--ink); }

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 1rem; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--ff-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1.5px solid transparent;
  border-radius: var(--r);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
}
.btn-outline {
  background: transparent;
  color: var(--olive);
  border-color: var(--olive);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--olive);
  color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover, .btn-outline-light:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}
.btn-outline-dark {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-dark:hover, .btn-outline-dark:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-full { width: 100%; }

/* NAV CTA */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--olive);
  color: #fff;
  border-radius: var(--r);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--dur) var(--ease);
  border: 1.5px solid var(--olive);
}
.btn-nav-cta:hover { background: var(--olive-dark); border-color: var(--olive-dark); }

/* ============================
   COOKIE BANNER
   ============================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 240px; }
.cookie-text strong {
  display: block;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.cookie-text p {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-xs);
  line-height: 1.5;
}
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-cookie-accept {
  padding: 0.5rem 1.25rem;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--r);
  font-size: var(--text-xs);
  font-weight: 700;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: background var(--dur);
}
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-essential, .btn-cookie-decline {
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-radius: var(--r);
  font-size: var(--text-xs);
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all var(--dur);
}
.btn-cookie-essential:hover, .btn-cookie-decline:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* ============================
   ADA WIDGET
   ============================ */
.ada-widget {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 400;
}
.ada-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: background var(--dur), transform var(--dur);
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.2);
}
.ada-trigger:hover { background: var(--olive-dark); transform: scale(1.06); }
.ada-panel {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  width: 230px;
  overflow: hidden;
}
.ada-panel[hidden] { display: none; }
.ada-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--sand);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
}
.ada-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  color: var(--ink-muted);
  transition: background var(--dur);
}
.ada-close:hover { background: var(--sand); color: var(--ink); }
.ada-options {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  gap: 2px;
}
.ada-opt {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--r);
  font-size: var(--text-sm);
  color: var(--ink-mid);
  text-align: left;
  transition: background var(--dur);
  cursor: pointer;
}
.ada-opt:hover { background: var(--off-white); color: var(--ink); }
.ada-opt[aria-pressed="true"] { background: var(--olive); color: #fff; }
.ada-opt[aria-pressed="true"] svg { color: #fff; }
.ada-note {
  padding: 0.625rem 1rem 0.875rem;
  font-size: var(--text-xs);
  color: var(--ink-muted);
  border-top: 1px solid var(--sand);
  line-height: 1.5;
}

/* ADA body classes */
body.ada-large-text { font-size: 1.125rem; }
body.ada-large-text h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); }
body.ada-large-text h2 { font-size: clamp(1.75rem, 4vw, 3.25rem); }
body.ada-high-contrast {
  --ink:      #000;
  --ink-soft: #111;
  --ink-mid:  #222;
  --sand:     #ccc;
  --off-white:#fff;
  --white:    #fff;
  --gold:     #a07000;
  --olive:    #1e3200;
}
body.ada-high-contrast .site-header { background: #000 !important; }
body.ada-high-contrast .trust-bar   { background: #111; }
body.ada-reduce-motion *,
body.ada-reduce-motion *::before,
body.ada-reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

/* ============================
   HEADER / NAV
   ============================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur);
}
.site-header.scrolled {
  background: rgba(17,18,16,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.logo-leaf { font-size: 1.1em; line-height: 1; }
.logo .logo-text em { color: var(--gold-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--dur);
}
.nav-links a:hover { color: #fff; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  padding: 0.375rem;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,14,10,0.55) 0%,
    rgba(12,14,10,0.65) 55%,
    rgba(12,14,10,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 6rem 1.5rem 4rem;
  max-width: 820px;
}
.hero-location {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-services {
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================
   TRUST BAR
   ============================ */
.trust-bar {
  background: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0.875rem 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.72);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.375rem 1.5rem;
}
.trust-item svg { color: var(--gold-light); flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ============================
   SECTION SPLIT
   ============================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.split-text h2 { margin-bottom: 0; }
.split-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
}

/* TAG LIST */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}
.tag-list li {
  padding: 0.3rem 0.875rem;
  background: var(--sand-light);
  border: 1px solid var(--sand);
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.02em;
}

/* FEATURE LIST */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}
.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--r);
  background: var(--off-white);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--olive);
}
.feature-list strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.feature-list p {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================
   ORDER BAND
   ============================ */
.order-band {
  background: var(--olive);
  padding: 3rem 0;
}
.order-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.order-band-text h2 {
  color: #fff;
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-3xl));
  margin-bottom: 0.25rem;
}
.order-band-text p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-md);
}
.order-band-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* ============================
   STORY BAND
   ============================ */
.story-band {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.story-band-bg {
  position: absolute;
  inset: 0;
}
.story-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.story-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,14,5,0.90) 0%,
    rgba(10,14,5,0.78) 55%,
    rgba(10,14,5,0.65) 100%
  );
}
.story-band-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.story-band-content h2 { color: #fff; }
.story-band-content p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-md);
  line-height: 1.8;
}
.story-band-content blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}
.story-band-content blockquote p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--gold-light);
  line-height: 1.5;
}

/* ============================
   REVIEWS
   ============================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars {
  display: flex;
  gap: 3px;
}
.review-stars svg { color: var(--gold); }
.review-card blockquote p {
  font-size: var(--text-sm);
  color: var(--ink-mid);
  line-height: 1.75;
  font-style: italic;
}
.review-card cite {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: normal;
}
.reviews-cta { text-align: center; }

/* ============================
   VIP SECTION
   ============================ */
.vip-section { background: var(--ink-soft); padding: 5rem 0; }
.vip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.vip-text h2 { color: #fff; margin-bottom: 0.75rem; }
.vip-text p { color: rgba(255,255,255,0.65); font-size: var(--text-md); line-height: 1.75; margin-bottom: 1.5rem; }
.vip-perks {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.vip-perks li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.75);
  font-size: var(--text-sm);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.vip-perks li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* VIP FORM */
.vip-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.optional { font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.9em; }
.field-hint { font-size: var(--text-xs); color: rgba(255,255,255,0.35); line-height: 1.4; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r);
  color: #fff;
  font-size: var(--text-base);
  transition: border-color var(--dur);
  outline: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus { border-color: var(--gold); background: rgba(255,255,255,0.09); }
.form-group input[aria-invalid="true"] { border-color: #e07070; }
.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-check label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  line-height: 1.5;
}
.form-check label a { color: var(--gold-light); text-decoration: underline; }
.form-msg {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: var(--r);
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: center;
}
.form-msg.success { display: block; background: rgba(45,106,79,0.25); color: #7ed9a8; border: 1px solid rgba(45,106,79,0.4); }
.form-msg.error   { display: block; background: rgba(155,35,53,0.2); color: #f5a0a8; border: 1px solid rgba(155,35,53,0.35); }

/* ============================
   HOURS / INFO
   ============================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.info-card {
  background: var(--off-white);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  background: var(--sand-light);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
}
.info-card h2 { font-size: var(--text-xl); }
.info-card h3 { font-size: var(--text-lg); font-family: var(--ff-display); }
.hours-table { width: 100%; }
.hours-table th, .hours-table td {
  padding: 0.45rem 0;
  font-size: var(--text-sm);
  color: var(--ink-mid);
  border-bottom: 1px solid var(--sand);
  text-align: left;
}
.hours-table th { font-weight: 500; color: var(--ink); }
.hours-table td { text-align: right; }
.hours-table tr.closed th,
.hours-table tr.closed td { color: var(--ink-muted); }
.order-options {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
}
.order-options li {
  font-size: var(--text-sm);
  color: var(--ink-mid);
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--sand);
}
.info-card address p {
  font-size: var(--text-sm);
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 0.25rem;
}
.info-card address a { color: var(--olive); font-weight: 500; }
.info-card address a:hover { text-decoration: underline; }

/* ============================
   LOCATION / MAP
   ============================ */
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}
.map-btns {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================
   INSTAGRAM
   ============================ */
.instagram-section { padding: 4rem 0; }
.instagram-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.instagram-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-xl);
}
.instagram-text h2 { color: #fff; margin-bottom: 1rem; }
.instagram-text p { color: rgba(255,255,255,0.65); font-size: var(--text-md); margin-bottom: 2rem; }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--ink);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: var(--text-xs);
  font-weight: 500;
  transition: color var(--dur);
}
.footer-social:hover { color: #fff; }
.footer-col h3 {
  font-family: var(--ff-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li, .footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--dur);
  line-height: 1.5;
}
.footer-col a:hover { color: #fff; }
.footer-col address p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 0.375rem;
}
.footer-col address a { color: rgba(255,255,255,0.5); }
.footer-col address a:hover { color: #fff; }
.footer-hours { width: 100%; }
.footer-hours th, .footer-hours td {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: left;
}
.footer-hours th { font-weight: 500; }
.footer-hours td { text-align: right; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
}
.footer-bottom nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom nav a,
.cookie-reopen {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  transition: color var(--dur);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.footer-bottom nav a:hover,
.cookie-reopen:hover { color: rgba(255,255,255,0.75); }

/* ============================
   RESPONSIVE — TABLET (≤900px)
   ============================ */
@media (max-width: 900px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(12,14,10,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 150;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.5rem; }
  .btn-nav-cta { font-size: 1.25rem; padding: 0.75rem 2rem; }

  /* Splits */
  .split, .split-reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .split-reverse .split-image { order: -1; }
  .split-image img { aspect-ratio: 16/9; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* VIP */
  .vip-inner { grid-template-columns: 1fr; gap: 3rem; }

  /* Info */
  .info-grid { grid-template-columns: 1fr; }

  /* Instagram */
  .instagram-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .instagram-img img { aspect-ratio: 16/9; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================
   RESPONSIVE — MOBILE (≤600px)
   ============================ */
@media (max-width: 600px) {
  .container { padding: 0 1.125rem; }
  .section { padding: 3.5rem 0; }
  .story-band { padding: 4rem 0; }

  .hero-content { padding: 5rem 1.125rem 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .trust-bar { gap: 0.25rem 0; }
  .trust-item { padding: 0.375rem 0.875rem; font-size: 0.65rem; }
  .trust-divider { display: none; }

  .order-band-inner { flex-direction: column; text-align: center; }
  .order-band-actions { flex-direction: column; width: 100%; }
  .order-band-actions .btn { justify-content: center; }

  .map-btns { flex-direction: column; }
  .map-btns .btn { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cookie-inner { flex-direction: column; gap: 1rem; }
  .cookie-actions { flex-wrap: wrap; }

  .ada-widget { bottom: 1rem; left: 1rem; }

  .reviews-grid { gap: 1rem; }
}

/* ============================
   REDUCED MOTION (system pref)
   ============================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
