/* ===========================================================
   SAFARI FEAST — global stylesheet
   Live Music Entertainment · Riviera Maya
   =========================================================== */

/* Custom handwritten font — Paula Matilda
   Served as OTF with proper format hint so iOS Safari (4.2+),
   modern Chrome, Firefox, Edge all parse it correctly without
   substitution. font-display: swap shows fallback (Yellowtail)
   while loading then swaps in — no FOIT, no system substitution. */
@font-face {
  font-family: 'Paula Matilda';
  src: url('../assets/fonts/PaulaMatilda-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette — animal print A (Default: Classic Gold) */
  --bg-deep: #0a0a0a;
  --bg-soft: #141210;
  --bg-cream: #f5f1ea;
  --bg-cream-soft: #efe9dd;
  --ink: #fafaf7;
  --ink-muted: #c9c2b3;
  --ink-dim: #8a8275;
  --gold: #d4a142;
  --gold-soft: #c8a059;
  --gold-deep: #8b6a3d;
  --leopard-tan: #8b6a3d;
  --line: rgba(212, 161, 66, 0.35);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow-card: 0 30px 60px -20px rgba(0, 0, 0, 0.55);

  /* Type */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-script: 'Paula Matilda', 'Yellowtail', cursive;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* Spacing rhythm */
  --container: 1280px;
  --container-wide: 1440px;
  --radius: 6px;
  --radius-lg: 18px;
}

/* =========================
   Reset
   ========================= */
*,
*::before,
*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* =========================
   Type helpers
   ========================= */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.eyebrow .accent { color: var(--gold); font-family: var(--font-script); font-weight: 400; letter-spacing: 0; text-transform: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.02em; line-height: 1.05; margin: 0; text-transform: uppercase; }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.6rem); }
/* Paula Matilda has a visual baseline that sits LOW within its em-box,
   making it appear to droop below the surrounding text. We use a visual
   transform (no layout impact) to lift it. line-height stays tight so
   the line doesn't grow vertically. */
.script {
  font-family: var(--font-script);
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 1.55em;
  line-height: 0.85;
  display: inline-block;
  transform: translateY(-0.12em);
  margin-right: 0.06em;
}
h1 .script, h2 .script { font-size: 1.5em; }
.eyebrow .accent {
  font-size: 1.9em;
  transform: translateY(-0.18em);
}

p { margin: 0 0 1rem; }
.lead { font-size: 1.1rem; color: var(--ink-muted); max-width: 60ch; }

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
  position: relative;
}
.btn-primary {
  color: #0a0a0a;
  background: var(--gold);
  /* hand-painted gold brush stroke clip */
  clip-path: polygon(2% 18%, 6% 8%, 14% 4%, 30% 0%, 60% 6%, 88% 0%, 95% 12%, 99% 28%, 100% 70%, 96% 88%, 88% 96%, 70% 100%, 40% 96%, 12% 100%, 4% 88%, 0% 64%, 2% 36%);
}
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* =========================
   Container
   ========================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }

/* =========================
   Navigation
   ========================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  transition: background 200ms ease, padding 200ms ease;
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 28px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark img, .brand-mark svg { height: 38px; width: auto; display: block; }
.site-footer .brand-mark img, .site-footer .brand-mark svg { height: 56px; max-width: 280px; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links button.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--ink);
  transition: color 180ms ease;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links button.nav-trigger:hover,
.nav-links li.is-active > a, .nav-links li.is-active > button.nav-trigger { color: var(--gold); }
.nav-trigger .chev {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 2px;
  transition: transform 180ms ease;
}
.nav-links li:hover .nav-trigger .chev { transform: rotate(180deg); }

.nav-submenu {
  position: absolute;
  top: 100%;
  /* padding-top creates an invisible hover bridge so the cursor doesn't
     leave the hover zone when traveling from the trigger to the menu */
  padding-top: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: transparent;
  border: none;
  min-width: 280px;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-submenu::before {
  /* the actual visible panel — sits inside the padding so the hover
     bridge above it stays transparent but still catches the cursor */
  content: "";
  position: absolute;
  top: 14px;
  left: 0; right: 0; bottom: 0;
  background: #141210;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.nav-submenu > * { padding-left: 12px; padding-right: 12px; }
.nav-submenu > li:first-child { padding-top: 12px; }
.nav-submenu > li:last-child { padding-bottom: 12px; }
.nav-links li:hover .nav-submenu,
.nav-links li:focus-within .nav-submenu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-submenu a {
  display: block;
  padding: 10px 14px;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  border-left: 2px solid transparent;
  transition: border-color 180ms ease, background 180ms ease;
}
.nav-submenu a:hover { background: rgba(212, 161, 66, 0.08); border-left-color: var(--gold); color: var(--gold); }

.nav-cta {
  margin-left: 8px;
  padding: 0.7rem 1.2rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}
.nav-mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--ink);
}
.nav-mobile-panel { display: none; }
.nav-mobile-toggle span { display: block; width: 22px; height: 1.5px; background: currentColor; position: relative; }
.nav-mobile-toggle span::before,
.nav-mobile-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 1.5px; background: currentColor; transition: transform 200ms ease; }
.nav-mobile-toggle span::before { top: -7px; }
.nav-mobile-toggle span::after { top: 7px; }
.nav-mobile-toggle.is-open span { background: transparent; }
.nav-mobile-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-mobile-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
  .nav-mobile-panel {
    display: block;
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(8, 7, 6, 0.97);
    backdrop-filter: blur(20px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
    overflow-y: auto;
    padding: 24px;
    z-index: 99;
  }
  .nav-mobile-panel.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-mobile-panel ul { list-style: none; padding: 0; margin: 0; }
  .nav-mobile-panel > ul > li { border-bottom: 1px solid var(--line-soft); }
  .nav-mobile-panel a, .nav-mobile-panel .m-group-title {
    display: block;
    padding: 18px 4px;
    font-family: var(--font-display);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: var(--ink);
  }
  .nav-mobile-panel .m-group-title { color: var(--gold); font-size: 0.78rem; padding: 18px 4px 6px; }
  .nav-mobile-panel .m-sub a { padding: 8px 16px; font-size: 0.82rem; letter-spacing: 0.1em; color: var(--ink-muted); }
}

/* =========================
   Hero — real photo + animal print frame overlay
   ========================= */
.hero {
  position: relative;
  padding-top: 72px; /* offset for fixed nav */
  background: var(--bg-deep);
  overflow: hidden;
}
.hero__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1080;
  max-height: calc(100vh - 72px);
  min-height: 560px;
  background: #0a0a0a;
  isolation: isolate;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.hero__photo-shade {
  /* subtle vignette so the text card always has contrast against the photo */
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.15) 80%, rgba(0,0,0,0.4) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.hero__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 3;
  pointer-events: none;
  /* PNG already has zebra brush left + leopard splatter right baked in */
}

.hero__title-card {
  position: absolute;
  z-index: 4;
  top: 5%;
  left: 8%;
  transform: none;
  width: min(440px, 32vw);
  background: rgba(10, 10, 10, 0.88);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 36px 34px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  /* torn brush edges */
  clip-path: polygon(
    3% 2%, 12% 0%, 24% 3%, 38% 0%, 56% 2%, 72% 0%, 88% 3%, 98% 1%,
    100% 12%, 97% 28%, 100% 44%, 98% 62%, 100% 78%, 97% 92%, 99% 100%,
    86% 98%, 70% 100%, 54% 97%, 38% 100%, 22% 97%, 8% 100%, 1% 98%,
    3% 82%, 0% 64%, 2% 46%, 0% 30%, 2% 14%
  );
}
.hero__title-card .display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  color: var(--ink);
}
.hero__title-card .feast {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: clamp(5rem, 8.5vw, 8rem);
  line-height: 0.78;
  margin-top: -0.22em;
  margin-bottom: 0;
  display: block;
}
.hero__title-card .tagline {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--ink);
  margin-top: 14px;
}
.hero__title-card .divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0;
  border-radius: 2px;
}
.hero__title-card .copy {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
.hero__title-card .copy em {
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-script);
  font-size: 1.08em;
  line-height: 0.9;
  display: inline-block;
  transform: translateY(-0.12em);
  margin: 0 0.04em;
}
.hero__title-card .cta { margin-top: 22px; }

.hero__logo {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-bottom: 8px;
}

/* Mobile: stack — frame stays as deco on top, photo below, card under photo */
@media (max-width: 900px) {
  .hero__stage {
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
  }
  .hero__photo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 1080;
  }
  .hero__photo, .hero__frame, .hero__photo-shade {
    position: absolute;
  }
  .hero__title-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    clip-path: none;
    padding: 36px 24px;
    background: var(--bg-deep);
    box-shadow: none;
  }
  .hero__title-card .display { font-size: clamp(2.6rem, 12vw, 4rem); }
  .hero__title-card .feast { font-size: clamp(3.6rem, 16vw, 5.6rem); }
}

/* =========================
   Section frame
   ========================= */
section { position: relative; }
.section { padding: 96px 0; }
.section--dark { background: var(--bg-deep); color: var(--ink); }
.section--soft { background: var(--bg-soft); color: var(--ink); }
.section--cream { background: var(--bg-cream); color: #1a1610; }
.section--cream .lead { color: #5a5040; }
.section--cream .eyebrow { color: #5a5040; }

.section-title { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; margin-bottom: 48px; }
.section-title .eyebrow { letter-spacing: 0.4em; }
.section-title h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
.section-title h2 .script { font-size: 1.1em; margin-left: 0.2em; }

.section-title--left { align-items: flex-start; text-align: left; }

/* =========================
   About row (Sobre Safari Feast)
   ========================= */
.about {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1fr;
  gap: 48px;
  align-items: center;
}
.about__photo {
  position: relative;
  aspect-ratio: 4/3;
  background: #1a1610;
  border: 2px solid var(--gold);
  overflow: hidden;
  /* torn paint edges */
  clip-path: polygon(
    3% 4%, 12% 0%, 28% 4%, 46% 1%, 62% 4%, 78% 0%, 92% 3%, 100% 8%,
    97% 22%, 100% 38%, 96% 56%, 100% 72%, 96% 88%, 100% 96%,
    88% 100%, 72% 96%, 56% 100%, 38% 97%, 22% 100%, 6% 96%,
    0% 88%, 3% 72%, 0% 54%, 4% 38%, 0% 22%, 2% 8%
  );
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__content .eyebrow { display: block; margin-bottom: 6px; }
.about__content h2 { margin-bottom: 24px; }
.about__logo {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: 4px 0 24px;
}
.about__content p { color: var(--ink-muted); max-width: 52ch; }

.about__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.about__stat { text-align: center; }
.about__stat .icon {
  width: 56px; height: 56px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
}
.about__stat .icon svg { width: 36px; height: 36px; }
.about__stat .label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.3;
}

/* =========================
   Awards plaque — Wedding Awards · Bodas.com.mx
   ========================= */
.awards {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto 1.7fr;
  align-items: center;
  gap: 28px;
  margin: 32px 0 8px;
  padding: 22px 26px;
  background:
    linear-gradient(180deg, rgba(212,161,66,0.04), rgba(212,161,66,0.0) 60%),
    rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
/* small corner ticks — like a museum plaque */
.awards::before,
.awards::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border: 1px solid var(--gold);
  opacity: 0.7;
}
.awards::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.awards::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.awards__head { display: flex; flex-direction: column; gap: 2px; }
.awards__eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--ink-dim);
}
.awards__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-top: 4px;
  line-height: 1;
}
.awards__brand i {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
  transform: translateY(-2px);
  font-size: 0.9rem;
}
.awards__script {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 6px;
  letter-spacing: 0;
  text-transform: none;
}
.awards__sub {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 8px;
}

.awards__rule {
  align-self: stretch;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--gold) 18%,
    var(--gold) 82%,
    transparent 100%);
  opacity: 0.55;
}

.awards__badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  justify-items: center;
}
.awards__badges li { margin: 0; padding: 0; }
.awards__badges figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.awards__badges img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
  transition: transform 280ms ease, filter 280ms ease;
}
.awards__badges figure:hover img {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 10px 22px rgba(212,161,66,0.35));
}
.awards__year {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .awards {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
    padding: 22px 18px;
  }
  .awards__head { align-items: center; }
  .awards__rule {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg,
      transparent, var(--gold), transparent);
    justify-self: center;
  }
  .awards__badges { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .awards__badges img { width: 80px; height: 80px; }
  .awards__year { font-size: 0.62rem; }
}
@media (max-width: 480px) {
  .awards__badges { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .awards__badges img { width: 96px; height: 96px; }
}

/* =========================
   Service cards
   ========================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a1612;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: transform 280ms ease, border-color 280ms ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.service-card__bg { position: absolute; inset: 0; }
.service-card__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 600ms ease, opacity 280ms; }
.service-card:hover .service-card__bg img { transform: scale(1.05); opacity: 1; }
.service-card__overlay {
  position: absolute;
  inset: 50% 0 0 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.92) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 18px 28px;
  text-align: center;
}
.service-card__icon { color: var(--gold); margin-bottom: 8px; }
.service-card__icon svg { width: 28px; height: 28px; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--ink);
}
.service-card__desc { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.55; }

/* =========================
   Riviera band (map + photos)
   ========================= */
.riviera { display: grid; grid-template-columns: 1.1fr 1.6fr; gap: 48px; align-items: center; }
.riviera__map { display: flex; align-items: center; gap: 28px; }
.riviera__map svg { width: 160px; height: auto; flex-shrink: 0; color: var(--gold); }
.riviera__text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.riviera__text .script { display: block; font-size: 1.6rem; margin-top: 4px; }
.riviera__text p { color: var(--ink-muted); margin-top: 18px; max-width: 40ch; }

.riviera__photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.riviera__photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a1612;
  border: 2px solid var(--gold);
  clip-path: polygon(
    4% 6%, 22% 0%, 50% 4%, 78% 0%, 96% 6%,
    100% 30%, 96% 56%, 100% 82%, 96% 100%,
    74% 96%, 50% 100%, 26% 96%, 4% 100%, 0% 78%, 4% 50%, 0% 22%
  );
}
.riviera__photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 880px) {
  .riviera { grid-template-columns: 1fr; }
  .riviera__photos { grid-template-columns: repeat(3, 1fr); }
}

/* =========================
   Gallery — infinite marquee
   ========================= */
.marquee {
  --gap: 14px;
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: marquee 50s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee--fast .marquee__track { animation-duration: 35s; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee__item {
  flex: 0 0 auto;
  width: 360px;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: #1a1612;
  border: 1px solid var(--line);
}
.marquee__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.marquee__item:hover img { transform: scale(1.06); }
.marquee__item .cap {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 1px 0 rgba(0,0,0,0.55),
    0 2px 18px rgba(0,0,0,0.85);
  z-index: 2;
}
.marquee__item::after {
  /* legibility gradient behind caption */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 45%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* =========================
   Testimonials — marquee carousel
   ========================= */
.testimonial-band {
  position: relative;
  background:
    radial-gradient(circle at 10% 20%, rgba(212,161,66,0.06), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(212,161,66,0.06), transparent 40%),
    var(--bg-deep);
  overflow: hidden;
}
.testimonial-band::before, .testimonial-band::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 240px;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 30% 30%, rgba(139,106,61,0.5) 0 18px, transparent 22px),
    radial-gradient(ellipse at 70% 60%, rgba(139,106,61,0.5) 0 14px, transparent 18px),
    radial-gradient(ellipse at 20% 80%, rgba(139,106,61,0.5) 0 14px, transparent 18px),
    radial-gradient(ellipse at 80% 20%, rgba(139,106,61,0.5) 0 12px, transparent 16px),
    radial-gradient(ellipse at 50% 50%, rgba(212,161,66,0.35) 0 10px, transparent 14px);
  background-size: 240px 240px;
  opacity: 0.7;
}
.testimonial-band::before { left: 0; mask-image: linear-gradient(to right, #000, transparent); -webkit-mask-image: linear-gradient(to right, #000, transparent); }
.testimonial-band::after { right: 0; mask-image: linear-gradient(to left, #000, transparent); -webkit-mask-image: linear-gradient(to left, #000, transparent); }

.testimonial-card {
  flex: 0 0 auto;
  width: 360px;
  padding: 22px 0;
  color: var(--ink);
}
.testimonial-card .quote-mark { font-family: var(--font-script); color: var(--gold); font-size: 3rem; line-height: 0.5; display: inline-block; margin-right: 8px; }
.testimonial-card p { font-size: 0.95rem; line-height: 1.65; color: var(--ink-muted); margin-top: 4px; }
.testimonial-card .who { margin-top: 14px; font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.testimonial-card .who .when { color: var(--ink-dim); letter-spacing: 0.14em; font-weight: 400; margin-left: 4px; }

/* Reviews summary header — 4.9 / 38 verified */
.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
  padding: 12px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-body);
  color: var(--ink-muted);
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-summary__stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold);
}
.reviews-summary__stars span {
  width: 14px;
  height: 14px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>") center / contain no-repeat;
}
.reviews-summary__score {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.reviews-summary__score strong { color: var(--gold); font-size: 1.6rem; font-weight: 700; }
.reviews-summary__score span { font-size: 0.78rem; color: var(--ink-dim); letter-spacing: 0.12em; }
.reviews-summary__rule {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.reviews-summary__count {
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.reviews-summary__count strong { color: var(--gold); font-weight: 700; }
.reviews-summary__count em {
  font-style: normal;
  color: var(--ink-dim);
  font-weight: 400;
  letter-spacing: 0.18em;
}
.reviews-summary__rec {
  flex-basis: 100%;
  text-align: center;
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0;
  margin-top: -4px;
}

/* Dual marquee rows for testimonials */
.marquee--testimonials { --gap: 22px; }
.marquee--testimonials + .marquee--testimonials { margin-top: 20px; }
.marquee--testimonials .marquee__track { animation-duration: 110s; }
.marquee--testimonials .testimonial-card {
  flex-shrink: 0;
  width: 360px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.015);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

@media (max-width: 640px) {
  .reviews-summary { gap: 12px; padding: 10px 14px; }
  .reviews-summary__rule { display: none; }
  .marquee--testimonials .testimonial-card { width: 300px; padding: 20px 22px; }
  .marquee--testimonials .marquee__track { animation-duration: 90s; }
}

/* =========================
   CTA band
   ========================= */
.cta-band {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-deep);
}
.cta-band h2 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); }
.cta-band .script { display: block; font-size: 1.6rem; margin-top: 4px; }

/* =========================
   Footer
   ========================= */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line-soft);
  padding: 60px 0 30px;
}
.site-footer__inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; align-items: start; }
.site-footer h4 { font-size: 0.78rem; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: var(--ink-muted); font-size: 0.86rem; transition: color 180ms; }
.site-footer a:hover { color: var(--gold); }
.site-footer .brand-mark { margin-bottom: 12px; }
.site-footer .tagline { font-family: var(--font-display); letter-spacing: 0.22em; font-size: 0.72rem; color: var(--ink-muted); text-transform: uppercase; }
.site-footer__social { display: flex; gap: 10px; margin-top: 12px; }
.site-footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold);
  color: #0a0a0a;
  transition: transform 200ms, background 200ms;
}
.site-footer__social a:hover { transform: translateY(-3px); background: var(--gold-soft); }
.site-footer__social svg { width: 16px; height: 16px; }
.site-footer__bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: var(--ink-dim);
}
@media (max-width: 880px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

/* =========================
   Placeholder helpers
   ========================= */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 8px, rgba(255,255,255,0.0) 8px 16px),
    linear-gradient(135deg, #1a1612, #0f0d0a);
  color: var(--ink-dim);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 12px;
  letter-spacing: 0.06em;
}
.ph--cream { background: repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 8px, transparent 8px 16px), linear-gradient(135deg, #efe9dd, #e6dfcd); color: #6c6452; }
.ph--gold { color: var(--gold); border: 1px dashed var(--line); }

/* =========================
   Blur-in animation
   ========================= */
[data-reveal] {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(18px);
  transition: opacity 900ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 900ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, filter, transform;
}
[data-reveal].is-in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
[data-reveal][data-delay="1"].is-in { transition-delay: 80ms; }
[data-reveal][data-delay="2"].is-in { transition-delay: 160ms; }
[data-reveal][data-delay="3"].is-in { transition-delay: 240ms; }
[data-reveal][data-delay="4"].is-in { transition-delay: 320ms; }
[data-reveal][data-delay="5"].is-in { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; filter: none; transform: none; transition: none; }
  .marquee__track { animation: none; }
}

/* =========================
   Forms
   ========================= */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border-radius: 0;
  transition: border-color 200ms, background 200ms;
}
/* Native <select> dropdown options inherit the browser's chrome.
   On dark backgrounds, the default white-on-white is unreadable.
   Forcing dark bg + light text on <option> works in Chrome/Edge/Firefox. */
.field select option {
  background: #141210;
  color: var(--ink);
  font-family: var(--font-body);
  padding: 8px 12px;
}
.field select option:checked,
.field select option:hover {
  background: var(--gold);
  color: #0a0a0a;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212, 161, 66, 0.04);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23d4a142' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* =========================
   FAQ
   ========================= */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform 200ms;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 22px 22px; color: var(--ink-muted); line-height: 1.7; max-width: 70ch; }

/* =========================
   Page heading (non-home heroes)
   ========================= */
.page-hero {
  padding: calc(72px + 110px) 0 110px;
  min-height: 78vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg-deep);
  overflow: hidden;
}
.page-hero > .container { width: 100%; }
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero__bg > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.30) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.20) 0%, rgba(10,10,10,0.45) 70%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
.page-hero h1 .script { display: inline-block; font-size: 1.05em; margin-left: 0.2em; }
.page-hero .lead { margin-top: 18px; max-width: 56ch; font-size: 1.05rem; color: var(--ink-muted); }
.page-hero .ctas { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* breadcrumb */
.crumb { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; }
.crumb a { color: var(--ink-muted); }
.crumb a:hover { color: var(--gold); }
.crumb .sep { color: var(--gold); }

/* leopard frame for hero side imagery */
.leopard-frame {
  position: absolute;
  top: 0; bottom: 0;
  width: 35%;
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(0,0,0,0.85) 0 16px, transparent 18px),
    radial-gradient(ellipse at 70% 40%, rgba(0,0,0,0.85) 0 12px, transparent 14px),
    radial-gradient(ellipse at 20% 70%, rgba(0,0,0,0.85) 0 14px, transparent 16px),
    radial-gradient(ellipse at 80% 80%, rgba(0,0,0,0.85) 0 12px, transparent 14px),
    radial-gradient(ellipse at 50% 50%, rgba(212,161,66,0.35) 0 14px, transparent 18px),
    radial-gradient(ellipse at 90% 18%, rgba(212,161,66,0.35) 0 10px, transparent 14px);
  background-size: 220px 220px;
  pointer-events: none;
}
.leopard-frame--right { right: 0; mask-image: linear-gradient(to left, #000 30%, transparent 100%); -webkit-mask-image: linear-gradient(to left, #000 30%, transparent 100%); }
.leopard-frame--left { left: 0; mask-image: linear-gradient(to right, #000 30%, transparent 100%); -webkit-mask-image: linear-gradient(to right, #000 30%, transparent 100%); }

/* Two-column intro block */
.intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.intro-grid__img {
  aspect-ratio: 4/3;
  background: #1a1612;
  border: 2px solid var(--gold);
  overflow: hidden;
  clip-path: polygon(
    3% 4%, 12% 0%, 28% 4%, 46% 1%, 62% 4%, 78% 0%, 92% 3%, 100% 8%,
    97% 22%, 100% 38%, 96% 56%, 100% 72%, 96% 88%, 100% 96%,
    88% 100%, 72% 96%, 56% 100%, 38% 97%, 22% 100%, 6% 96%,
    0% 88%, 3% 72%, 0% 54%, 4% 38%, 0% 22%, 2% 8%
  );
}
.intro-grid__img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) { .intro-grid { grid-template-columns: 1fr; } }

/* Features list */
.feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; gap: 14px; align-items: start; padding-left: 0; }
.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
  margin-top: 2px;
}
.feature-list .ftxt { color: var(--ink-muted); line-height: 1.6; }
.feature-list .ftxt strong { color: var(--ink); font-weight: 600; }

/* Highlight stats strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 48px 0; border-block: 1px solid var(--line-soft); }
.stat-strip .stat { text-align: center; }
.stat-strip .stat .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); color: var(--gold); line-height: 1; }
.stat-strip .stat .lbl { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-muted); margin-top: 8px; }
@media (max-width: 720px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }

/* Map pin float */
.pin-float { animation: pinfloat 2.6s ease-in-out infinite; }
@keyframes pinfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Utility: keep main content from sliding under fixed nav */
.has-fixed-nav main { padding-top: 0; }


/* ===========================================================
   2026-05-24 · Content tweaks
   - .text-yellow keeps the paragraph typography, recolours yellow.
   - .awards__brand--white overrides the brand text + dots to white
     for the "bodas.com.mx" mention in the hero.
   =========================================================== */
.text-yellow {
  color: var(--gold);
  font-style: normal;
  font-family: inherit;
  font-weight: inherit;
}
.awards__brand--white,
.awards__brand--white i { color: #ffffff; }
