/* =========================================================
   Otra Vez Mobile Bartending — Design System
   Brand colors are the owners' supplied hex values.
   Contrast pairs verified against WCAG 2.2 AA (4.5:1 normal text).
   ========================================================= */

:root {
  /* Brand colors (as supplied) */
  --blue: #23597B;
  --red: #C02726;
  --orange: #E86900;      /* backgrounds, icons, LARGE display text only (3.08:1 on cream) */
  --orange-text: #B85400; /* darkened variant — safe for body-scale text/links (4.6:1 on cream) */
  --green: #2E7930;
  --gold: #EEA027;
  --gold-text: #9C6A0E;   /* darkened variant — safe for body-scale text/links */
  --lime: #9BC53D;        /* accent only — never as text on light backgrounds */
  --lime-deep: #6E9A2C;   /* accessible-ish darker lime for small accents */

  /* Neutrals */
  --cream: #FFF8EC;
  --cream-deep: #FBEDD3;
  --ink: #2B2118;
  --ink-soft: #55483C;
  --white: #FFFFFF;
  --line: rgba(43, 33, 24, 0.14);

  /* Semantic */
  --color-bg: var(--cream);
  --color-surface: var(--white);
  --color-text: var(--ink);
  --color-text-muted: var(--ink-soft);
  --color-heading: var(--blue);
  --color-link: var(--orange-text);
  --color-primary: var(--red);
  --color-primary-contrast: var(--white);
  --color-secondary: var(--blue);
  --color-secondary-contrast: var(--white);
  --color-accent: var(--gold);
  --color-focus: var(--blue);

  /* Typography */
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Mulish", system-ui, -apple-system, sans-serif;

  --fs-body: 1rem;             /* 16px */
  --fs-small: 0.9375rem;       /* 15px */
  --fs-eyebrow: 0.875rem;      /* 14px */
  --fs-h3: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-h2: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
  --fs-h1: clamp(2.25rem, 1.6rem + 2.8vw, 3.75rem);
  --fs-hero: clamp(3rem, 1.6rem + 6vw, 6.5rem);

  --lh-body: 1.65;
  --lh-tight: 1.15;

  /* Spacing (8px rhythm) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-card: 0 12px 30px -14px rgba(43, 33, 24, 0.28);
  --shadow-pop: 0 18px 40px -16px rgba(35, 89, 123, 0.35);

  --container-max: 1200px;

  --dur-fast: 150ms;
  --dur-base: 300ms;
  --dur-slow: 550ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --z-nav: 100;
  --z-mobile-menu: 200;
  --z-toast: 300;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  min-height: 100dvh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}
img, picture, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--color-heading); line-height: var(--lh-tight); margin: 0 0 var(--space-4); font-weight: 600; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 var(--space-4); max-width: 68ch; }
p:last-child { margin-bottom: 0; }
a { color: var(--color-link); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:not([class]) { color: var(--color-link); }
ul, ol { padding-left: 1.25em; }
button { font-family: inherit; }

/* Focus visibility — never remove */
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -60px;
  background: var(--blue);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus { top: var(--space-4); }

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
@media (min-width: 768px) { .container { padding-inline: var(--space-7); } }

.section { padding-block: var(--space-8); }
.section--tight { padding-block: var(--space-7); }
@media (min-width: 1024px) { .section { padding-block: var(--space-9); } }

.section-head { max-width: 60ch; margin-bottom: var(--space-6); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  display: inline-block;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1;
  padding: 0.95em 1.6em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 48px;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
  touch-action: manipulation;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .btn { transition: background-color var(--dur-fast) var(--ease-out); }
  .btn:hover { transform: none; }
}

.btn--primary { background: var(--color-primary); color: var(--color-primary-contrast); box-shadow: var(--shadow-pop); }
.btn--primary:hover { background: #a41f1e; }

.btn--secondary { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--secondary:hover { background: var(--blue); color: #fff; }

.btn--on-dark { background: var(--white); color: var(--red); }
.btn--on-dark:hover { background: var(--gold); color: var(--ink); }

.btn--ghost { background: transparent; color: inherit; border-color: currentColor; }

.btn--block { width: 100%; }

/* =========================================================
   Site header / nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(255, 248, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--red), var(--orange), var(--gold), var(--green)) 1;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
}
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 42px; width: auto; }
.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-2) 0;
  border-bottom: 3px solid transparent;
  border-radius: 2px;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { border-color: var(--red); color: var(--red); }
@media (prefers-reduced-motion: reduce) { .nav__links a { transition: none; } }
.nav__cta { display: none; }
.nav__actions { display: flex; align-items: center; gap: var(--space-3); }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--red);
  background: var(--white);
  color: var(--red);
  cursor: pointer;
}
.nav__toggle svg { width: 24px; height: 24px; }
.nav__toggle:hover { background: var(--red); color: #fff; }

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: var(--z-mobile-menu);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease-in-out);
}
.mobile-menu[data-open="true"] { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .mobile-menu { transition: none; }
}
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-5); }
.mobile-menu__links a { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--blue); text-decoration: none; }
.mobile-menu__close { width: 48px; height: 48px; border-radius: var(--radius-sm); border: 2px solid var(--line); background: var(--white); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  color: #fff;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.bg-rotator__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.bg-rotator__slide.is-active { opacity: 1; }
.bg-rotator__slide img,
.bg-rotator__slide video { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.15) contrast(1.04); }

/* Small decorative background videos elsewhere on the site */
.bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease; }
.bg-video--contain { object-fit: contain; }

/* Site-wide cursor accent: the little spinning lime stands in for the
   pointer itself (native cursor hidden via .lime-cursor-active on html)
   rather than trailing behind it, so the follow transition is short —
   just enough to feel alive without visibly lagging. Fixed positioning
   keeps it anchored to the viewport through scroll and across pages. */
.site-lime-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.85);
  box-shadow: var(--shadow-pop);
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 0.2s ease, transform 0.09s linear;
  display: none;
}
@media (min-width: 900px) {
  .site-lime-cursor { display: block; }
}
.site-lime-cursor.is-active { opacity: 1; }
html.lime-cursor-active,
html.lime-cursor-active a,
html.lime-cursor-active button,
html.lime-cursor-active [role="button"] {
  cursor: none;
}
.hero__bg-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(192,39,38,0.82) 0%, rgba(24,63,88,0.82) 100%);
}
.hero__content { position: relative; z-index: 2; text-align: center; padding-block: var(--space-9); max-width: 900px; margin-inline: auto; }
.hero__grid { display: block; }
.hero__eyebrow {
  display: block;
  color: var(--gold);
  text-align: center;
  width: 100%;
  max-width: none;
  margin-inline: auto;
}
.hero__eyebrow::before { display: none; }
.hero__title { font-size: var(--fs-hero); margin-bottom: var(--space-5); color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,0.25); }
@media (max-width: 560px) {
  .hero__title span[style*="nowrap"] { white-space: normal !important; }
}
.hero__title .accent { color: var(--lime); }
.hero__lede { font-size: 1.2rem; color: rgba(255,255,255,0.92); max-width: 60ch; margin-inline: auto; }
/* Empirical nudge: on real desktop rendering these three read as
   slightly left of true center relative to the wide heading above them */
.hero__content .hero__eyebrow,
.hero__content .hero__lede,
.hero__content .hero__ctas {
  transform: translateX(14px);
}
@media (max-width: 700px) {
  .hero__content .hero__eyebrow,
  .hero__content .hero__lede,
  .hero__content .hero__ctas {
    transform: none;
  }
}
.hero__facts {
  list-style: none;
  margin: var(--space-7) auto;
  padding: 0;
  display: grid;
  gap: var(--space-4);
  max-width: 58ch;
  text-align: left;
  justify-items: center;
}
.hero__facts li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  max-width: 46ch;
}
.hero__facts svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--gold); margin-top: 2px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-6); }

.hero__art { position: relative; }
.hero__art img { width: 100%; height: auto; }
.hero__art-inset {
  position: absolute;
  width: 42%;
  aspect-ratio: 1/1;
  right: -8%;
  bottom: -10%;
  z-index: 2;
  box-shadow: var(--shadow-pop);
}
@media (min-width: 1024px) {
  .hero__art--bleed {
    margin-right: calc(-1 * var(--space-7));
  }
  .hero__art--bleed .media-frame {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }
}
.hero__art .float-lime {
  position: absolute;
  width: 90px;
  animation: spin-slow 18s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__art .float-lime { animation: none; }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* =========================================================
   Cards / grids
   ========================================================= */
.grid { display: grid; gap: var(--space-6); }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

/* Trust / capability strip */
.trust-strip { background: var(--blue); color: #fff; padding-block: var(--space-6); }
.trust-strip .grid { text-align: center; }
.trust-strip h3 { color: #fff; font-size: 1.1rem; margin-bottom: var(--space-1); }
.trust-strip p { color: rgba(255,255,255,0.85); font-size: var(--fs-small); }
.trust-strip svg { width: 32px; height: 32px; color: var(--gold); margin: 0 auto var(--space-3); }

/* =========================================================
   Package cards
   ========================================================= */
.package-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--line);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
}
.package-card--featured { border-color: var(--gold); box-shadow: var(--shadow-pop); }
.package-card__badge {
  position: absolute;
  top: -14px; left: var(--space-6);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-pill);
}
.package-card__name { font-size: 1.75rem; margin-bottom: 0; }
.package-card__tagline { color: var(--color-text-muted); font-size: var(--fs-small); }
.package-card__price { font-family: var(--font-display); font-size: 2rem; color: var(--red); }
.package-card__price span { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; color: var(--color-text-muted); }
.package-card__meta { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2); font-size: var(--fs-small); }
.package-card__meta li { display: flex; gap: var(--space-2); align-items: center; }
.package-card__meta svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }
.package-card__includes { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2); }
.package-card__includes li { display: flex; gap: var(--space-2); align-items: flex-start; font-size: var(--fs-small); }
.package-card__includes svg { width: 18px; height: 18px; color: var(--orange-text); flex-shrink: 0; margin-top: 2px; }

.package-card__details {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-in-out);
}
.package-card__details[data-open="true"] { max-height: 1200px; }
@media (prefers-reduced-motion: reduce) {
  .package-card__details { transition: none; }
}
.package-card__toggle {
  background: none;
  border: none;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  min-height: 44px;
}
.package-card__toggle svg { transition: transform var(--dur-base) var(--ease-out); }
.package-card__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

/* =========================================================
   How it works / steps
   ========================================================= */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-8); position: relative; }
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
  .steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 20px);
    z-index: 0;
  }
}
.steps li { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: relative;
  z-index: 1;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  border: 4px solid var(--cream);
  box-shadow: var(--shadow-card);
}
.steps h3 { font-size: 1.15rem; }
.steps p { color: var(--color-text-muted); font-size: var(--fs-small); max-width: 24ch; }

/* =========================================================
   FAQ (accordion)
   ========================================================= */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
  min-height: 44px;
}
.faq-item__q svg { flex-shrink: 0; transition: transform var(--dur-base) var(--ease-out); color: var(--red); }
.faq-item__q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease-in-out);
}
.faq-item__a[data-open="true"] { max-height: 600px; }
.faq-item__a p { padding-bottom: var(--space-5); color: var(--color-text-muted); }
@media (prefers-reduced-motion: reduce) {
  .faq-item__a, .faq-item__q svg { transition: none; }
}

/* =========================================================
   Forms
   ========================================================= */
.form-grid { display: grid; gap: var(--space-5); }
@media (min-width: 640px) { .form-grid--2col { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label { font-weight: 700; font-size: var(--fs-small); color: var(--ink); }
.field .hint { font-size: 0.825rem; color: var(--color-text-muted); }
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  min-height: 48px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(35, 89, 123, 0.25);
  outline-offset: 0;
}
.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: var(--red); }
.field__error {
  display: none;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
}
.field[data-invalid="true"] .field__error { display: block; }
.field--required label::after { content: " *"; color: var(--red); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  border-radius: var(--radius-md);
  padding: var(--space-5);
  font-weight: 700;
  display: none;
}
.form-status[data-state="success"] { display: block; background: #E6F2E4; color: #1E5B20; border: 2px solid var(--green); }
.form-status[data-state="error"] { display: block; background: #FBE6E5; color: #7A1817; border: 2px solid var(--red); }
.form-error-summary {
  display: none;
  border: 2px solid var(--red);
  background: #FBE6E5;
  color: #7A1817;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}
.form-error-summary[data-open="true"] { display: block; }
.form-error-summary a { color: #7A1817; font-weight: 700; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--blue); color: rgba(255,255,255,0.9); padding-block: var(--space-8) var(--space-6); }
.site-footer a { color: #fff; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: var(--space-3); }
.footer__grid { display: grid; gap: var(--space-6); }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__brand img { height: 56px; width: auto; margin-bottom: var(--space-4); }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2); }
.footer__links a { text-decoration: none; }
.footer__links a:hover { text-decoration: underline; }
.footer__social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.footer__social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.7);
}

/* =========================================================
   Misc: disclaimers, breadcrumbs, alcohol notice
   ========================================================= */
.disclaimer {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  text-align: center;
  max-width: 78ch;
  margin-inline: auto;
}
.policy-callout {
  background: #FDF1E4;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--space-7);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.policy-callout h3 { margin-bottom: var(--space-2); }
.policy-callout p { max-width: 62ch; }
.policy-callout__icon {
  width: 48px; height: 48px;
  color: var(--orange);
  margin-bottom: var(--space-3);
}
.policy-callout--compact { padding: var(--space-5); text-align: left; align-items: flex-start; }
.policy-callout--compact p { max-width: none; }

.breadcrumbs { font-size: var(--fs-small); color: var(--color-text-muted); padding-block: var(--space-4); }
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-2); padding: 0; margin: 0; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: var(--space-2); color: var(--line); }

/* Event type pills — flex-wrap so an incomplete last row still centers */
.event-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  list-style: none;
  padding: 0;
  margin: 0;
}
.event-pills li { flex: 1 1 200px; max-width: 240px; }
.event-pills a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  text-align: center;
  padding: var(--space-4);
}

/* Scroll reveal (progressive enhancement — content visible without JS) */
.reveal { opacity: 1; transform: none; }
.js-anim .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.js-anim .reveal.is-visible { opacity: 1; transform: none; }
.js-anim .reveal.reveal--zoom { transform: translateY(24px) scale(0.96); }
@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal { opacity: 1; transform: none; transition: none; }
}

/* Section dividers using citrus pattern strip */
.citrus-divider {
  height: 56px;
  background-image: url("../images/brand/pattern-limes.webp");
  background-size: 160px auto;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.9;
}

/* Prevent single dangling words on their own line, wherever supported */
p, .hero__lede, .card p, .faq-item__a p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }

/* =========================================================
   CAROUSEL — scroll-snap based, no JS required to function;
   main.js adds prev/next buttons + autoplay (paused on
   reduced motion / hover / focus).
   ========================================================= */
.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-2);
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}
.carousel__slide .photo-tile { width: 100%; height: 100%; }
.carousel__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.carousel__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  padding: 0;
  cursor: pointer;
}
.carousel__dot[aria-current="true"] { background: var(--orange); width: 26px; border-radius: var(--radius-pill); }
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  box-shadow: var(--shadow-card);
}
.carousel__arrow--prev { left: -8px; }
.carousel__arrow--next { right: -8px; }
@media (min-width: 768px) {
  .carousel__slide { flex-basis: 60%; }
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.bg-surface { background: var(--color-surface); }
.bg-cream-deep { background: var(--cream-deep); }

/* =========================================================
   MARQUEE — scrolling ticker strip, built from brand art
   (lime pattern texture + brand gradient, not a flat dark bar)
   ========================================================= */
.marquee {
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(100deg, rgba(192,39,38,0.94), rgba(232,105,0,0.94)),
    url("../images/brand/pattern-limes.webp") center/220px repeat;
  color: #fff;
  padding-block: var(--space-4);
  white-space: nowrap;
  border-block: 3px solid var(--gold);
}
.marquee__track {
  display: inline-flex;
  gap: var(--space-7);
  animation: marquee-scroll 34s linear infinite;
  width: max-content;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.marquee__item img { width: 20px; height: 20px; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2)); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; overflow-x: auto; }
}

/* =========================================================
   PHOTO TILES — duotone-treated real/vibe photography
   Unifies photographic imagery with the illustrated brand
   and softens fine detail (crop framing via object-position).
   ========================================================= */
.photo-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  isolation: isolate;
  background: var(--cream-deep);
}
.photo-tile picture {
  display: block;
  width: 100%;
  height: 100%;
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  filter: saturate(1.15) contrast(1.04);
}
/* Normal-blend scrim (not multiply — multiply washes out on already-warm
   photos, which is exactly the AI shots this is meant to disguise) */
.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(150deg, rgba(192,39,38,0.55) 0%, rgba(35,89,123,0.5) 100%);
  pointer-events: none;
}
.photo-tile--soft::after {
  background: linear-gradient(150deg, rgba(192,39,38,0.3) 0%, rgba(35,89,123,0.28) 100%);
}
/* Real photos of Brianna/Amory: no AI-disguise tint, no filter push */
.photo-tile--no-tint::after { display: none; }
.photo-tile--no-tint img { filter: none; }
.photo-tile--frame { border: 6px solid var(--white); box-shadow: var(--shadow-card); }
.photo-tile--tilt { transform: rotate(-2deg); }
.photo-tile--tilt-r { transform: rotate(2deg); }

/* =========================================================
   ARTWORK CROPS — show original illustrations "in pieces"
   via fixed-ratio windows + object-position, not full sheets.
   ========================================================= */
.art-crop { overflow: hidden; border-radius: var(--radius-md); }
.art-crop img { width: 100%; height: 100%; object-fit: cover; }
.art-crop--dancers-left { aspect-ratio: 1/1; }
.art-crop--dancers-left img { object-position: 15% 20%; }
.art-crop--dancers-right { aspect-ratio: 1/1; }
.art-crop--dancers-right img { object-position: 85% 75%; }
.art-crop--glass { aspect-ratio: 3/4; }
.art-crop--glass img { object-position: 80% 15%; }
.art-crop--bottle { aspect-ratio: 3/4; }
.art-crop--bottle img { object-position: 90% 15%; }
.art-crop--splash { aspect-ratio: 1/1; }
.art-crop--splash img { object-position: top; }

/* =========================================================
   HOVER TILT — package cards, photo tiles
   ========================================================= */
.tilt-hover { transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.tilt-hover:hover { transform: translateY(-6px) rotate(-0.6deg); box-shadow: var(--shadow-pop); }
@media (prefers-reduced-motion: reduce) {
  .tilt-hover:hover { transform: none; }
}

/* =========================================================
   VIDEO-READY HERO FRAME
   Structure accepts a <video> now or later; poster/img shows
   until a real <source> is added inside .media-frame video.
   ========================================================= */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-deep);
}
.media-frame video,
.media-frame > img,
.media-frame picture,
.media-frame picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame__caption {
  position: absolute;
  left: var(--space-5);
  bottom: var(--space-5);
  background: rgba(43,33,24,0.72);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
}

/* =========================================================
   DIAGONAL SECTION EDGE
   ========================================================= */
.edge-diagonal-down {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.edge-diagonal-up {
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}

/* =========================================================
   FLOAT / DRIFT MOTION
   ========================================================= */
@keyframes drift-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.drift { animation: drift-y 5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .drift { animation: none; }
}

/* =========================================================
   BADGE STAMP — secondary logo used as a decorative mark
   ========================================================= */
.stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 16px rgba(43,33,24,0.18));
}
.stamp img { width: 100%; height: auto; }
.stamp--rotate { animation: spin-slow 40s linear infinite; }
@media (prefers-reduced-motion: reduce) {
  .stamp--rotate { animation: none; }
}

/* =========================================================
   SQUARE PHOTO GRID — uniform, no mismatched offsets
   ========================================================= */
.square-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.square-grid--3 { grid-template-columns: repeat(2, 1fr); }

/* Playful scattered photo mosaic (About section) */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6) var(--space-5);
  max-width: 480px;
  margin-inline: auto;
}
.photo-mosaic > div { aspect-ratio: 1/1; }
.photo-mosaic > div:nth-child(1) { transform: rotate(-4deg); }
.photo-mosaic > div:nth-child(2) { transform: rotate(3deg); margin-top: var(--space-6); }
.photo-mosaic > div:nth-child(3) { transform: rotate(2deg); }
.photo-mosaic > div:nth-child(4) { transform: rotate(-3deg); margin-top: var(--space-5); }
.photo-mosaic > div:nth-child(5) { transform: rotate(-2deg); margin-top: var(--space-4); }
.photo-mosaic > div:nth-child(6) { transform: rotate(3deg); }
.js-anim .photo-mosaic > div.reveal:nth-child(1) { transition-delay: 0ms; }
.js-anim .photo-mosaic > div.reveal:nth-child(2) { transition-delay: 80ms; }
.js-anim .photo-mosaic > div.reveal:nth-child(3) { transition-delay: 160ms; }
.js-anim .photo-mosaic > div.reveal:nth-child(4) { transition-delay: 240ms; }
.js-anim .photo-mosaic > div.reveal:nth-child(5) { transition-delay: 320ms; }
.js-anim .photo-mosaic > div.reveal:nth-child(6) { transition-delay: 400ms; }
.photo-mosaic .tilt-hover:hover { transform: scale(1.05) rotate(0deg) !important; z-index: 3; }
.square-grid .photo-tile { aspect-ratio: 1 / 1; }
@media (min-width: 640px) {
  .square-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   SOCIAL CTA — direct Instagram / TikTok buttons
   ========================================================= */
.social-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65em 1.2em;
  border-radius: var(--radius-pill);
  border: 2px solid var(--orange);
  color: var(--orange-text);
  background: var(--white);
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.social-cta svg { width: 18px; height: 18px; }
.social-cta:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }
.social-cta--on-dark { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); color: #fff; }
.social-cta--on-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.social-cta-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }
@media (prefers-reduced-motion: reduce) {
  .social-cta:hover { transform: none; }
}

/* =========================================================
   HEADING BALANCE — avoid dangling widow words
   ========================================================= */
.text-balance { text-wrap: balance; }

/* Subtle continuous breathing zoom for feature photos */
@keyframes photo-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.photo-breathe img { animation: photo-breathe 9s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .photo-breathe img { animation: none; }
}
