/* ============================================
   SAUCLASS — Editorial Cinema Vintage
   Paleta: ink + gold + cream
   ============================================ */

:root {
  --ink: #0c0b08;
  --ink-2: #181612;
  --ink-3: #2a2622;
  --gold: #c9a96a;
  --gold-2: #d9bd84;
  --gold-deep: #8a7345;
  --cream: #f3ece0;
  --cream-2: #e8dfcd;
  --cream-3: #d8cdb6;
  --line: rgba(243, 236, 224, 0.18);
  --line-strong: rgba(243, 236, 224, 0.32);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1480px;
  --pad: clamp(20px, 4vw, 60px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em {
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  color: var(--gold);
}

.dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cream);
  vertical-align: middle;
  margin: 0 8px;
}
.dot--gold { background: var(--gold); }

/* ============== PRELOADER ============== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.preloader__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.preloader__line {
  position: absolute;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 1.8s cubic-bezier(0.77, 0, 0.18, 1);
  opacity: 0.5;
}
.preloader__line--top { top: calc(50% - 220px); }
.preloader__line--bottom { top: calc(50% + 220px); }
.preloader.lines-out .preloader__line { width: 100%; }
.preloader.lines-fade .preloader__line { opacity: 0; transition: opacity 0.8s ease; }

.preloader__phrase {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0 24px;
  z-index: 2;
  will-change: filter, opacity;
}
.preloader__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0;
  font-size: clamp(38px, 7vw, 100px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-align: center;
  max-width: 1100px;
}
.preloader__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  margin: 0 0.18em;
}
.preloader__word--accent {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  color: var(--gold);
}

.preloader__logoWrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0 24px;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}
.preloader__logoBig {
  width: clamp(280px, 38vw, 540px);
  height: auto;
  display: block;
  will-change: transform, filter, opacity;
}
@media (max-width: 720px) {
  .preloader__logoBig { width: 70vw; }
}

.preloader.is-out {
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 1.2s cubic-bezier(0.86, 0, 0.07, 1);
}

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px var(--pad);
  background: linear-gradient(to bottom, rgba(12, 11, 8, 0.85), rgba(12, 11, 8, 0));
  transition: background 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(12, 11, 8, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px var(--pad);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav__brand-img {
  height: 56px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}
.nav.scrolled .nav__brand-img { height: 44px; }
.nav__links {
  display: flex;
  gap: 40px;
}
.nav__links a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-2);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s cubic-bezier(0.77, 0, 0.18, 1);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.nav__cta:hover { background: var(--gold); color: var(--ink); }

.nav__burger {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--gold);
  cursor: pointer;
  padding: 10px 9px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__burger span {
  display: block;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 95;
  padding: 100px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}
.mobile-menu.is-open {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu__links a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 36px;
  letter-spacing: -0.01em;
  color: var(--cream);
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  transition: color 0.25s;
}
.mobile-menu__links a:hover { color: var(--gold); }
.mobile-menu__foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.mobile-menu__foot a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--gold);
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.5) contrast(1.05) saturate(0.85);
  /* transform/scale is fully owned by GSAP — see lockHeroInitial + heroIn */
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12, 11, 8, 0.5) 0%, rgba(12, 11, 8, 0.1) 30%, rgba(12, 11, 8, 0.7) 80%, var(--ink) 100%);
}
.hero__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 0;
  font-size: clamp(48px, 9vw, 158px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0 0 56px;
  max-width: 1200px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title em {
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  color: var(--gold);
}

.hero__base {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero__lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(13px, 1.05vw, 16px);
  letter-spacing: 0.04em;
  color: var(--cream-3);
  max-width: 540px;
}
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.hero__scroll svg {
  animation: arrowDown 2.6s cubic-bezier(0.77, 0, 0.18, 1) infinite;
}
@keyframes arrowDown {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(6px); opacity: 1; }
}

@media (max-width: 720px) {
  .hero__base { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ============== MANIFIESTO ============== */
.manifiesto {
  padding: 140px var(--pad);
  background: var(--ink);
  position: relative;
}
.manifiesto__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.manifiesto__eyebrow,
.flota__eyebrow,
.bodas__eyebrow,
.servicios__eyebrow,
.testi__eyebrow,
.faq__eyebrow,
.contacto__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}
.manifiesto__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 5.2vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 1200px;
}
.manifiesto__title em { color: var(--gold); }

.manifiesto__divider {
  height: 1px;
  background: var(--line);
  margin: 100px 0 60px;
}
.manifiesto__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.kpi__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.kpi__num span {
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 4px;
  color: var(--gold-deep);
}
.kpi__label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--cream-3);
  max-width: 240px;
}
@media (max-width: 880px) {
  .manifiesto__cols { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

/* ============== FLOTA ============== */
/* ============== FLOTA — HORIZONTAL PINNED CINEMA ============== */
.flota {
  background: var(--ink-2);
  position: relative;
}
.flota__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px var(--pad) 80px;
}
.flota__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 40px;
}
.flota__lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--cream-2);
  max-width: 620px;
}

.flota__pin {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.flota__track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.car {
  flex: 0 0 auto;
  width: 88vw;
  max-width: 1480px;
  height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.95fr;
  gap: 0;
  padding: 90px clamp(40px, 5vw, 80px) 130px;
  border-right: 1px solid var(--line);
}
.car:last-child { border-right: none; }

.car__media {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--ink-3);
  aspect-ratio: auto;
}
.car__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 60%, rgba(12, 11, 8, 0.35) 100%);
  pointer-events: none;
}
.car__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.92) contrast(1.05);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.car__info {
  padding: 30px clamp(24px, 4vw, 70px) 30px clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.car__info::before {
  content: '';
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: var(--line);
}
.car__num {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}
.car__year {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(70px, 8vw, 132px);
  line-height: 0.92;
  color: var(--cream-3);
  opacity: 0.18;
  letter-spacing: -0.04em;
  position: absolute;
  top: 80px;
  right: clamp(24px, 4vw, 70px);
  pointer-events: none;
  font-variation-settings: 'opsz' 144;
}
.car__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--gold);
  margin-bottom: 16px;
}
.car__model {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.5vw, 24px);
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.car__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-2);
  margin-bottom: 36px;
  max-width: 460px;
}
.car__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.car__tags span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  color: var(--cream-3);
}

/* progress indicator at bottom of pinned section */
.flota__progress {
  position: absolute;
  left: clamp(24px, 4vw, 60px);
  right: clamp(24px, 4vw, 60px);
  bottom: 50px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: none;
}
.flota__progress-bar {
  display: block;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.flota__progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--progress, 0%);
  background: var(--gold);
  transition: width 0.1s linear;
}
.flota__progress-label {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.flota__hint {
  position: absolute;
  top: 40px;
  right: clamp(24px, 4vw, 60px);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 10;
  opacity: 0.7;
  animation: hintPulse 2.4s ease-in-out infinite;
}
@keyframes hintPulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 0.95; transform: translateX(8px); }
}

/* MOBILE: revert to vertical stack */
@media (max-width: 880px) {
  .flota__pin {
    height: auto;
    overflow: visible;
  }
  .flota__track {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .car {
    width: 100%;
    max-width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 60px var(--pad);
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .car__media {
    aspect-ratio: 4 / 3;
    height: auto;
  }
  .car__info {
    padding: 0;
  }
  .car__info::before { display: none; }
  .car__year {
    position: static;
    font-size: 60px;
    margin-bottom: 8px;
  }
  .flota__progress, .flota__hint { display: none; }
}

/* ============== BODAS — HERO + GALLERY EDITORIAL ============== */
.bodas {
  background: var(--ink);
  position: relative;
}

/* HERO */
.bodas__hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
}
.bodas__hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bodas__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.9) contrast(1.05);
  will-change: transform;
}
.bodas__hero-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12, 11, 8, 0.35) 0%, rgba(12, 11, 8, 0.0) 30%, rgba(12, 11, 8, 0.65) 90%, var(--ink) 100%),
    linear-gradient(to right, rgba(12, 11, 8, 0.55) 0%, transparent 50%);
}
.bodas__hero-text {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 100px;
  z-index: 2;
  max-width: 1200px;
}
.bodas__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 0;
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 28px 0 36px;
}
.bodas__title em {
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  color: var(--gold);
}
.bodas__hero-meta {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-3);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.bodas__hero-sep { color: var(--gold); opacity: 0.7; }

/* LEDE */
.bodas__lede-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px var(--pad) 120px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.bodas__lede-wrap::before {
  content: '';
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-top: 12px;
}
.bodas__lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.45;
  color: var(--cream);
  letter-spacing: -0.005em;
  max-width: 820px;
}

/* GALLERY (asymmetric editorial mosaic) */
.bodas__gallery {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 140px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 24px;
}
.bodas__shot {
  position: relative;
  overflow: hidden;
  background: var(--ink-3);
  margin: 0;
}
.bodas__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.95);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 1.4s ease;
  will-change: transform;
}
.bodas__shot:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}
.bodas__shot figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(12, 11, 8, 0.5);
  padding: 7px 11px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(243, 236, 224, 0.12);
}
.bodas__shot--a { grid-column: 1 / span 7; grid-row: span 5; }
.bodas__shot--b { grid-column: 8 / span 5; grid-row: span 4; }
.bodas__shot--c { grid-column: 8 / span 5; grid-row: 5 / span 4; }
.bodas__shot--d { grid-column: 1 / span 5; grid-row: span 5; }
.bodas__shot--e { grid-column: 6 / span 7; grid-row: 9 / span 4; }

/* PACK */
.bodas__pack-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad) 160px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.bodas__pack-head {
  position: sticky;
  top: 100px;
}
.bodas__pack-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.bodas__pack-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.bodas__pack {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.bodas__pack-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.bodas__pack-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-size: clamp(36px, 3vw, 52px);
  color: var(--gold);
  line-height: 1;
}
.bodas__pack-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bodas__pack-step {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.bodas__pack-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream-2);
  max-width: 520px;
}
.bodas__cta,
.contacto__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  width: fit-content;
  transition: background 0.3s, transform 0.3s;
  margin-top: 40px;
}
.bodas__cta:hover,
.contacto__cta:hover { background: var(--gold-2); transform: translateX(4px); }

@media (max-width: 880px) {
  .bodas__hero { height: 80vh; min-height: 560px; }
  .bodas__hero-text { bottom: 60px; }
  .bodas__lede-wrap { grid-template-columns: 1fr; gap: 24px; padding: 80px var(--pad) 60px; }
  .bodas__lede-wrap::before { display: none; }
  .bodas__gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding-bottom: 80px;
  }
  .bodas__shot--a, .bodas__shot--b, .bodas__shot--c, .bodas__shot--d, .bodas__shot--e {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
  .bodas__pack-wrap { grid-template-columns: 1fr; gap: 40px; padding: 60px var(--pad) 100px; }
  .bodas__pack-head { position: static; }
  .bodas__pack-row { grid-template-columns: 56px 1fr; gap: 20px; padding: 24px 0; }
  .bodas__pack-num { font-size: 30px; }
}

/* ============== SERVICIOS ============== */
.servicios {
  padding: 140px var(--pad);
  background: var(--ink-2);
}
.servicios__head {
  max-width: var(--max);
  margin: 0 auto 80px;
}
.servicios__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 86px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.servicios__title em { color: var(--gold); }
.servicios__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.servicio {
  padding: 60px 50px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.4s ease;
}
.servicio:hover { background: rgba(201, 169, 106, 0.04); }
.servicio__num {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 12px;
}
.servicio__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 6px;
}
.servicio__copy {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--cream-2);
  margin-bottom: 16px;
  max-width: 460px;
}
.servicio__meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
@media (max-width: 880px) {
  .servicios__grid { grid-template-columns: 1fr; }
  .servicio { padding: 40px 28px; }
}

/* ============== TESTIMONIOS — EDITORIAL HERO + GRID ============== */
.testi {
  padding: 160px 0;
  background: var(--ink);
}
.testi__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.testi__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 100px;
}
.testi__h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 1100px;
}
.testi__h2 em {
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  color: var(--gold);
}

.testi__hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: stretch;
  margin-bottom: 100px;
}
.testi__hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 20px 0;
}
.testi__stars {
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--gold);
  display: block;
}
.testi__stars--mini {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
}
.testi__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--cream);
  position: relative;
  padding-left: 0;
}
.testi__mark {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  color: var(--gold);
  font-size: 1.6em;
  line-height: 0.5;
  display: block;
  margin-bottom: 14px;
  opacity: 0.8;
}
.testi__author-block {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}
.testi__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-size: 18px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.testi__avatar--mini {
  width: 40px;
  height: 40px;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.testi__author-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testi__author-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0.005em;
}
.testi__author-loc {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.testi__hero-img {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-3);
  aspect-ratio: 4 / 5;
  max-height: 640px;
}
.testi__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.95);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.testi__hero-img:hover img { transform: scale(1.04); }
.testi__hero-img figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(12, 11, 8, 0.55);
  padding: 7px 11px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(243, 236, 224, 0.12);
}

/* SMALL TESTIMONIALS */
.testi__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  border-top: 1px solid var(--line);
  padding-top: 70px;
}
.testi__small {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px;
  background: rgba(243, 236, 224, 0.02);
  border: 1px solid var(--line);
  position: relative;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.testi__small:hover {
  background: rgba(243, 236, 224, 0.04);
  border-color: rgba(201, 169, 106, 0.35);
}
.testi__small p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--cream-2);
  letter-spacing: -0.005em;
  flex: 1;
}
.testi__small-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.testi__small-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  color: var(--cream);
}
.testi__small-loc {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 4px;
}

@media (max-width: 880px) {
  .testi { padding: 100px 0; }
  .testi__hero { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
  .testi__row { grid-template-columns: 1fr; gap: 24px; padding-top: 40px; }
  .testi__head { margin-bottom: 60px; }
}

/* ============== FAQ ============== */
.faq {
  padding: 140px var(--pad);
  background: var(--ink-2);
}
.faq__head {
  max-width: var(--max);
  margin: 0 auto 80px;
}
.faq__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.faq__title em { color: var(--gold); }
.faq__list {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
}
.faq__item {
  border-bottom: 1px solid var(--line-strong);
  padding: 28px 0;
}
.faq__item summary {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 24px);
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  transition: color 0.25s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item:hover summary { color: var(--gold); }
.faq__answer {
  padding-top: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream-2);
  max-width: 880px;
}

/* ============== CONTACTO ============== */
.contacto {
  padding: 160px var(--pad);
  background: var(--ink);
}
.contacto__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.contacto__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(38px, 6vw, 100px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 80px;
}
.contacto__title em { color: var(--gold); }
.contacto__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 50px;
  margin-bottom: 70px;
}
.contacto__label {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.contacto__big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--cream);
  letter-spacing: -0.005em;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.contacto__big:hover { color: var(--gold); border-color: var(--gold); }
.contacto__text {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--cream-2);
}
@media (max-width: 880px) {
  .contacto__cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: 100px var(--pad) 32px;
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
}
.footer__brand-img {
  height: 110px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.footer__brand-sub {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.footer__col-title {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a {
  font-size: 14px;
  color: var(--cream-2);
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.footer__legal { display: flex; gap: 28px; }
@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr; gap: 50px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer__bottom { flex-direction: column; gap: 18px; }
}

/* ============== REVEAL ANIMATION HELPERS ============== */
.reveal-up { opacity: 0; transform: translateY(40px); }
.reveal-fade { opacity: 0; }
.reveal-line { transform: scaleX(0); transform-origin: left; }

/* media protection — image preloading prevent flash */
.car__media,
.bodas__media,
.hero__bg { background: var(--ink-3); }

/* ============================================
   FILM GRAIN + VIGNETTE (site-wide texture)
   ============================================ */
.grain {
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85  0 0 0 0 0.78  0 0 0 0 0.62  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  animation: grainShift 1.6s steps(6) infinite;
  will-change: transform;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  16%  { transform: translate(-2%, -3%); }
  33%  { transform: translate(3%, 2%); }
  50%  { transform: translate(-1%, 4%); }
  66%  { transform: translate(2%, -2%); }
  83%  { transform: translate(-3%, 1%); }
  100% { transform: translate(0, 0); }
}
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background:
    radial-gradient(ellipse 90% 75% at center, transparent 45%, rgba(8, 6, 3, 0.55) 100%),
    radial-gradient(ellipse 100% 100% at 50% 0%, rgba(201, 169, 106, 0.05) 0%, transparent 40%);
}

/* ============================================
   CUSTOM CURSOR (gold dot + ring)
   ============================================ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  body { cursor: none; }
  a, button, summary, .car, .nav__cta, [role="button"] { cursor: none; }
}
.cursor__dot {
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold-2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
}
.cursor__ring {
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(217, 189, 132, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
}
.cursor.is-hover .cursor__dot { width: 0; height: 0; }
.cursor.is-hover .cursor__ring {
  width: 64px; height: 64px;
  border-color: var(--gold-2);
  background: rgba(201, 169, 106, 0.08);
}

/* ============================================
   CHAPTER ROMAN GHOSTS — sección decoradas con
   numeral romano gigante de fondo
   ============================================ */
[data-roman] {
  position: relative;
  isolation: isolate;
}
[data-roman]::before {
  content: attr(data-roman);
  position: absolute;
  top: 50px;
  right: clamp(20px, 4vw, 80px);
  font-family: var(--font-display);
  font-weight: 200;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-size: clamp(160px, 20vw, 340px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--gold);
  opacity: 0.085;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  white-space: nowrap;
}
[data-roman] > * { position: relative; z-index: 1; }

/* Section heads architecture upgrade */
.manifiesto__eyebrow,
.flota__eyebrow,
.bodas__eyebrow,
.servicios__eyebrow,
.testi__eyebrow,
.faq__eyebrow,
.contacto__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
  padding-left: 70px;
}
.manifiesto__eyebrow::before,
.flota__eyebrow::before,
.bodas__eyebrow::before,
.servicios__eyebrow::before,
.testi__eyebrow::before,
.faq__eyebrow::before,
.contacto__eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.manifiesto__eyebrow .dot,
.flota__eyebrow .dot,
.bodas__eyebrow .dot,
.servicios__eyebrow .dot,
.testi__eyebrow .dot,
.faq__eyebrow .dot,
.contacto__eyebrow .dot {
  display: none;
}

/* Ensure section heads have consistent breathing room above */
.manifiesto, .flota__head, .bodas__content, .servicios__head, .testi, .faq__head, .contacto__inner {
  position: relative;
}

@media (max-width: 880px) {
  [data-roman]::before { font-size: 140px; top: 30px; right: -10px; }
  .manifiesto__eyebrow,
  .flota__eyebrow,
  .bodas__eyebrow,
  .servicios__eyebrow,
  .testi__eyebrow,
  .faq__eyebrow,
  .contacto__eyebrow {
    padding-left: 48px;
  }
  .manifiesto__eyebrow::before,
  .flota__eyebrow::before,
  .bodas__eyebrow::before,
  .servicios__eyebrow::before,
  .testi__eyebrow::before,
  .faq__eyebrow::before,
  .contacto__eyebrow::before {
    width: 36px;
  }
}
