/* =============================================================
   J&J Tex Mex Restaurant — styles.css
   Archetype: Light Editorial Cream (adapted Southwestern)
   v=20260604
   ============================================================= */

/* =============================================================
   1. TOKENS — custom properties
   ============================================================= */
:root {
  /* Brand palette */
  --brick:      #9B1B1F;
  --brick-dark: #6E1216;
  --charcoal:   #1E1B18;
  --cream:      #F4E9D6;
  --cream-2:    #EFE2C8;
  --terracotta: #C8742C;
  --flame:      #E8A33D;
  --sage:       #5B6E4A;
  --ink-muted:  #5A524A;

  /* Semantic tokens */
  --bg:         var(--cream);
  --bg-alt:     var(--cream-2);
  --text:       var(--charcoal);
  --text-muted: var(--ink-muted);
  --accent:     var(--brick);
  --accent-2:   var(--terracotta);
  --gold:       var(--flame);
  --line:       rgba(30, 27, 24, 0.12);

  /* Typography */
  --font-display: 'Yeseva One', Georgia, serif;
  --font-slab:    'Zilla Slab', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-sans:    system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Spacing */
  --gutter:     clamp(1rem, 3.5vw, 1.75rem);
  --container:  1200px;
  --nav-h:      64px;
  --section-py: clamp(2rem, 4.5vw, 3.5rem);

  /* Easings */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Border radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1vw + 0.65rem, 1.0625rem);
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;

  /* Parchment background texture via CSS */
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(200,116,44,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(155,27,31,0.04) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
  background-attachment: fixed;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.1;
}
ul, ol { list-style: none; padding: 0; }

/* =============================================================
   3. UTILITIES
   ============================================================= */
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  padding: 0.6rem 1.2rem;
  background: var(--brick);
  color: var(--cream);
  z-index: 9999;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-py);
  position: relative;
}

/* Defensive rule: reveal + data-split never invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ::selection */
::selection { background: var(--brick); color: var(--cream); }

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

/* =============================================================
   4. TYPOGRAPHY
   ============================================================= */
.section-kicker {
  font-family: var(--font-slab);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw + 0.4rem, 2.75rem);
  color: var(--charcoal);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.cat-heading {
  font-family: var(--font-slab);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.cat-heading-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--flame) 0%, transparent 100%);
  opacity: 0.5;
}
.cat-heading-line:last-child {
  background: linear-gradient(270deg, var(--flame) 0%, transparent 100%);
}

.cat-note {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--flame);
  background: rgba(232,163,61,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* =============================================================
   5. COMPONENTS — buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-slab);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    transform 0.18s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brick);
  color: var(--cream);
  border-color: var(--brick);
}
.btn-primary:hover {
  background: var(--brick-dark);
  border-color: var(--brick-dark);
  box-shadow: 0 6px 24px rgba(155,27,31,0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244,233,214,0.5);
}
.btn-ghost:hover {
  background: rgba(244,233,214,0.12);
  border-color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--brick);
  border-color: var(--brick);
}
.btn-outline:hover {
  background: var(--brick);
  color: var(--cream);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* =============================================================
   5b. COMPONENTS — section dividers
   ============================================================= */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2rem;
  color: var(--flame);
  opacity: 0.5;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

/* =============================================================
   6. NAVBAR
   ============================================================= */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft);
}

/* Transparent over hero */
.nav-header--transparent {
  background: transparent;
}

/* Solid after scroll */
.nav-header--solid {
  background: rgba(244,233,214,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(30,27,24,0.08);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
  /* White-bg logo needs a subtle pill when over dark hero */
  background: rgba(244,233,214,0.92);
  border-radius: var(--radius-sm);
  padding: 3px 6px;
}
.nav-logo:hover { opacity: 0.85; }
.nav-header--solid .nav-logo {
  background: transparent;
  padding: 0;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav transparent state — keep links readable over dark hero */
.nav-header--transparent .nav-link { color: rgba(244,233,214,0.85); }
.nav-header--transparent .nav-link:hover { color: var(--cream); }
.nav-header--transparent .nav-cta {
  background: var(--brick);
  border-color: var(--brick);
  color: var(--cream);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-slab);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--brick);
  background: rgba(155,27,31,0.06);
}

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.875rem;
  padding: 0.6rem 1.1rem;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: background 0.2s;
}
.nav-burger:hover { background: rgba(155,27,31,0.08); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-header--transparent .nav-burger { color: var(--cream); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(244,233,214,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem var(--gutter) 2rem;
  box-shadow: 0 8px 32px rgba(30,27,24,0.12);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-soft), padding 0.4s var(--ease-soft), opacity 0.3s;
  opacity: 0;
}
.nav-mobile.is-open {
  max-height: 400px;
  opacity: 1;
}
.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.nav-mobile .nav-link {
  display: block;
  font-size: 1.05rem;
  padding: 0.625rem 0.75rem;
  color: var(--charcoal);
}

/* =============================================================
   7. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  padding-bottom: 2.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Real hero photo */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30,27,24,0.45) 0%,
    rgba(30,27,24,0.3) 40%,
    rgba(30,27,24,0.65) 100%
  );
}

/* Zia decoration */
.hero-zia-wrap {
  position: absolute;
  top: clamp(5rem, 12vh, 9rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
.hero-zia {
  width: clamp(40px, 6vw, 72px);
  height: clamp(40px, 6vw, 72px);
  color: var(--flame);
  opacity: 0.7;
  animation: ziaFloat 6s ease-in-out infinite;
}
@keyframes ziaFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--gutter);
  padding-top: clamp(1.5rem, 5vh, 3rem);
}

.hero-eyebrow {
  font-family: var(--font-slab);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw + 0.8rem, 4.5rem);
  line-height: 0.98;
  color: var(--cream);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  max-width: 14ch;
  margin-inline: auto;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.2vw + 0.3rem, 1.1rem);
  color: rgba(244,233,214,0.85);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-slab);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(244,233,214,0.65);
  text-transform: uppercase;
}
.hero-badges span:not([aria-hidden]) {
  background: rgba(244,233,214,0.1);
  border: 1px solid rgba(244,233,214,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-slab);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--flame);
  margin-bottom: 1.25rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.hero-phone:hover {
  color: var(--cream);
  background: rgba(232,163,61,0.15);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Decorative chile accents */
.hero-chiles {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
  padding: 0 2vw;
  opacity: 0.35;
}
.chile-deco {
  width: clamp(20px, 3vw, 40px);
  height: auto;
  color: var(--brick);
  transform-origin: bottom center;
  animation: chileWave 4s ease-in-out infinite;
}
.chile-deco--2 {
  color: var(--terracotta);
  animation-delay: 1.5s;
  animation-direction: alternate-reverse;
}
@keyframes chileWave {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

/* =============================================================
   8. INFO STRIP
   ============================================================= */
.info-strip {
  background: var(--charcoal);
  color: var(--cream);
  padding-block: 1rem;
  position: relative;
  z-index: 1;
}
.info-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brick), var(--flame), var(--terracotta), var(--brick));
}

.info-strip-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.info-item svg { color: var(--flame); flex-shrink: 0; }
.info-item div { display: flex; flex-direction: column; gap: 0.1rem; }
.info-item strong {
  font-family: var(--font-slab);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
}
.info-item span,
.info-item a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(244,233,214,0.85);
}
.info-item a:hover { color: var(--flame); text-decoration: underline; }

.info-divider {
  color: var(--flame);
  font-size: 0.625rem;
  opacity: 0.4;
  margin: 0 0.5rem;
}

/* =============================================================
   9. ABOUT
   ============================================================= */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-text { }
.about-text .btn { margin-top: 2rem; }

.about-body {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-body:first-of-type { font-size: 1.1rem; color: var(--charcoal); }

/* About real photo */
.about-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(30,27,24,0.12);
}

/* Photo strip */
.photo-strip { overflow: hidden; }
.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  height: clamp(160px, 20vw, 260px);
}
.photo-strip-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}
@media (hover: hover) {
  .photo-strip-grid img:hover { transform: scale(1.04); }
}

/* =============================================================
   10. MENU SECTION
   ============================================================= */
.menu-section {
  background: var(--bg-alt);
  position: relative;
}

.menu-ornament {
  display: flex;
  justify-content: center;
  padding: 1.5rem var(--gutter);
  color: var(--terracotta);
  opacity: 0.5;
}
.menu-ornament svg { width: min(300px, 80%); }

.menu-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.menu-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--ink-muted);
}

/* Category pills navigation */
.menu-pills {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--bg-alt);
  padding: 0.75rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-pills::-webkit-scrollbar { display: none; }

.menu-pills ul {
  display: flex;
  gap: 0.5rem;
  padding-inline: 0;
  width: max-content;
  margin-inline: auto;
}

.pill {
  font-family: var(--font-slab);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  border: 1.5px solid var(--line);
  color: var(--ink-muted);
  background: var(--bg);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pill:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: rgba(200,116,44,0.06);
}
.pill.pill-active,
.pill[aria-current="true"] {
  background: var(--brick);
  color: var(--cream);
  border-color: var(--brick);
}

/* Menu category block */
.menu-category {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.menu-category:last-of-type { border-bottom: none; }

/* Menu list */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dotted rgba(90,82,74,0.2);
  position: relative;
}
.menu-item:last-child { border-bottom: none; }

.menu-item--featured {
  background: rgba(155,27,31,0.03);
  margin-inline: -0.75rem;
  padding-inline: 0.75rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px dotted rgba(90,82,74,0.2) !important;
}

.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}

.menu-item-name {
  font-family: var(--font-slab);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}
.menu-item--featured .menu-item-name { color: var(--brick); }

.menu-item-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.menu-item-price {
  font-family: var(--font-slab);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--brick);
  flex-shrink: 0;
  white-space: nowrap;
}

/* Drinks grid */
.menu-list--drinks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0;
}
.menu-item--drink {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem 0;
  border-bottom: 1px dotted rgba(90,82,74,0.2);
}

/* Consumer advisory */
.consumer-advisory {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  background: rgba(90,82,74,0.06);
  border-radius: var(--radius-sm);
  line-height: 1.5;
}

/* Gratuity notice */
.gratuity-notice {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-slab);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-align: center;
  justify-content: center;
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background: rgba(30,27,24,0.04);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.gratuity-notice svg { color: var(--terracotta); flex-shrink: 0; }

/* =============================================================
   11. GROUP ORDERS / PARTIES TO GO
   ============================================================= */
.group-orders {
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Warm glow behind section */
.group-orders::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(155,27,31,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(200,116,44,0.2) 0%, transparent 55%);
  pointer-events: none;
}

.group-orders-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.group-orders-header .section-title { color: var(--cream); }
.group-orders-sub {
  color: rgba(244,233,214,0.75);
  max-width: 52ch;
  margin-inline: auto;
  font-style: italic;
}

.tray-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.tray-card {
  background: rgba(244,233,214,0.06);
  border: 1px solid rgba(244,233,214,0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.25rem;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.25s var(--ease-out);
}
.tray-card:hover {
  background: rgba(244,233,214,0.1);
  border-color: rgba(232,163,61,0.35);
  transform: translateY(-4px);
}

.tray-icon {
  width: 44px;
  height: 44px;
  margin-inline: auto;
  margin-bottom: 0.75rem;
  color: var(--flame);
  opacity: 0.8;
}
.tray-icon svg { width: 100%; height: 100%; }

.tray-name {
  font-family: var(--font-slab);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.tray-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(244,233,214,0.65);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.tray-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--flame);
}

.group-orders-cta {
  text-align: center;
  position: relative;
}
.group-orders-cta > p:first-child {
  font-family: var(--font-body);
  font-style: italic;
  color: rgba(244,233,214,0.75);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.group-orders-cta .btn-primary {
  margin-inline: auto;
}

.tray-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(244,233,214,0.5);
  margin-top: 1.25rem;
}

/* =============================================================
   12. VISIT / LOCATION
   ============================================================= */
.visit {
  background: var(--bg);
}

.visit-header {
  text-align: center;
  margin-bottom: 3rem;
}

.visit-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.visit-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(30,27,24,0.1);
  border: 1px solid var(--line);
}
.visit-map iframe {
  display: block;
  border-radius: var(--radius-md);
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.visit-detail svg { color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }
.visit-detail strong {
  display: block;
  font-family: var(--font-slab);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.35rem;
}
.visit-detail p {
  color: var(--ink-muted);
  line-height: 1.6;
  font-size: 0.9375rem;
}

.visit-link {
  font-family: var(--font-slab);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brick);
  margin-top: 0.35rem;
  display: inline-block;
  transition: color 0.2s;
}
.visit-link:hover { color: var(--brick-dark); text-decoration: underline; }

.visit-phone {
  font-family: var(--font-slab);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brick);
  transition: color 0.2s;
}
.visit-phone:hover { color: var(--brick-dark); }

.visit-social strong {
  display: block;
  font-family: var(--font-slab);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.social-links,
.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-slab);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-muted);
  padding: 0.5rem 0.875rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-link:hover {
  color: var(--brick);
  border-color: var(--brick);
  background: rgba(155,27,31,0.04);
}

/* =============================================================
   13. REVIEWS
   ============================================================= */
.reviews {
  background: var(--bg-alt);
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-stars {
  font-size: 1.5rem;
  color: var(--flame);
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  position: relative;
  transition: box-shadow 0.3s, transform 0.25s var(--ease-out);
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(30,27,24,0.08);
  transform: translateY(-3px);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--flame);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}

.review-stars {
  font-size: 1rem;
  color: var(--flame);
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
}

.review-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  quotes: none;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.review-author strong {
  font-family: var(--font-slab);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal);
}
.review-author span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.reviews-cta {
  text-align: center;
}

/* =============================================================
   14. FAQ
   ============================================================= */
.faq {
  background: var(--bg);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.faq-item::marker,
.faq-item::-webkit-details-marker { display: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  cursor: pointer;
  font-family: var(--font-slab);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.2s;
  user-select: none;
  list-style: none;
}
.faq-question:hover { color: var(--brick); }
.faq-question::-webkit-details-marker { display: none; }

.faq-arrow {
  flex-shrink: 0;
  color: var(--terracotta);
  transition: transform 0.3s var(--ease-out);
}

.faq-item[open] .faq-arrow { transform: rotate(180deg); }
.faq-item[open] .faq-question { color: var(--brick); }

.faq-answer {
  padding-bottom: 1rem;
  padding-right: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer a {
  color: var(--brick);
  font-weight: 600;
  transition: color 0.2s;
}
.faq-answer a:hover { color: var(--brick-dark); text-decoration: underline; }

/* =============================================================
   15. FOOTER
   ============================================================= */
.footer {
  background: var(--charcoal);
  color: rgba(244,233,214,0.8);
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.footer-ornament {
  padding-inline: var(--gutter);
  margin-bottom: 3rem;
  color: var(--flame);
}
.footer-ornament svg {
  width: 100%;
  max-width: 600px;
  height: 20px;
  margin-inline: auto;
  display: block;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 1rem;
  transition: opacity 0.2s;
  /* White-bg logo needs a light backing on dark footer */
  background: rgba(244,233,214,0.08);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}
.footer-logo:hover { opacity: 0.85; }

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Brighten/contrast so it reads well on dark bg */
  filter: brightness(1.05) contrast(1.05);
}
.footer-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(244,233,214,0.5);
}

.footer-heading {
  font-family: var(--font-slab);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 1.25rem;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(244,233,214,0.7);
  line-height: 1.5;
}
.footer-info-list svg { color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }
.footer-info-list a {
  color: rgba(244,233,214,0.7);
  transition: color 0.2s;
}
.footer-info-list a:hover { color: var(--flame); }

.footer-social-links .social-link {
  color: rgba(244,233,214,0.65);
  border-color: rgba(244,233,214,0.15);
  background: rgba(244,233,214,0.04);
  margin-bottom: 1rem;
}
.footer-social-links .social-link:hover {
  color: var(--flame);
  border-color: var(--flame);
  background: rgba(232,163,61,0.08);
}

.footer-cta-btn { margin-top: 0.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(244,233,214,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(244,233,214,0.4);
}
.footer-disclaimer {
  font-style: italic;
}

/* =============================================================
   16. FLOATING CALL BUTTON (mobile)
   ============================================================= */
.float-call {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brick);
  color: var(--cream);
  padding: 0.8rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-slab);
  font-size: 0.9375rem;
  font-weight: 700;
  box-shadow: 0 6px 28px rgba(155,27,31,0.4);
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s var(--ease-out);
  animation: floatPulse 3s ease-in-out infinite;
}
.float-call:hover {
  background: var(--brick-dark);
  box-shadow: 0 8px 36px rgba(155,27,31,0.5);
  transform: scale(1.04);
  animation: none;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(155,27,31,0.4); }
  50% { box-shadow: 0 6px 36px rgba(155,27,31,0.6), 0 0 0 8px rgba(155,27,31,0.08); }
}

/* =============================================================
   17. RESPONSIVE — mobile-first breakpoints
   ============================================================= */

/* ── 540px ── */
@media (min-width: 540px) {
  .info-strip-grid { gap: 2rem; }
}

/* ── 720px ── */
@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-cta { margin-left: 0.5rem; }
  .nav-burger { display: none; }
  .nav-mobile { display: none !important; }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .visit-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .float-call span { display: inline; }

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

/* ── 960px ── */
@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .float-call {
    display: none; /* hide on desktop — phone in nav is enough */
  }
}

/* ── 1280px ── */
@media (min-width: 1280px) {
  .tray-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =============================================================
   18. REDUCED MOTION — only INTRUSIVE effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  /* Float animations are intrusive (infinite) — disable */
  .hero-zia { animation: none; }
  .chile-deco { animation: none; }
  .float-call { animation: none; }
  /* DO NOT disable: reveals, hovers, transitions — those are functional */
}

/* =============================================================
   19. PRINT
   ============================================================= */
@media print {
  .nav-header, .float-call, .hero-bg { display: none; }
  .hero { min-height: auto; padding-top: 2rem; background: white; }
  .hero-content, .hero-title, .hero-sub { color: black; }
  .group-orders, .footer { background: white; color: black; }
  .btn { border: 1px solid currentColor; }
}
