/* ============================================================
   EMBARGO — CLASSIC TEMPLATE (LOW TIER)

   COLOUR VARIABLES — change these to rebrand entirely.
   BACKGROUND = page background (white or near-white)
   PRIMARY    = main brand colour (~10% of visible surface)
   ACCENT     = secondary colour (~5% of visible surface)
   TEXT       = body text (near-black, slight brand hue cast)
   TEXT_RGB   = raw RGB triplet of COLOR_TEXT for rgba() shadows
                e.g. if COLOR_TEXT is #1c2b1a, TEXT_RGB is "28, 43, 26"
   HERO_TEXT  = text colour on the hero image (white or dark)
   ============================================================ */

:root {
  --color-background: #ffffff;
  --color-primary:    #c10807;
  --color-accent:     #f90502;
  --color-text:       #1a1a1a;
  --color-hero-text:  #ffffff;

  --nav-height:    68px;
  --radius:        8px;
  --section-py:    80px;
  --section-px:    clamp(48px, 8vw, 120px);
  --max-width:     1280px;

  --text-hero:     clamp(36px, 5vw, 64px);
  --text-heading:  clamp(24px, calc(20.65px + 0.788vw), 32px);
  --text-body:     clamp(13px, 1.2vw, 15px);
  --text-body-lh:  1.65;
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Base ─────────────────────────────────────────────────── */
body {
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--text-body);
  line-height: var(--text-body-lh);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
}

/* Subtle grain texture over the full page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
}

/* ── Scroll-to anchors — account for sticky nav ────────────── */
#reviews, #order, #loyalty, #about, #locations {
  scroll-margin-top: calc(var(--nav-height) + 48px);
}

/* ── Scroll entrance animations ─────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  [data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  }
  [data-animate].visible {
    opacity: 1;
    transform: translateY(0);
  }
  .review-card:nth-child(2)[data-animate] { transition-delay: 0.1s; }
  .review-card:nth-child(3)[data-animate] { transition-delay: 0.2s; }
  .review-card:nth-child(4)[data-animate] { transition-delay: 0.3s; }
  .review-card:nth-child(5)[data-animate] { transition-delay: 0.4s; }
  .location-card:nth-child(2)[data-animate] { transition-delay: 0.1s; }
  .location-card:nth-child(3)[data-animate] { transition-delay: 0.2s; }
  .img-slider[data-animate] { transition-delay: 0.1s; }
  .about-content[data-animate] { transition-delay: 0.1s; }
  .loyalty-text-col[data-animate] { transition-delay: 0.1s; }
}

/* ── Shared section inner ───────────────────────────────────── */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-py) var(--section-px);
}

/* ── Shared section heading ─────────────────────────────────── */
.section-heading {
  font-size: var(--text-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 16px;
}

/* On primary-coloured section backgrounds — headings turn white */
.section--green .section-heading {
  color: #ffffff;
}

/* ── Shared section label (eyebrow) ─────────────────────────── */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}


/* ════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--color-background);
  box-shadow: 0 1px 28px color-mix(in srgb, var(--color-text) 10%, transparent);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo-link { display: flex; align-items: center; }
.nav-logo { height: 36px; width: auto; mix-blend-mode: multiply; } /* one-off: client logo PNG has white background */

.nav-brand {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.nav-brand:hover { opacity: 0.7; }

/* Nav identity variants */
.nav--logo .nav-brand { display: none; }
.nav--wordmark .nav-logo-link { display: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--color-text);
  opacity: 0.7;
  transition: opacity 0.18s, color 0.18s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width 0.18s ease;
}
.nav-link:hover { opacity: 1; color: var(--color-accent); }
.nav-link:hover::after { width: 100%; }

.nav-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-social-link {
  display: flex;
  align-items: center;
  color: var(--color-text);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-social-link:hover { opacity: 1; }
.nav-social-link svg { width: 20px; height: 20px; }

.btn-order {
  background: var(--color-primary);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: filter 0.2s;
  white-space: nowrap;
}
.btn-order:hover { filter: brightness(0.88); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-brand { display: none; }
  /* Force logo visible on mobile regardless of nav identity class */
  .nav--wordmark .nav-logo-link { display: flex; }
  /* Slide entire nav off-screen once sticky bar takes over */
  .nav { transition: top 0.3s ease; }
  .nav--scrolled { top: calc(-1 * var(--nav-height)); }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 20px; }
  .nav-socials { display: none; }
}


/* ════════════════════════════════════════════════════════════
   HERO
   Full-screen image. Text overlaid, left-anchored on desktop,
   centred at bottom on mobile.
   ════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: calc(100vh - var(--nav-height));
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.28) 50%,
    transparent 75%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 0 var(--section-px);
  max-width: 640px;
}

.hero-name {
  font-size: var(--text-hero);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-hero-text);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.25);
}

.hero-tagline {
  font-size: var(--text-body);
  font-weight: 400;
  color: var(--color-hero-text);
  opacity: 0.85;
  max-width: 440px;
  margin-bottom: 36px;
  line-height: var(--text-body-lh);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
  .hero {
    justify-content: center;
    align-items: center;
  }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.20) 0%,
      rgba(0, 0, 0, 0.58) 40%,
      rgba(0, 0, 0, 0.58) 60%,
      rgba(0, 0, 0, 0.20) 100%
    );
  }
  .hero-content {
    text-align: center;
    padding: 0 24px;
    max-width: 100%;
  }
  .hero-tagline { margin: 0 auto 36px; }
}


/* ════════════════════════════════════════════════════════════
   BUTTON SYSTEM
   Two variants: primary (filled) and secondary (outlined).
   On .section--green backgrounds, primary inverts to white fill.
   ════════════════════════════════════════════════════════════ */

.btn-primary {
  display: inline-block;
  background: var(--color-primary);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: var(--radius);
  transition: filter 0.2s;
  text-align: center;
}
.btn-primary:hover { filter: brightness(0.88); }

/* Inverted: white fill on primary-coloured section backgrounds */
.section--green .btn-primary {
  background: #ffffff;
  color: var(--color-primary);
}
.section--green .btn-primary:hover { filter: brightness(0.94); }

/* Loyalty column is flex-column — prevent button stretching to full width */
.loyalty-text-col .btn-primary { align-self: flex-start; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 34px;
  border-radius: var(--radius);
  transition: filter 0.2s;
}
.btn-secondary:hover { filter: brightness(0.88); }


/* ════════════════════════════════════════════════════════════
   REVIEWS
   Horizontal scroll carousel. Swipe on mobile, dots on all.
   Type C cards: white + border + flat-offset shadow.
   ════════════════════════════════════════════════════════════ */

.reviews .section-inner {
  padding-top: 56px;
  padding-bottom: 56px;
}

.reviews .section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(26, 26, 26, 0.15);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.carousel-arrow:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}
.carousel-arrow svg { width: 16px; height: 16px; pointer-events: none; }

@media (max-width: 768px) {
  .carousel-arrow { display: none; }
}

.reviews-carousel-wrap {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 20px;
  flex: 1;
  min-width: 0;
}
.reviews-carousel-wrap::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(26, 26, 26, 0.10);
  box-shadow: 4px 4px 0px rgba(26, 26, 26, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 768px) {
  .review-card { flex: 0 0 100%; }
}

.review-stars {
  font-size: 1rem;
  color: #f59e0b;
  letter-spacing: 0.05em;
}

.review-text {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.review-author {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text);
  opacity: 0.55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-text);
  opacity: 0.2;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: opacity 0.2s;
  position: relative;
}
.reviews-dot.active {
  opacity: 1;
  background: var(--color-primary);
}

@media (max-width: 768px) {
  .reviews-dot::before {
    content: '';
    position: absolute;
    inset: -14px;
  }
}


/* ════════════════════════════════════════════════════════════
   ORDER
   Primary-colour background (.section--green). Two-column:
   text + CTAs left, fan carousel right.
   ════════════════════════════════════════════════════════════ */

.order-section {
  background: var(--color-primary);
}

.order-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: center;
}

.order-content {
  display: flex;
  flex-direction: column;
}

.order-body {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--text-body-lh);
  margin-bottom: 36px;
}

.order-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .order-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Offer toggle — ghost button on primary background */
details.offer-toggle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
details.offer-toggle[open] {
  flex-basis: 100%;
}

.btn-offer {
  list-style: none;
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  -webkit-user-select: none;
  user-select: none;
}
.btn-offer::-webkit-details-marker { display: none; }
.btn-offer::marker { display: none; content: ''; }
.btn-offer:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
}

.offer-form-body {
  width: 100%;
  margin-top: 28px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}

/* Image slider — one photo at a time, arrows + dots overlaid */
.img-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
}

.img-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.img-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.img-slider__slide.is-active { opacity: 1; }

.img-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.2s;
}
.img-slider__arrow:hover { background: #ffffff; }
.img-slider__arrow svg { width: 18px; height: 18px; pointer-events: none; }
.img-slider__arrow--prev { left: 12px; }
.img-slider__arrow--next { right: 12px; }

.img-slider__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.img-slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.img-slider__dot.is-active { background: #ffffff; }

@media (max-width: 768px) {
  .img-slider { aspect-ratio: 16 / 9; }
}


/* ════════════════════════════════════════════════════════════
   ABOUT
   50/50 split: image left, content right.
   ════════════════════════════════════════════════════════════ */

.about-section {
  display: flex;
  min-height: 560px;
}

.about-image-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-content {
  flex: 1;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-py) var(--section-px);
}

.about-heading {
  font-size: var(--text-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 24px;
}

.about-body {
  font-size: var(--text-body);
  color: var(--color-text);
  line-height: var(--text-body-lh);
  max-width: 480px;
  opacity: 0.75;
}

@media (min-width: 901px) {
  .about-image-wrap {
    flex: 0 0 50%;
    max-height: 540px;
    align-self: center;
  }
}

@media (max-width: 900px) {
  .about-section { flex-direction: column; }
  .about-content { order: 1; padding: 48px 28px; }
  .about-image-wrap { order: 2; min-height: 320px; flex: none; border-radius: 0; }
  .about-body { max-width: 100%; }
}


/* ════════════════════════════════════════════════════════════
   LOYALTY
   Image left, text right. Embargo app download CTA.
   ════════════════════════════════════════════════════════════ */

.loyalty-section {
  background: color-mix(in srgb, var(--color-primary) 6%, var(--color-background));
  display: flex;
  min-height: 560px;
}

.loyalty-image-col {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-py) var(--section-px);
}

.loyalty-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.15));
}

.loyalty-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-py) var(--section-px);
  gap: 24px;
}

.loyalty-body {
  font-size: var(--text-body);
  color: var(--color-text);
  line-height: var(--text-body-lh);
  opacity: 0.75;
  max-width: 420px;
}

@media (max-width: 900px) {
  .loyalty-section { flex-direction: column; min-height: auto; }
  /* Text above image on mobile */
  .loyalty-text-col { order: 1; padding: 48px 28px 24px; }
  .loyalty-image-col { order: 2; padding: 0 28px 48px; }
  .loyalty-body { max-width: 100%; }
}


/* ════════════════════════════════════════════════════════════
   LOCATIONS
   Type C location cards on page background.
   ════════════════════════════════════════════════════════════ */

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.location-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(26, 26, 26, 0.10);
  box-shadow: 4px 4px 0px rgba(26, 26, 26, 0.06);
}

.location-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.55;
}

.location-row a {
  color: var(--color-text);
  transition: color 0.2s;
}
.location-row a:hover { color: var(--color-primary); }

.location-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hours-row {
  display: flex;
  gap: 0;
  margin: 0;
  line-height: 1.55;
}

.hours-day {
  min-width: 84px;
  font-weight: 500;
}

.location-map {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}
.location-map iframe { display: block; width: 100%; }

@media (max-width: 768px) {
  .locations-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) {
  .locations-grid:has(.location-card:only-child) {
    grid-template-columns: 1fr;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
  }
  .locations-section:has(.location-card:only-child) .section-heading {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .section-inner { padding: var(--section-py) 20px; }
  .location-card { padding: 28px 24px; }
}


/* ════════════════════════════════════════════════════════════
   FOOTER
   Brand primary colour background.
   ════════════════════════════════════════════════════════════ */

.footer {
  background: var(--color-primary);
  color: #ffffff;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px var(--section-px) 40px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 28px;
}

.footer-brand {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  color: #ffffff;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-social-link:hover { opacity: 1; }
.footer-social-link svg { width: 22px; height: 22px; }

/* Instagram — shown with "Follow us" label */
.footer-instagram {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-instagram:hover { opacity: 1; }

.footer-instagram-label {
  font-size: var(--text-body);
  font-weight: 500;
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-details,
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.footer-details a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-details a:hover { color: #ffffff; }

.footer-nav {
  display: flex;
  gap: 32px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #ffffff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 600px) {
  .footer-inner { padding: 48px 20px 32px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-info { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* ════════════════════════════════════════════════════════════
   STICKY ORDER BAR
   Mobile only — hidden on desktop.
   Slides up once hero scrolls out of view.
   ════════════════════════════════════════════════════════════ */

.sticky-order {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-order.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-order-brand {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
}

.sticky-order-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-ig-link {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.sticky-ig-link:hover { color: #ffffff; }
.sticky-ig-link svg { width: 22px; height: 22px; }

.sticky-order-btn {
  background: #ffffff;
  color: var(--color-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: filter 0.2s;
  white-space: nowrap;
}
.sticky-order-btn:hover { filter: brightness(0.94); }

@media (min-width: 769px) {
  .sticky-order { display: none; }
}

@media (max-width: 768px) {
  body { padding-bottom: 64px; }
}

@media (max-width: 600px) {
  .sticky-order { padding: 12px 20px; }
  .sticky-order-brand { font-size: 0.875rem; }
  .sticky-ig-link svg { width: 20px; height: 20px; }
  .sticky-order-btn { padding: 10px 20px; font-size: 13px; }
}
