:root {
  --ink: #241f1b;
  --muted: #6f675f;
  --paper: #fffaf3;
  --shell: #f3eee7;
  --line: #ddd2c6;
  --gold: #9b7a45;
  --rose: #9d5c63;
  --teal: #2f6f70;
  --dark: #130f0c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--shell); }
a { color: inherit; text-decoration: none; }

#inicio,
#beneficios,
#muestras,
#paquetes,
#proceso,
#preguntas {
  scroll-margin-top: 94px;
}

.mobile-carousel-hint,
.mobile-carousel-controls,
.package-carousel-control,
.package-carousel-dots {
  display: none;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: white;
  background: linear-gradient(180deg, rgba(19, 15, 12, .86), rgba(19, 15, 12, .18));
}

.site-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; }
.site-brand span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #19120e, var(--gold));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.site-nav__toggle {
  display: none;
}

.site-nav nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  font-size: 14px;
  font-weight: 750;
}

.nav-cta,
.hero__actions a,
.cta-band a {
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--dark);
  background: #fff8ec;
  font-weight: 850;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 124px clamp(20px, 6vw, 86px) 82px;
  color: white;
  background: #3a2a22;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(19, 15, 12, .68) 0%, rgba(19, 15, 12, .46) 28%, rgba(19, 15, 12, .14) 58%, rgba(19, 15, 12, .04) 100%),
    linear-gradient(0deg, rgba(19, 15, 12, .56) 0%, rgba(19, 15, 12, .08) 34%, rgba(19, 15, 12, .02) 100%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 248, 236, .16), transparent 26%),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  opacity: .42;
  z-index: 1;
}

.hero__copy,
.hero-showcase {
  position: relative;
}

.hero__copy {
  z-index: 2;
  max-width: 560px;
}

.hero-showcase {
  z-index: 0;
}

.hero__copy p,
.section-heading p,
.cta-band p {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6.4vw, 92px);
  line-height: .92;
  max-width: 620px;
}

.hero__copy span {
  display: block;
  max-width: 500px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__actions a {
  box-shadow: 0 16px 36px rgba(0,0,0,.2);
}
.hero__actions a:first-child {
  color: white;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.hero-showcase {
  position: absolute;
  inset: 0;
  isolation: isolate;
}

.hero-stage {
  position: absolute;
  inset: 0;
  perspective: 1200px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(18px, 0, 0) scale(1.018);
  transition:
    opacity 900ms ease,
    transform 900ms cubic-bezier(.2, .72, .16, 1),
    filter 900ms ease;
  filter: saturate(.9) brightness(.9);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: -12%;
  background-image: var(--event-image);
  background-position: center;
  background-size: cover;
  opacity: .82;
  filter: blur(24px) saturate(1.16) brightness(.88);
  transform: scale(1.16);
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  filter: saturate(1.03) brightness(1);
}

.hero-slide.is-active::before {
  animation: heroBackdropDrift 9000ms ease-in-out infinite alternate;
}

.hero-slide__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: transparent;
  z-index: 1;
}

.hero-slide__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  transform: scale(.985);
  transition: transform 6000ms ease, filter 900ms ease;
  z-index: 2;
}

.hero-slide.is-active .hero-slide__image img {
  transform: scale(1.01);
}

.hero-slide__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 15, 12, .34), transparent 34%, rgba(19, 15, 12, .08)),
    linear-gradient(180deg, rgba(19, 15, 12, .14), transparent 42%, rgba(19, 15, 12, .42));
  opacity: .72;
  z-index: 3;
}

.hero-slide__image span {
  position: absolute;
  z-index: 4;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 0 24px rgba(255,255,255,.55);
  opacity: .44;
}

.hero-slide__image span:nth-child(1) { width: 7px; height: 7px; top: 12%; left: 13%; }
.hero-slide__image span:nth-child(2) { width: 5px; height: 5px; top: 20%; right: 17%; }
.hero-slide__image span:nth-child(3) { width: 4px; height: 4px; bottom: 16%; left: 22%; }

.hero-slide__caption {
  position: absolute;
  right: clamp(20px, 5vw, 74px);
  bottom: clamp(54px, 8vh, 86px);
  width: min(344px, 28vw);
  display: grid;
  gap: 3px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 9px;
  color: white;
  background: rgba(36, 25, 19, .4);
  backdrop-filter: blur(12px);
  z-index: 3;
}

.hero-slide__caption b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(14px, 1.4vw, 19px);
  line-height: 1.05;
}

.hero-slide__caption small {
  color: rgba(255,255,255,.76);
  font-size: 11px;
  font-weight: 750;
}

.hero-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: white;
  background: rgba(19, 15, 12, .28);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease, opacity .2s ease, border-color .2s ease;
}

.hero-control:hover,
.hero-control:focus-visible {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.5);
  outline: none;
  transform: translateY(-50%) scale(1.05);
}

.hero-control--prev { left: clamp(12px, 2vw, 26px); }
.hero-control--next { right: clamp(12px, 2vw, 26px); }

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 26px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.hero-dots button.is-active {
  width: 42px;
  background: #fff8ec;
}

@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -8px, 0) scale(1.008); }
}

@keyframes heroBackdropDrift {
  from { transform: scale(1.1) translate3d(-10px, 0, 0); }
  to { transform: scale(1.13) translate3d(10px, -6px, 0); }
}

.benefits-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-block: 1px solid rgba(155, 122, 69, .18);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(247, 239, 229, .96));
}

.benefits-strip article {
  min-height: 116px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: center;
  column-gap: 12px;
  row-gap: 4px;
  padding: 16px 14px;
  border: 1px solid rgba(155, 122, 69, .18);
  border-radius: 8px;
  background: rgba(255, 250, 243, .78);
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease, border-color .18s ease, background .18s ease;
  transition-delay: calc(var(--benefit-index, 0) * 70ms);
}

.benefits-strip article:hover {
  transform: translateY(-2px);
  border-color: rgba(157, 92, 99, .28);
  background: rgba(255, 253, 248, .94);
}

.benefits-strip.has-motion article {
  opacity: 0;
  transform: translateY(12px);
}

.benefits-strip.is-visible article {
  opacity: 1;
  transform: translateY(0);
}

.benefits-strip.is-visible article:hover {
  transform: translateY(-2px);
}

.benefits-strip i {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(47, 111, 112, .08);
}

.benefits-strip svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}

.benefits-strip article:hover svg {
  transform: translateY(-1px) scale(1.04);
}

.benefits-strip b {
  align-self: end;
  color: var(--dark);
  font-size: 13px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.benefits-strip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.32;
  font-weight: 700;
}

.section { padding: 72px clamp(18px, 6vw, 76px); }
.section-heading { max-width: 760px; margin-bottom: 30px; }
.section-heading p { color: var(--teal); }
.section-heading span { display: block; max-width: 700px; margin-top: 14px; color: var(--muted); font-size: 18px; line-height: 1.45; }
.section-heading h2,
.cta-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.event-explorer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 26%, rgba(157, 92, 99, .12), transparent 30%),
    linear-gradient(180deg, #fffdf8, #f5ece2);
}

.event-explorer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(155, 122, 69, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(155, 122, 69, .06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .32;
}

.event-explorer__intro,
.event-explorer__layout {
  position: relative;
  z-index: 1;
}

.event-explorer__intro {
  max-width: 780px;
  margin-bottom: 28px;
}

.event-explorer__intro p {
  margin: 0 0 10px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 950;
}

.event-explorer__intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.event-explorer__intro span {
  display: block;
  max-width: 660px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.event-explorer__layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(420px, 1.28fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
}

.event-explorer__panel {
  display: grid;
  gap: 18px;
}

.event-tabs {
  display: grid;
  gap: 8px;
}

.event-tabs button {
  width: 100%;
  border: 1px solid rgba(155, 122, 69, .2);
  border-radius: 8px;
  padding: 11px 13px;
  color: var(--dark);
  background: rgba(255, 253, 248, .76);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.event-tabs button:hover,
.event-tabs button:focus-visible {
  border-color: rgba(47, 111, 112, .42);
  background: #fffdf8;
  outline: none;
  transform: translateX(3px);
}

.event-tabs button[aria-selected="true"] {
  color: white;
  border-color: rgba(19, 15, 12, .82);
  background: linear-gradient(135deg, #201712, #6f5835);
  box-shadow: 0 14px 30px rgba(36, 31, 27, .14);
}

.event-story {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(155, 122, 69, .2);
  border-radius: 8px;
  background: rgba(255, 253, 248, .82);
}

.event-story.is-changing {
  animation: eventTextIn .34s ease;
}

.event-story p {
  margin: 0;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 950;
}

.event-story h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.event-story span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.event-story strong {
  color: var(--teal);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.event-story__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.event-story__actions a {
  border: 1px solid rgba(36, 31, 27, .18);
  border-radius: 8px;
  padding: 11px 13px;
  color: var(--dark);
  background: #fff8ec;
  font-weight: 900;
}

.event-story__actions a:first-child {
  color: white;
  border-color: var(--dark);
  background: var(--dark);
}

.event-visual {
  position: relative;
  min-height: clamp(360px, 48vw, 610px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(155, 122, 69, .24);
  border-radius: 8px;
  background: #efe2d5;
  box-shadow: 0 34px 70px rgba(36, 31, 27, .18);
}

.event-visual__ambient {
  position: absolute;
  inset: -10%;
  background-position: center;
  background-size: cover;
  filter: blur(24px) saturate(1.08);
  opacity: .46;
  transform: scale(1.08);
  transition: opacity .35s ease, transform .45s ease, background-image .2s ease;
}

.event-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,253,248,.18), transparent 30%, rgba(19,15,12,.14)),
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.22), transparent 24%);
}

.event-visual img {
  position: relative;
  z-index: 1;
  width: min(92%, 880px);
  max-height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(19, 15, 12, .22));
  transition: opacity .35s ease, transform .45s cubic-bezier(.2, .72, .16, 1);
}

.event-visual.is-changing img {
  opacity: 0;
  transform: translateY(10px) scale(.985);
}

@keyframes eventTextIn {
  from { opacity: .35; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.package-grid,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.package-card,
.quote-grid article {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fffdf8;
}

.package-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-content: initial;
  overflow: hidden;
  border-color: rgba(82, 62, 47, .16);
  background:
    linear-gradient(180deg, rgba(255,253,248,.96), rgba(247,239,229,.78)),
    #fffdf8;
  box-shadow: 0 18px 42px rgba(44, 31, 23, .06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, rgba(47,111,112,.7), rgba(185,128,68,.55));
  opacity: .7;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 111, 112, .34);
  box-shadow: 0 24px 52px rgba(44, 31, 23, .11);
}

.package-card__number,
.quote-grid b {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
}

.package-card h3,
.quote-grid h3 { margin: 0; font-size: 24px; }

.package-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.package-card p,
.quote-grid p,
.faq-list p { margin: 0; color: var(--muted); line-height: 1.45; }
.package-card__includes {
  margin-top: 2px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
}
.package-card ul { display: grid; gap: 10px; margin: 4px 0 0; padding: 0; list-style: none; }
.package-card li { position: relative; padding-left: 26px; color: #514942; font-size: 14px; line-height: 1.35; }
.package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -.08em;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--teal);
  font-size: 11px;
  font-weight: 950;
}
.package-card strong { margin-top: auto; color: var(--teal); font-size: 16px; line-height: 1.35; }

.package-card a,
.package-recommendation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  color: white;
  background: var(--dark);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.package-card a:hover,
.package-card a:focus-visible,
.package-recommendation a:hover,
.package-recommendation a:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(19, 13, 10, .16);
}

.package-card a:focus-visible,
.package-recommendation a:focus-visible {
  outline: 3px solid rgba(47, 111, 112, .35);
  outline-offset: 3px;
}

.package-card em {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  border: 1px solid rgba(185, 128, 68, .34);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--dark);
  background: rgba(241, 215, 154, .28);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.package-card--popular { border-color: rgba(185, 128, 68, .32); }
.package-card--popular .package-card__number { margin-top: 16px; }

.package-card--featured { color: white; border-color: var(--dark); background: var(--dark); }
.package-card--featured p,
.package-card--featured li { color: rgba(255,255,255,.82); }
.package-card--featured .package-card__includes { color: #f1d79a; }
.package-card--featured strong { color: #f1d79a; }
.package-card--featured::before { background: linear-gradient(90deg, #f1d79a, rgba(47,111,112,.9)); }
.package-card--featured .package-card__number { color: #f1d79a; }
.package-card--featured li::before { color: var(--dark); background: #f1d79a; }
.package-card--featured a { color: var(--dark); background: #fffdf8; }

.package-recommendation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  border: 1px solid rgba(47, 111, 112, .18);
  border-radius: 8px;
  padding: 20px 22px;
  background: #f7efe5;
}

.package-recommendation span {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.package-recommendation p {
  margin: 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
}

.custom-note {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  border: 1px solid rgba(19, 13, 10, .16);
  border-radius: 8px;
  padding: 22px;
  background: #f7efe5;
}

.custom-note span { color: var(--teal); font-size: 12px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.custom-note h3 { margin: 6px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 28px; line-height: 1.05; }
.custom-note p { margin: 0; color: var(--muted); line-height: 1.45; }
.custom-note small { display: block; margin-top: 8px; color: var(--dark); font-size: 13px; font-weight: 850; line-height: 1.35; }

.process-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(47, 111, 112, .08), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(185, 128, 68, .1), transparent 24%),
    #fffdf8;
}

.process-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, rgba(47, 111, 112, .06) 0 1px, transparent 1px 100%),
    linear-gradient(35deg, rgba(185, 128, 68, .04) 0 1px, transparent 1px 100%);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.65), transparent 72%);
}

.process-visual .section-heading,
.process-visual-grid,
.process-assurance {
  position: relative;
  z-index: 1;
}

.process-visual-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.process-visual-grid::before {
  content: "";
  position: absolute;
  top: 156px;
  left: 11%;
  right: 11%;
  height: 2px;
  background: linear-gradient(90deg, rgba(47,111,112,.16), rgba(185,128,68,.34), rgba(47,111,112,.16));
  transform: scaleX(.18);
  transform-origin: left center;
  opacity: .45;
  transition: transform 900ms ease, opacity 700ms ease;
}

.process-visual.is-visible .process-visual-grid::before {
  transform: scaleX(1);
  opacity: 1;
}

.process-visual-grid article {
  position: relative;
  min-height: 344px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(82, 62, 47, .18);
  border-radius: 8px;
  padding: 18px 18px 20px;
  background: rgba(255, 253, 248, .84);
  box-shadow: 0 18px 38px rgba(44, 31, 23, .06);
  opacity: 1;
  transform: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.process-visual.has-motion .process-visual-grid article {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    transform 560ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.process-visual.has-motion.is-visible .process-visual-grid article {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--process-index, 0) * 90ms);
}

.process-visual-grid article:hover {
  border-color: rgba(47, 111, 112, .34);
  box-shadow: 0 22px 46px rgba(44, 31, 23, .1);
  transform: translateY(-3px);
}

.process-visual-grid i {
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 30%, rgba(47,111,112,.12), transparent 22%),
    radial-gradient(circle at 82% 26%, rgba(185,128,68,.14), transparent 21%),
    linear-gradient(135deg, rgba(255,248,236,.98), rgba(241,224,207,.7));
  overflow: hidden;
  transition: transform 240ms ease;
}

.process-visual-grid article:hover i { transform: translateY(-2px); }

.process-visual-grid svg {
  width: min(92%, 180px);
  height: 112px;
}

.process-shape,
.process-folder,
.process-screen,
.process-phone {
  fill: rgba(255, 253, 248, .94);
  stroke: rgba(82, 62, 47, .38);
  stroke-width: 3;
}

.process-folder { fill: #d8c7ac; }
.process-screen { fill: #f7efe5; }
.process-phone { fill: #fdf8ef; }

.process-line,
.process-accent {
  fill: none;
  stroke: rgba(82, 62, 47, .54);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-accent {
  stroke: var(--teal);
}

.process-leaf {
  fill: rgba(47, 111, 112, .18);
  stroke: rgba(47, 111, 112, .38);
  stroke-width: 2;
}

.process-dot { fill: #2f6f70; opacity: .9; }
.process-accent-fill { fill: #b98044; opacity: .82; }
.process-warm { fill: #d9b777; opacity: .82; }

.process-visual-grid article::after {
  content: "";
  position: absolute;
  top: 151px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fffdf8;
  border: 2px solid rgba(47, 111, 112, .55);
  transform: translateX(-50%);
}

.process-visual-grid b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #2f6f70, #1f5556);
  box-shadow: 0 10px 20px rgba(47, 111, 112, .18);
}

.process-visual-grid strong {
  min-height: 48px;
  color: var(--dark);
  font-size: 20px;
  line-height: 1.18;
}

.process-visual-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.process-visual-grid {
  margin-top: 72px;
}

.process-visual-grid::before {
  top: -30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(185,128,68,.18), rgba(185,128,68,.74), rgba(185,128,68,.18));
}

.process-visual-grid article {
  min-height: 390px;
  gap: 10px;
  padding: 0 0 20px;
  overflow: visible;
  background: rgba(255, 253, 248, .94);
}

.process-visual-grid article::after {
  content: none;
}

.process-visual-grid figure {
  position: relative;
  height: 158px;
  margin: 0 0 4px;
  overflow: hidden;
  border-radius: 8px 8px 22px 22px;
  background: #f7efe5;
}

.process-visual-grid figure::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -28px;
  height: 54px;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 253, 248, .96);
}

.process-visual-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 360ms ease;
}

.process-visual-grid article:hover img {
  transform: scale(1.035);
}

.process-visual-grid b {
  position: absolute;
  top: -51px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  border: 3px solid #fffdf8;
}

.process-visual-grid article > i {
  width: 38px;
  height: 38px;
  margin: 0 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--teal);
  background: #f7efe5;
  overflow: visible;
}

.process-visual-grid article > i svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-visual-grid strong,
.process-visual-grid span {
  margin-inline: 18px;
}

.process-assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: 26px auto 0;
  border: 1px solid rgba(47, 111, 112, .2);
  border-radius: 999px;
  padding: 10px 12px 10px 16px;
  background: rgba(255, 253, 248, .88);
  box-shadow: 0 16px 34px rgba(44, 31, 23, .06);
}

.process-assurance span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: white;
  background: var(--teal);
  font-weight: 950;
}

.process-assurance p {
  margin: 0;
  color: var(--dark);
  font-weight: 850;
}

.process-assurance a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  color: white;
  background: var(--dark);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-assurance a:hover,
.process-assurance a:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(19, 13, 10, .16);
}

.process-assurance a:focus-visible {
  outline: 3px solid rgba(47, 111, 112, .35);
  outline-offset: 3px;
}

.quote-section { background: #fffdf8; }
.quote-grid article { min-height: 190px; }
.quote-grid h3 { margin-top: 8px; }

.quote-wizard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(82, 62, 47, .16);
  border-radius: 8px;
  padding: clamp(22px, 4.4vw, 42px);
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 111, 112, .09), transparent 28%),
    linear-gradient(135deg, rgba(255,253,248,.98), rgba(247,239,229,.88));
  box-shadow: 0 22px 54px rgba(44, 31, 23, .08);
}

.quote-wizard__top {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.quote-wizard__top span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-wizard__steps {
  display: grid;
  grid-template-columns: repeat(6, 34px);
  justify-content: center;
  gap: 12px;
  position: relative;
}

.quote-wizard__steps::before {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  top: 50%;
  height: 1px;
  background: rgba(82, 62, 47, .18);
  transform: translateY(-50%);
}

.quote-wizard__steps i {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(82, 62, 47, .24);
  border-radius: 999px;
  color: var(--dark);
  background: #fffdf8;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.quote-wizard__steps i.is-active {
  color: white;
  border-color: var(--teal);
  background: var(--teal);
  transform: scale(1.08);
}

.quote-wizard__steps i.is-complete {
  color: white;
  border-color: rgba(185, 128, 68, .6);
  background: #b98044;
}

.quote-wizard__form {
  min-height: 390px;
}

.quote-step {
  display: none;
  margin: 0;
  border: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(12px);
}

.quote-step.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: quoteStepIn 300ms ease both;
}

.quote-step legend {
  max-width: 780px;
  margin-inline: auto;
  color: var(--dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.02;
  text-align: center;
}

.quote-step p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
  text-align: center;
}

.quote-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  max-width: 680px;
  margin: 28px auto 0;
}

.quote-options--compact,
.quote-options--packages {
  grid-template-columns: minmax(0, 1fr);
}

.quote-options label,
.quote-fields label {
  cursor: pointer;
  position: relative;
}

.quote-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quote-options span {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(82, 62, 47, .16);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--dark);
  background: rgba(255,255,255,.82);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quote-options span::before {
  content: attr(data-icon);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #b98044;
  background: rgba(185, 128, 68, .1);
  font-size: 17px;
}

.quote-options span::after {
  content: "";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(82, 62, 47, .22);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(255,255,255,.68);
  font-size: 13px;
}

.quote-options--packages span {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.quote-options--packages span b,
.quote-options--packages span small {
  grid-column: 2;
}

.quote-options small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.quote-options input:checked + span {
  color: white;
  border-color: rgba(241, 215, 154, .88);
  background: linear-gradient(135deg, #073f38, #0c352f);
  box-shadow: 0 18px 36px rgba(7, 63, 56, .24);
  transform: translateY(-2px) scale(1.01);
}

.quote-options input:checked + span::before {
  color: #f1d79a;
  background: rgba(241, 215, 154, .14);
}

.quote-options input:checked + span::after {
  content: "✓";
  border-color: rgba(241, 215, 154, .85);
  color: #073f38;
  background: #fffdf8;
  font-weight: 950;
}

.quote-options input:checked + span small {
  color: rgba(255,255,255,.76);
}

.quote-options input:focus-visible + span,
.quote-fields input:focus-visible {
  outline: 3px solid rgba(47, 111, 112, .26);
  outline-offset: 3px;
}

.quote-options label:hover span {
  transform: translateY(-2px);
  border-color: rgba(185, 128, 68, .36);
}

.quote-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 24px;
  margin-inline: auto;
}

.quote-fields label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.quote-fields input {
  min-height: 50px;
  border: 1px solid rgba(82, 62, 47, .18);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--dark);
  background: rgba(255,255,255,.88);
  font: inherit;
}

.quote-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 24px;
  margin-inline: auto;
  border: 1px solid rgba(47, 111, 112, .18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,.68);
}

.quote-summary div {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(82, 62, 47, .1);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,253,248,.72);
}

.quote-summary b {
  color: var(--dark);
}

.quote-summary span {
  color: var(--muted);
}

.quote-wizard__error {
  min-height: 22px;
  margin: 14px 0 0;
  color: #9d3f45;
  font-weight: 850;
}

.quote-wizard__actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.quote-wizard__actions button {
  min-height: 50px;
  border: 1px solid rgba(82, 62, 47, .18);
  border-radius: 999px;
  padding: 0 22px;
  color: var(--dark);
  background: #fffdf8;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.quote-wizard__actions button:hover,
.quote-wizard__actions button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(44, 31, 23, .1);
}

.quote-wizard__actions button:focus-visible {
  outline: 3px solid rgba(47, 111, 112, .28);
  outline-offset: 3px;
}

.quote-wizard__actions [data-wizard-next],
.quote-wizard__actions [data-wizard-send] {
  color: white;
  border-color: var(--teal);
  background: linear-gradient(135deg, #073f38, #0c352f);
}

.quote-wizard__actions [data-wizard-next]::after {
  content: "›";
  margin-left: 10px;
  font-size: 22px;
  line-height: 1;
}

.quote-wizard__actions [data-wizard-send] {
  display: none;
}

.quote-wizard.is-final [data-wizard-next] {
  display: none;
}

.quote-wizard.is-final [data-wizard-send] {
  display: inline-flex;
  align-items: center;
}

.quote-wizard.is-final [data-wizard-send]::before {
  content: "◉";
  margin-right: 9px;
  color: #f1d79a;
}

@keyframes quoteStepIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-list { display: grid; gap: 10px; margin-top: 18px; }
.faq-list details {
  border: 1px solid rgba(82, 62, 47, .16);
  border-radius: 8px;
  background: #f7efe5;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.faq-list details[open] {
  border-color: rgba(47, 111, 112, .32);
  background: #fffaf2;
  box-shadow: 0 12px 28px rgba(44, 31, 23, .06);
}
.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--dark);
  font-weight: 900;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(47, 111, 112, .09);
  transition: transform 180ms ease;
}
.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-list summary:focus-visible {
  outline: 3px solid rgba(47, 111, 112, .28);
  outline-offset: -3px;
}
.faq-list p {
  margin: 0;
  padding: 0 18px 16px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 5vw, 58px);
  padding: clamp(58px, 8vw, 92px) clamp(18px, 7vw, 86px);
  color: white;
  background:
    radial-gradient(circle at 12% 18%, rgba(241, 215, 154, .22), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(47, 111, 112, .34), transparent 34%),
    linear-gradient(135deg, #160f0c 0%, #2b1b14 48%, #173c3c 100%);
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cta-band::before {
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.16) 0 1px, transparent 1.5px),
    linear-gradient(120deg, rgba(255,255,255,.05) 0 1px, transparent 1px 100%);
  background-size: 82px 82px, 120px 120px;
  opacity: .32;
}

.cta-band::after {
  right: -72px;
  bottom: -90px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(241, 215, 154, .22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 34px rgba(255,255,255,.025);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band p {
  margin: 0 0 12px;
  color: #f1d79a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: .98;
}

.cta-band span {
  display: block;
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.55;
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 238px;
}

.cta-band__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  color: var(--dark);
  background: #fffdf8;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cta-band__actions a + a {
  color: white;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
}

.cta-band__actions a:hover,
.cta-band__actions a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0,0,0,.18);
}

.cta-band__actions a:focus-visible {
  outline: 3px solid rgba(241, 215, 154, .45);
  outline-offset: 3px;
}

.cta-band.has-motion > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.cta-band.has-motion.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.cta-band.has-motion.is-visible .cta-band__actions {
  transition-delay: 120ms;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(220px, .9fr) minmax(220px, .8fr);
  gap: 28px;
  padding: 38px clamp(18px, 6vw, 76px) 26px;
  color: #f8efe2;
  background: #130d0a;
}

.site-footer .brand {
  position: static;
  padding: 0;
  color: white;
  text-decoration: none;
  background: transparent;
}

.site-footer .brand span {
  box-shadow: none;
}

.site-footer__brand p {
  max-width: 360px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.68);
  line-height: 1.5;
}

.site-footer__links,
.site-footer__contact {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f1d79a;
}

.site-footer a:focus-visible {
  outline: 3px solid rgba(241, 215, 154, .35);
  outline-offset: 3px;
  border-radius: 6px;
}

.site-footer__top {
  width: fit-content;
  margin-top: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 9px 13px;
}

.site-footer__top:hover { transform: translateY(-2px); }

.site-footer small {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  color: rgba(255,255,255,.48);
}

@media (max-width: 1040px) {
  .hero {
    min-height: 820px;
    padding-top: 116px;
    padding-bottom: 78px;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(19, 15, 12, .68) 0%, rgba(19, 15, 12, .42) 40%, rgba(19, 15, 12, .1) 82%),
      linear-gradient(0deg, rgba(19, 15, 12, .54) 0%, rgba(19, 15, 12, .08) 42%);
  }
  .hero__copy { max-width: 500px; }
  .hero-slide__image img {
    object-position: center center;
    transform: scale(.97);
  }
  .hero-slide.is-active .hero-slide__image img {
    transform: scale(.995);
  }
  .hero-slide__caption {
    right: 28px;
    bottom: 70px;
    width: min(324px, 38vw);
  }
  .benefits-strip,
  .process-visual-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-card { min-height: auto; }
  .package-recommendation { grid-template-columns: 1fr; }
  .cta-band,
  .site-footer { grid-template-columns: 1fr; }
  .cta-band__actions {
    width: min(100%, 420px);
    min-width: 0;
  }
  .process-visual-grid::before { display: none; }
  .process-visual-grid article { min-height: 380px; }
  .process-assurance {
    width: 100%;
    justify-content: space-between;
    border-radius: 8px;
  }
  .event-explorer__layout {
    grid-template-columns: 1fr;
  }
  .event-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .event-tabs::-webkit-scrollbar { display: none; }
  .event-tabs button {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .event-visual { min-height: 500px; }
}

@media (max-width: 760px) {
  .site-nav { position: absolute; grid-template-columns: 1fr; }
  .site-nav nav { justify-content: flex-start; flex-wrap: wrap; }
  .hero {
    align-items: start;
    min-height: 860px;
    padding: 132px 18px 72px;
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(19, 15, 12, .62) 0%, rgba(19, 15, 12, .4) 38%, rgba(19, 15, 12, .12) 62%, rgba(19, 15, 12, .64) 100%),
      linear-gradient(90deg, rgba(19, 15, 12, .36), rgba(19, 15, 12, .04));
  }
  .hero h1 { font-size: clamp(48px, 15vw, 66px); max-width: 360px; }
  .hero__copy { max-width: 360px; }
  .hero__copy span { max-width: 340px; font-size: 15px; line-height: 1.5; }
  .hero__actions { margin-top: 22px; }
  .hero-slide__image img {
    object-position: center 58%;
    transform: scale(.98);
  }
  .hero-slide.is-active .hero-slide__image img {
    transform: scale(1);
  }
  .hero-slide__caption {
    left: 18px;
    right: 18px;
    bottom: 70px;
    width: auto;
    padding: 8px 10px;
  }
  .hero-slide__caption b { font-size: 16px; }
  .hero-slide__caption small { font-size: 10.5px; }
  .hero-control {
    top: auto;
    bottom: 18px;
    width: 40px;
    height: 40px;
    font-size: 30px;
    transform: none;
  }
  .hero-control:hover { transform: scale(1.04); }
  .hero-control--prev { left: 18px; }
  .hero-control--next { right: 18px; }
  .hero-dots { bottom: 34px; }
  .hero-dots button { width: 24px; }
  .hero-dots button.is-active { width: 38px; }
  .package-grid,
  .quote-grid,
  .process-visual-grid,
  .custom-note,
  .cta-band { grid-template-columns: 1fr; }
  .package-card {
    min-height: auto;
    padding: 20px;
  }
  .package-card--popular .package-card__number { margin-top: 18px; }
  .package-card a,
  .package-recommendation a { width: 100%; }
  .package-recommendation {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .quote-options,
  .quote-options--compact,
  .quote-options--packages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
  .cta-band {
    text-align: left;
    padding: 56px 18px;
  }
  .cta-band h2 { font-size: clamp(36px, 12vw, 52px); }
  .cta-band span { font-size: 16px; }
  .cta-band__actions {
    width: 100%;
    min-width: 0;
  }
  .cta-band__actions a { width: 100%; }
  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }
  .faq-list summary { padding: 15px 16px; }
  .faq-list p { padding: 0 16px 15px; }
  .process-visual-grid {
    gap: 14px;
    margin-top: 34px;
  }
  .process-visual-grid::before {
    display: block;
    top: -14px;
    bottom: 12px;
    left: 29px;
    right: auto;
    width: 2px;
    height: auto;
    transform: scaleY(.2);
    transform-origin: top center;
    background: linear-gradient(180deg, rgba(47,111,112,.16), rgba(185,128,68,.34), rgba(47,111,112,.16));
  }
  .process-visual.is-visible .process-visual-grid::before { transform: scaleY(1); }
  .process-visual-grid article {
    min-height: auto;
    padding: 0 0 18px 58px;
  }
  .process-visual-grid b {
    top: -8px;
    left: 29px;
    width: 38px;
    height: 38px;
  }
  .process-visual-grid figure {
    height: 178px;
    margin-left: 0;
  }
  .process-visual-grid article > i {
    width: 34px;
    height: 34px;
    margin: 0 16px;
  }
  .process-visual-grid strong {
    min-height: 0;
    font-size: 19px;
  }
  .process-visual-grid strong,
  .process-visual-grid span {
    margin-inline: 16px;
  }
  .process-assurance {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 12px;
    padding: 14px;
  }
  .process-assurance a {
    grid-column: 1 / -1;
    width: 100%;
  }
  .event-explorer { padding-inline: 16px; }
  .event-explorer__intro span { font-size: 16px; }
  .event-explorer__layout { gap: 16px; }
  .event-story { padding: 18px; }
  .event-story h3 { font-size: 28px; }
  .event-visual {
    min-height: 330px;
    order: -1;
  }
  .event-visual img {
    width: 96%;
    max-height: 82%;
  }
  .benefits-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
  }
  .benefits-strip article {
    min-height: 118px;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 7px;
    padding: 13px;
  }
  .benefits-strip i {
    grid-row: auto;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 430px) {
  .benefits-strip { grid-template-columns: 1fr; }
  .benefits-strip article {
    min-height: auto;
    grid-template-columns: auto minmax(0, 1fr);
  }
  .benefits-strip i { grid-row: 1 / span 2; }
  .quote-wizard {
    padding: 16px;
  }
  .quote-wizard__form {
    min-height: 0;
  }
  .quote-options,
  .quote-options--compact,
  .quote-options--packages,
  .quote-fields {
    grid-template-columns: 1fr;
  }
  .quote-wizard__steps {
    grid-template-columns: repeat(6, 28px);
    gap: 7px;
  }
  .quote-wizard__steps i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .quote-options {
    gap: 10px;
  }
  .quote-options span {
    min-height: 68px;
    padding: 14px;
  }
  .quote-summary {
    grid-template-columns: 1fr;
  }
  .quote-step legend {
    font-size: clamp(30px, 10vw, 42px);
  }
  .quote-wizard__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .quote-wizard__actions button {
    width: 100%;
  }
  .cta-band { text-align: center; }
  .site-footer .brand { justify-content: center; }
  .site-footer__brand,
  .site-footer small { text-align: center; }
  .site-footer__brand p { margin-inline: auto; }
  .site-footer__links,
  .site-footer__contact { justify-items: center; }
}

/* Sprint 18: Mobile Premium Experience. Desktop remains untouched. */
@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 50% 0, rgba(255, 250, 243, .9), transparent 28rem),
      linear-gradient(180deg, #f4ece2, #fffaf3 34%, #f3eee7);
  }

  .site-nav {
    position: absolute;
    inset: 10px 10px auto;
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px;
    background: rgba(19, 15, 12, .34);
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
    backdrop-filter: blur(18px);
  }

  .site-brand {
    justify-content: center;
  }

  .site-brand span {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
  }

  .site-nav nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 4px;
    scrollbar-width: none;
  }

  .site-nav nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav nav a {
    flex: 0 0 auto;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    padding: 9px 12px;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.08);
    font-size: 12px;
    line-height: 1;
  }

  .site-nav nav .nav-cta {
    color: var(--dark);
    background: #fff8ec;
  }

  .hero {
    min-height: 100svh;
    padding: 138px 16px 22px;
    align-items: stretch;
    background: #1a110d;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(19, 15, 12, .68) 0%, rgba(19, 15, 12, .36) 24%, rgba(19, 15, 12, .08) 44%, rgba(19, 15, 12, .28) 72%, rgba(19, 15, 12, .78) 100%),
      radial-gradient(circle at 50% 45%, rgba(255, 248, 236, .1), transparent 18rem);
  }

  .hero::after {
    background:
      radial-gradient(circle at 72% 26%, rgba(241, 215, 154, .22), transparent 8rem),
      radial-gradient(circle at 18% 58%, rgba(157, 92, 99, .22), transparent 9rem),
      linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: auto, auto, 42px 42px;
    opacity: .5;
  }

  .hero__copy {
    display: grid;
    align-content: start;
    max-width: none;
    min-height: calc(100svh - 160px);
    padding-top: 4px;
    pointer-events: none;
  }

  .hero__copy p {
    width: fit-content;
    margin-bottom: 8px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    padding: 7px 10px;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    font-size: 10px;
  }

  .hero h1 {
    max-width: 300px;
    font-size: clamp(44px, 14vw, 58px);
    letter-spacing: 0;
    text-shadow: 0 16px 34px rgba(0,0,0,.4);
  }

  .hero__copy span {
    max-width: 310px;
    margin-top: 12px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
  }

  .hero__actions {
    align-self: end;
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 330px);
    margin-top: auto;
    margin-bottom: 116px;
    pointer-events: auto;
  }

  .hero__actions a {
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    box-shadow: 0 16px 32px rgba(0,0,0,.2);
  }

  .hero-stage {
    perspective: 900px;
  }

  .hero-slide {
    transform: translate3d(0, 18px, 0) scale(1.025);
  }

  .hero-slide::before {
    inset: -10%;
    filter: blur(22px) saturate(1.12) brightness(.9);
    opacity: .9;
    transform: scale(1.14);
  }

  .hero-slide__image {
    inset: 250px -22px 122px -22px;
    overflow: visible;
  }

  .hero-slide__image img {
    object-position: center center;
    transform: translate3d(0, 12px, 0) scale(1.16);
    filter: drop-shadow(0 22px 34px rgba(0,0,0,.32));
  }

  .hero-slide.is-active .hero-slide__image img {
    animation: mobileHeroProductFloat 6200ms ease-in-out infinite alternate;
    transform: translate3d(0, 0, 0) scale(1.2);
  }

  .hero-slide__image::before {
    background:
      radial-gradient(circle at 50% 44%, rgba(255,255,255,.08), transparent 15rem),
      linear-gradient(180deg, transparent 0%, rgba(19,15,12,.08) 46%, rgba(19,15,12,.5) 100%);
    opacity: .9;
  }

  .hero-slide__image span:nth-child(1) {
    top: 8%;
    left: 18%;
    animation: mobileSparkOne 4.8s ease-in-out infinite;
  }

  .hero-slide__image span:nth-child(2) {
    top: 14%;
    right: 20%;
    animation: mobileSparkTwo 5.4s ease-in-out infinite;
  }

  .hero-slide__image span:nth-child(3) {
    bottom: 18%;
    left: 28%;
    animation: mobileSparkOne 6s ease-in-out infinite reverse;
  }

  .hero-slide__caption {
    left: 16px;
    right: 16px;
    bottom: 68px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
    padding: 11px 13px;
    border-radius: 16px;
    border-color: rgba(255,255,255,.2);
    background: rgba(23, 16, 12, .46);
    box-shadow: 0 18px 38px rgba(0,0,0,.22);
    backdrop-filter: blur(18px);
  }

  .hero-slide__caption b {
    font-size: 15px;
  }

  .hero-slide__caption small {
    font-size: 10px;
  }

  .hero-control {
    bottom: 18px;
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.12);
  }

  .hero-dots {
    left: 58px;
    right: 58px;
    bottom: 20px;
    display: flex;
    justify-content: flex-start;
    gap: 7px;
    overflow-x: auto;
    padding: 0 2px 4px;
    transform: none;
    scrollbar-width: none;
  }

  .hero-dots::-webkit-scrollbar {
    display: none;
  }

  .hero-dots button {
    width: auto;
    min-width: max-content;
    height: 34px;
    border: 1px solid rgba(255,255,255,.18);
    padding: 0 11px;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.1);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .03em;
    backdrop-filter: blur(10px);
  }

  .hero-dots button::before {
    content: "";
  }

  .hero-dots button:nth-child(1)::before { content: "Baby"; }
  .hero-dots button:nth-child(2)::before { content: "Bautizos"; }
  .hero-dots button:nth-child(3)::before { content: "Bodas"; }
  .hero-dots button:nth-child(4)::before { content: "Cumple"; }
  .hero-dots button:nth-child(5)::before { content: "Corporativo"; }
  .hero-dots button:nth-child(6)::before { content: "Graduación"; }
  .hero-dots button:nth-child(7)::before { content: "XV"; }

  .hero-dots button.is-active {
    width: auto;
    color: var(--dark);
    background: #fff8ec;
  }

  .section {
    padding: 54px 16px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .event-explorer__intro h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .section-heading span,
  .event-explorer__intro span {
    font-size: 15px;
  }

  .event-explorer {
    border-top: 1px solid rgba(155, 122, 69, .16);
    border-bottom: 1px solid rgba(155, 122, 69, .16);
    background:
      radial-gradient(circle at 50% 4%, rgba(157, 92, 99, .13), transparent 15rem),
      linear-gradient(180deg, #fffdf8, #f2e7da);
  }

  .event-explorer__intro {
    margin-bottom: 18px;
  }

  .event-explorer__layout {
    display: flex;
    flex-direction: column;
  }

  .event-explorer__panel {
    display: contents;
  }

  .event-visual {
    order: 1;
    min-height: 360px;
    border-radius: 22px;
    box-shadow: 0 24px 54px rgba(36,31,27,.18);
  }

  .event-visual img {
    width: 112%;
    max-height: 92%;
    filter: drop-shadow(0 22px 28px rgba(19,15,12,.24));
  }

  .event-tabs {
    order: 2;
    width: calc(100% + 32px);
    margin-inline: -16px;
    padding: 4px 16px 10px;
    scroll-snap-type: x mandatory;
  }

  .event-tabs button {
    scroll-snap-align: start;
    border-radius: 999px;
    padding: 12px 15px;
    background: rgba(255,253,248,.86);
    box-shadow: 0 10px 22px rgba(36,31,27,.06);
  }

  .event-tabs button[aria-selected="true"] {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(36,31,27,.14);
  }

  .event-story {
    order: 3;
    margin-top: -18px;
    border-radius: 20px;
    padding: 20px;
    background: rgba(255,253,248,.9);
    box-shadow: 0 20px 46px rgba(36,31,27,.12);
    backdrop-filter: blur(16px);
  }

  .event-story h3 {
    font-size: 30px;
  }

  .event-story__actions {
    display: grid;
  }

  .event-story__actions a {
    width: 100%;
    text-align: center;
    border-radius: 999px;
  }

  .package-grid {
    display: flex;
    gap: 14px;
    width: calc(100% + 32px);
    margin-inline: -16px;
    overflow-x: auto;
    padding: 2px 16px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .package-grid::-webkit-scrollbar {
    display: none;
  }

  .package-card {
    flex: 0 0 min(86vw, 340px);
    scroll-snap-align: center;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 24px 52px rgba(44,31,23,.12);
  }

  .package-card::after {
    content: "";
    position: absolute;
    right: -38px;
    top: -38px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(185,128,68,.22);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241,215,154,.16), transparent 68%);
    pointer-events: none;
  }

  .package-card h3 {
    font-size: 38px;
  }

  .package-card__number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(155,122,69,.24);
    border-radius: 999px;
    background: rgba(255,250,243,.7);
  }

  .package-card li {
    font-size: 13.5px;
  }

  .package-recommendation,
  .custom-note {
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(44,31,23,.08);
  }

  .process-visual {
    background:
      radial-gradient(circle at 12% 12%, rgba(241,215,154,.18), transparent 10rem),
      radial-gradient(circle at 86% 48%, rgba(47,111,112,.16), transparent 12rem),
      linear-gradient(180deg, #fffaf3, #f0e5d8);
  }

  .process-visual-grid {
    gap: 18px;
  }

  .process-visual-grid::before {
    left: 31px;
    top: 8px;
    bottom: 36px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(47,111,112,.18), rgba(185,128,68,.5), rgba(157,92,99,.22));
    box-shadow: 0 0 24px rgba(185,128,68,.16);
  }

  .process-visual-grid article {
    border-radius: 22px;
    padding: 0 0 20px 62px;
    background: linear-gradient(180deg, rgba(255,253,248,.92), rgba(255,250,243,.78));
    box-shadow: 0 18px 38px rgba(44,31,23,.08);
  }

  .process-visual-grid article:nth-child(even) {
    transform: translateX(6px);
  }

  .process-visual-grid figure {
    height: 190px;
    border-radius: 18px;
  }

  .process-visual-grid b {
    left: 31px;
    color: white;
    background: linear-gradient(135deg, var(--teal), #173c3c);
    box-shadow: 0 12px 28px rgba(47,111,112,.26);
  }

  .process-assurance {
    border-radius: 20px;
    background: rgba(255,253,248,.84);
    box-shadow: 0 18px 42px rgba(44,31,23,.08);
  }

  .quote-section .section-heading h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .cta-band {
    min-height: auto;
    padding: 42px 18px;
    border-radius: 0;
  }

  .cta-band h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.02;
  }

  .cta-band span {
    margin-top: 12px;
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .hero {
    padding-inline: 14px;
  }

  .hero h1 {
    max-width: 270px;
    font-size: clamp(42px, 13vw, 54px);
  }

  .hero__copy span {
    max-width: 292px;
  }

  .hero-slide__image {
    inset: 268px -36px 132px -36px;
  }

  .hero-slide__image img {
    transform: translate3d(0, 10px, 0) scale(1.3);
  }

  .hero-slide.is-active .hero-slide__image img {
    transform: translate3d(0, 0, 0) scale(1.34);
  }

  .hero__actions {
    margin-bottom: 112px;
  }

  .event-visual {
    min-height: 320px;
  }

  .event-visual img {
    width: 120%;
  }

  .package-card {
    flex-basis: 88vw;
  }

  .process-visual-grid figure {
    height: 168px;
  }

  .cta-band {
    text-align: left;
  }
}

/* Sprint 19: Mobile Storytelling Experience. Mobile-only final polish. */
@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .site-nav {
    inset: 8px 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 16px;
    background: rgba(22, 15, 12, .42);
  }

  .site-brand {
    min-width: max-content;
    gap: 8px;
  }

  .site-brand strong {
    font-size: 13px;
    letter-spacing: .01em;
  }

  .site-brand span {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 17px;
  }

  .site-nav nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 6px;
    min-width: 0;
    padding: 0 0 2px;
  }

  .site-nav nav a {
    padding: 8px 10px;
    font-size: 11px;
    white-space: nowrap;
  }

  .site-nav nav a:not(.nav-cta):nth-child(n+4) {
    display: none;
  }

  .site-nav nav .nav-cta {
    padding-inline: 12px;
  }

  .hero {
    min-height: 100svh;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: end;
    padding: 68px 14px 16px;
    background: #241812;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(19,15,12,.18) 0%, rgba(19,15,12,.03) 31%, rgba(19,15,12,.18) 58%, rgba(19,15,12,.76) 100%),
      radial-gradient(circle at 50% 42%, rgba(255,248,236,.12), transparent 19rem);
  }

  .hero::after {
    opacity: .32;
  }

  .hero-showcase {
    position: absolute;
    inset: 0;
  }

  .hero__copy {
    align-self: end;
    z-index: 4;
    max-width: none;
    min-height: 0;
    display: grid;
    gap: 8px;
    padding: 0;
  }

  .hero__copy p {
    display: none;
  }

  .hero h1 {
    width: fit-content;
    max-width: calc(100vw - 28px);
    margin: 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(22,15,12,.4);
    backdrop-filter: blur(14px);
    font-size: 24px;
    line-height: 1;
    box-shadow: 0 14px 34px rgba(0,0,0,.18);
  }

  .hero__copy span {
    max-width: none;
    margin: 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    padding: 12px 13px;
    color: rgba(255,255,255,.84);
    background: rgba(22,15,12,.34);
    backdrop-filter: blur(14px);
    font-size: 13.5px;
    line-height: 1.42;
  }

  .hero__actions {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0 0 64px;
  }

  .hero__actions a {
    min-height: 42px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .hero-slide__image {
    inset: 54px -8px 216px;
  }

  .hero-slide__image img,
  .hero-slide.is-active .hero-slide__image img {
    transform: translate3d(0, 0, 0) scale(1.02);
  }

  .hero-slide.is-active .hero-slide__image img {
    animation: mobileHeroProductFloatSoft 7200ms ease-in-out infinite alternate;
  }

  .hero-slide__image::before {
    background:
      linear-gradient(180deg, rgba(19,15,12,.08) 0%, rgba(19,15,12,0) 36%, rgba(19,15,12,.42) 100%);
    opacity: .72;
  }

  .hero-slide__caption {
    left: 14px;
    right: auto;
    bottom: 238px;
    width: min(78vw, 300px);
    padding: 9px 11px;
    border-radius: 14px;
    background: rgba(22,15,12,.36);
  }

  .hero-control {
    top: auto;
    bottom: 158px;
    width: 42px;
    height: 42px;
    background: rgba(22,15,12,.34);
  }

  .hero-control--prev { left: 12px; }
  .hero-control--next { right: 12px; }

  .hero-dots {
    left: 14px;
    right: 14px;
    bottom: 118px;
    justify-content: flex-start;
  }

  .hero-dots button {
    height: 31px;
    padding-inline: 10px;
    font-size: 9.5px;
  }

  .benefits-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 18px 14px;
    background:
      radial-gradient(circle at 16% 0, rgba(241,215,154,.2), transparent 10rem),
      linear-gradient(180deg, #fffaf3, #f1e7db);
  }

  .benefits-strip article {
    min-height: 132px;
    grid-template-columns: 1fr;
    align-content: start;
    padding: 15px;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(44,31,23,.07);
  }

  .benefits-strip article:first-child {
    grid-column: 1 / -1;
    min-height: 118px;
    grid-template-columns: auto minmax(0, 1fr);
    align-content: center;
    background:
      radial-gradient(circle at 82% 18%, rgba(241,215,154,.26), transparent 8rem),
      rgba(255,253,248,.92);
  }

  .benefits-strip i {
    grid-row: auto;
    width: 38px;
    height: 38px;
  }

  .benefits-strip b {
    font-size: 12px;
  }

  .benefits-strip span {
    font-size: 11.5px;
  }

  .mobile-carousel-hint,
  .mobile-carousel-controls {
    display: flex;
  }

  .mobile-carousel-hint {
    align-items: center;
    justify-content: center;
    margin: 0 0 12px;
  }

  .mobile-carousel-hint span {
    border: 1px solid rgba(47,111,112,.16);
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--teal);
    background: rgba(255,253,248,.72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .mobile-carousel-controls {
    order: 2;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 12px 0 4px;
  }

  .mobile-carousel-controls button,
  .package-carousel-control {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(47,111,112,.18);
    border-radius: 999px;
    color: var(--dark);
    background: rgba(255,253,248,.88);
    box-shadow: 0 14px 26px rgba(44,31,23,.12);
    font-size: 26px;
    line-height: 1;
  }

  .mobile-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .mobile-carousel-dots i {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(47,111,112,.22);
    transition: width .22s ease, background .22s ease;
  }

  .mobile-carousel-dots i.is-active {
    width: 22px;
    background: var(--teal);
  }

  .event-carousel-hint {
    order: 2;
    margin-top: 14px;
  }

  .event-carousel-controls {
    order: 3;
  }

  .event-tabs {
    order: 4;
    padding-top: 8px;
  }

  .event-tabs button {
    opacity: .68;
    transform: scale(.94);
  }

  .event-tabs button[aria-selected="true"] {
    opacity: 1;
    transform: scale(1.04);
    color: white;
    background: linear-gradient(135deg, var(--teal), #173c3c);
  }

  .event-story {
    order: 5;
  }

  .event-story p {
    width: fit-content;
    border-radius: 999px;
    padding: 6px 10px;
    color: #fff8ec;
    background: linear-gradient(135deg, var(--rose), var(--gold));
  }

  .event-story h3 {
    font-size: 32px;
  }

  .package-carousel-hint {
    margin-top: -6px;
  }

  .package-carousel-shell {
    position: relative;
    width: calc(100% + 32px);
    margin-inline: -16px;
    overflow: hidden;
  }

  .package-grid {
    width: 100%;
    margin-inline: 0;
    scroll-padding-inline: 16px;
    animation: packagePeek 900ms ease 650ms 1 both;
  }

  .package-card {
    transform: scale(.96);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  }

  .package-card.is-mobile-active {
    transform: scale(1);
    border-color: rgba(185,128,68,.42);
    box-shadow: 0 28px 60px rgba(44,31,23,.16);
  }

  .package-carousel-control {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
  }

  .package-carousel-control--prev {
    left: 6px;
  }

  .package-carousel-control--next {
    right: 6px;
  }

  .package-carousel-dots {
    display: flex;
    margin: 0 auto 20px;
  }

  .process-visual-grid article {
    transform: translateX(0);
  }

  .process-visual-grid article:nth-child(even) {
    transform: translateX(0);
  }

  .quote-wizard {
    border-radius: 22px;
    padding: 18px;
  }

  .quote-options span {
    min-height: 52px;
  }

  .quote-wizard__actions {
    gap: 8px;
  }

  .faq-list {
    gap: 8px;
    margin-top: 16px;
  }

  .faq-list details {
    border-radius: 16px;
  }

  .faq-list summary {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.25;
  }

  .faq-list summary::after {
    width: 24px;
    height: 24px;
  }

  .faq-list p {
    padding: 0 14px 13px;
    font-size: 13.5px;
    line-height: 1.42;
  }

  .cta-band {
    isolation: isolate;
    padding: 50px 18px 42px;
    background:
      radial-gradient(circle at 20% 10%, rgba(241,215,154,.28), transparent 11rem),
      radial-gradient(circle at 82% 86%, rgba(157,92,99,.24), transparent 12rem),
      linear-gradient(150deg, #160f0c 0%, #2a1814 52%, #143939 100%);
  }

  .cta-band::before {
    opacity: .24;
    animation: ctaMobileGlow 9000ms ease-in-out infinite alternate;
  }

  .cta-band::after {
    right: -120px;
    bottom: -128px;
    width: 300px;
    height: 300px;
  }

  .cta-band__actions a {
    min-height: 48px;
  }
}

@media (max-width: 430px) {
  .site-nav nav a:not(.nav-cta):nth-child(n+3) {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-slide__image {
    inset: 54px -4px 224px;
  }

  .hero-slide__caption {
    bottom: 244px;
    width: calc(100vw - 28px);
  }

  .hero h1 {
    max-width: calc(100vw - 28px);
    font-size: 23px;
  }

  .hero__actions {
    margin-bottom: 62px;
  }

  .benefits-strip {
    grid-template-columns: 1fr 1fr;
  }

  .event-visual {
    min-height: 342px;
  }

  .event-story h3 {
    font-size: 29px;
  }

  .package-card {
    flex-basis: 84vw;
  }
}

@keyframes mobileHeroProductFloatSoft {
  from { transform: translate3d(0, 6px, 0) scale(1.01); }
  to { transform: translate3d(0, -6px, 0) scale(1.04); }
}

@keyframes packagePeek {
  0%, 100% { transform: translateX(0); }
  42% { transform: translateX(-18px); }
  72% { transform: translateX(8px); }
}

@keyframes ctaMobileGlow {
  from { transform: translate3d(-10px, 0, 0); opacity: .18; }
  to { transform: translate3d(10px, -8px, 0); opacity: .34; }
}

@keyframes mobileHeroProductFloat {
  from { transform: translate3d(0, 8px, 0) scale(1.18); }
  to { transform: translate3d(0, -8px, 0) scale(1.22); }
}

@keyframes mobileSparkOne {
  0%, 100% { opacity: .28; transform: translate3d(0, 0, 0) scale(.9); }
  50% { opacity: .72; transform: translate3d(8px, -12px, 0) scale(1.18); }
}

@keyframes mobileSparkTwo {
  0%, 100% { opacity: .22; transform: translate3d(0, 0, 0) scale(.86); }
  50% { opacity: .66; transform: translate3d(-10px, 10px, 0) scale(1.12); }
}

/* Sprint 10: correccion integral mobile beta. Desktop remains untouched. */
@media (max-width: 760px) {
  #inicio,
  #beneficios,
  #muestras,
  #paquetes,
  #proceso,
  #preguntas {
    scroll-margin-top: 86px;
  }

  .site-nav {
    position: absolute;
    inset: 10px 12px auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(22, 15, 12, .58);
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
    backdrop-filter: blur(18px);
  }

  .site-brand {
    min-width: 0;
    justify-content: flex-start;
  }

  .site-brand strong {
    overflow: hidden;
    font-size: 15px;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-brand span {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
  }

  .site-nav__toggle {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    color: #fff8ec;
    background: rgba(255,255,255,.1);
    cursor: pointer;
  }

  .site-nav__toggle span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .site-nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .site-nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    min-width: 0;
    max-height: calc(100svh - 92px);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    background: rgba(19, 15, 12, .68);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  }

  .site-nav.is-open nav {
    display: flex;
  }

  .site-nav nav a,
  .site-nav nav a:not(.nav-cta):nth-child(n+3),
  .site-nav nav a:not(.nav-cta):nth-child(n+4) {
    display: block;
    width: 100%;
    padding: 12px 13px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;
    color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.08);
    font-size: 13px;
    line-height: 1.1;
    text-align: left;
    white-space: normal;
  }

  .site-nav nav .nav-cta {
    color: var(--dark);
    background: #fff8ec;
    text-align: center;
  }

  .site-nav__toggle:focus-visible,
  .site-nav nav a:focus-visible {
    outline: 2px solid #fff8ec;
    outline-offset: 3px;
  }

  .hero {
    min-height: auto;
    display: grid;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 16px;
    padding: 78px 14px 24px;
    overflow: hidden;
  }

  .hero-showcase {
    position: relative;
    inset: auto;
    min-height: clamp(380px, 92vw, 520px);
    order: 1;
    margin: 0;
  }

  .hero__copy {
    order: 2;
    z-index: 4;
    display: grid;
    gap: 10px;
    min-height: 0;
    max-width: none;
    padding: 0;
  }

  .hero h1 {
    width: fit-content;
    max-width: 100%;
    padding: 8px 13px;
    font-size: clamp(24px, 7.2vw, 34px);
    line-height: 1.02;
  }

  .hero__copy span {
    max-width: none;
    margin: 0;
    font-size: 14px;
    line-height: 1.48;
  }

  .hero__actions {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin: 0;
  }

  .hero__actions a {
    min-height: 44px;
    padding: 11px 10px;
    font-size: 12px;
    text-align: center;
  }

  .hero-stage,
  .hero-slide {
    inset: 0;
  }

  .hero-slide__image {
    inset: 0;
    overflow: hidden;
  }

  .hero-slide__image img,
  .hero-slide.is-active .hero-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
  }

  .hero-slide.is-active .hero-slide__image img {
    animation: mobileHeroProductFloatClean 7600ms ease-in-out infinite alternate;
  }

  .hero-slide__caption {
    left: 12px;
    right: 12px;
    bottom: 76px;
    width: auto;
    padding: 9px 11px;
  }

  .hero-control {
    bottom: 20px;
    width: 40px;
    height: 40px;
  }

  .hero-dots {
    left: 58px;
    right: 58px;
    bottom: 23px;
    max-width: calc(100% - 116px);
  }

  .benefits-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px 14px;
  }

  .benefits-strip article,
  .benefits-strip article:first-child {
    grid-column: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    gap: 8px;
    padding: 15px 12px;
    text-align: center;
  }

  .benefits-strip i {
    grid-row: auto;
    width: 38px;
    height: 38px;
  }

  .benefits-strip b {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .benefits-strip span {
    max-width: 100%;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .section-heading h2,
  .event-explorer__intro h2,
  .quote-section .section-heading h2 {
    font-size: clamp(30px, 9.2vw, 42px);
    line-height: 1.02;
  }

  .event-explorer {
    padding-inline: 14px;
  }

  .event-explorer__intro {
    margin-bottom: 16px;
  }

  .event-visual {
    min-height: clamp(300px, 88vw, 430px);
  }

  .event-visual img {
    width: 100%;
    max-width: 100%;
    max-height: 88%;
    object-fit: contain;
  }

  .event-tabs {
    width: calc(100% + 28px);
    margin-inline: -14px;
    padding-inline: 14px;
    overflow-x: auto;
  }

  .event-tabs button {
    flex: 0 0 auto;
    min-width: 0;
    width: auto;
    max-width: 78vw;
    white-space: nowrap;
  }

  .event-story {
    height: auto;
    margin-top: 0;
    padding: 18px;
  }

  .event-story h3 {
    font-size: clamp(26px, 8.4vw, 34px);
    line-height: 1.04;
  }

  .event-story__actions {
    grid-template-columns: 1fr;
  }

  .package-carousel-shell {
    display: grid;
    width: calc(100% + 28px);
    margin-inline: -14px;
    overflow: visible;
  }

  .package-grid {
    width: 100%;
    margin-inline: 0;
    padding: 4px 14px 14px;
    overflow-x: auto;
    scroll-padding-inline: 14px;
  }

  .package-card {
    flex: 0 0 min(86vw, 360px);
    min-height: 0;
    height: auto;
    padding: 20px;
    transform: none;
  }

  .package-card.is-mobile-active {
    transform: none;
  }

  .package-card h3 {
    font-size: clamp(31px, 9vw, 38px);
  }

  .package-card ul {
    margin-bottom: 0;
  }

  .package-card li {
    font-size: 13.5px;
    line-height: 1.35;
  }

  .package-card strong {
    margin-top: 12px;
  }

  .package-card a {
    margin-top: 14px;
  }

  .package-carousel-control {
    position: static;
    z-index: 1;
    transform: none;
    align-self: center;
    justify-self: center;
    margin-top: 2px;
  }

  .package-carousel-control--prev {
    grid-row: 2;
    grid-column: 1;
    margin-right: 56px;
  }

  .package-carousel-control--next {
    grid-row: 2;
    grid-column: 1;
    margin-left: 56px;
  }

  .package-carousel-dots {
    margin-top: 8px;
  }
}

@media (max-width: 430px) {
  .hero {
    padding-top: 76px;
  }

  .hero-showcase {
    min-height: clamp(340px, 92vw, 410px);
  }

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

  .hero-slide__caption {
    bottom: 72px;
  }

  .benefits-strip {
    grid-template-columns: 1fr;
  }

  .package-card {
    flex-basis: calc(100vw - 42px);
  }
}

@media (max-width: 940px) and (orientation: landscape) {
  .site-nav {
    position: absolute;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.1fr);
    grid-template-rows: auto;
    gap: 18px;
    padding: 76px 18px 30px;
  }

  .hero-showcase,
  .hero__copy {
    order: initial;
  }

  .hero-showcase {
    min-height: 320px;
  }

  .hero__copy {
    align-content: center;
  }

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

  .hero-slide__caption {
    bottom: 68px;
  }

  .benefits-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@keyframes mobileHeroProductFloatClean {
  from { transform: translate3d(0, 2px, 0) scale(1); }
  to { transform: translate3d(0, -4px, 0) scale(1.015); }
}

/* Sprint 10.1: ajuste exclusivo para tableta vertical. */
@media (min-width: 700px) and (max-width: 900px) and (orientation: portrait) {
  #inicio,
  #beneficios,
  #muestras,
  #paquetes,
  #proceso,
  #preguntas {
    scroll-margin-top: 104px;
  }

  .site-nav {
    position: fixed;
    inset: 12px 20px auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    color: white;
    background: rgba(22, 15, 12, .62);
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
    backdrop-filter: blur(18px);
  }

  .site-brand {
    min-width: 0;
    justify-content: flex-start;
  }

  .site-brand span {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .site-brand strong {
    overflow: hidden;
    font-size: 17px;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav__toggle {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 15px;
    color: #fff8ec;
    background: rgba(255,255,255,.1);
    cursor: pointer;
  }

  .site-nav__toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .site-nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .site-nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    min-width: 0;
    max-height: calc(100svh - 112px);
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 17px;
    background: rgba(19, 15, 12, .72);
  }

  .site-nav.is-open nav {
    display: flex;
  }

  .site-nav nav a,
  .site-nav nav a:not(.nav-cta):nth-child(n+3),
  .site-nav nav a:not(.nav-cta):nth-child(n+4) {
    display: block;
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.08);
    font-size: 14px;
    line-height: 1.1;
    text-align: left;
    white-space: normal;
  }

  .site-nav nav .nav-cta {
    color: var(--dark);
    background: #fff8ec;
    text-align: center;
  }

  .hero {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 22px;
    align-items: start;
    padding: 104px 34px 44px;
  }

  .hero-showcase {
    position: relative;
    inset: auto;
    min-height: clamp(510px, 68vw, 620px);
    order: 1;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
  }

  .hero-stage,
  .hero-slide {
    inset: 0;
  }

  .hero-slide__image {
    inset: 0;
  }

  .hero-slide__image img,
  .hero-slide.is-active .hero-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
  }

  .hero__copy {
    order: 2;
    z-index: 4;
    display: grid;
    gap: 14px;
    max-width: min(620px, 100%);
    min-height: 0;
    padding: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(48px, 8.4vw, 68px);
    line-height: .95;
  }

  .hero__copy span {
    max-width: 620px;
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero__actions {
    width: min(100%, 520px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 4px 0 0;
  }

  .hero__actions a {
    min-height: 48px;
    text-align: center;
  }

  .hero-slide__caption {
    left: 18px;
    right: 18px;
    bottom: 72px;
    width: auto;
    max-width: 440px;
  }

  .hero-control {
    bottom: 18px;
    top: auto;
    transform: none;
  }

  .hero-control:hover,
  .hero-control:focus-visible {
    transform: scale(1.05);
  }

  .hero-dots {
    left: 70px;
    right: 70px;
    bottom: 31px;
    transform: none;
    justify-content: center;
  }

  .section {
    padding: 74px 34px;
  }

  .section-heading,
  .event-explorer__intro {
    max-width: 680px;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .event-explorer__intro h2,
  .quote-section .section-heading h2 {
    font-size: clamp(40px, 6.6vw, 54px);
    line-height: 1;
  }

  .event-explorer {
    padding-inline: 34px;
  }

  .event-explorer__layout {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 22px;
    align-items: stretch;
  }

  .event-explorer__panel {
    min-width: 0;
    gap: 14px;
  }

  .event-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-padding-inline: 4px;
    scrollbar-width: none;
  }

  .event-tabs::-webkit-scrollbar {
    display: none;
  }

  .event-tabs button {
    flex: 0 0 auto;
    width: auto;
    max-width: 220px;
    white-space: nowrap;
  }

  .event-story {
    height: auto;
    min-height: 0;
    padding: 20px;
  }

  .event-story h3 {
    font-size: clamp(30px, 4.4vw, 38px);
  }

  .event-story__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .event-story__actions a {
    text-align: center;
  }

  .event-visual {
    min-height: 430px;
  }

  .event-visual img {
    width: 96%;
    max-height: 88%;
  }

  .mobile-carousel-hint,
  .package-carousel-hint {
    display: flex;
    justify-content: center;
    margin: 0 0 14px;
  }

  .mobile-carousel-hint span {
    border: 1px solid rgba(47,111,112,.16);
    border-radius: 999px;
    padding: 8px 13px;
    color: var(--teal);
    background: rgba(255,253,248,.76);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .package-carousel-shell {
    display: grid;
    width: 100%;
    margin-inline: 0;
    overflow: visible;
  }

  .package-grid {
    display: flex;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 34px 18px;
    scroll-padding-inline: 34px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .package-grid::-webkit-scrollbar {
    display: none;
  }

  .package-card {
    flex: 0 0 100%;
    min-height: 0;
    height: auto;
    scroll-snap-align: center;
    padding: 26px;
    transform: none;
  }

  .package-card:hover {
    transform: none;
  }

  .package-card h3 {
    font-size: clamp(40px, 6vw, 50px);
    overflow-wrap: normal;
  }

  .package-card li {
    font-size: 15px;
    line-height: 1.42;
  }

  .package-card strong {
    margin-top: 14px;
  }

  .package-carousel-control {
    position: static;
    z-index: 1;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    align-self: center;
    justify-self: center;
    margin-top: 4px;
    border: 1px solid rgba(47,111,112,.18);
    border-radius: 999px;
    color: var(--dark);
    background: rgba(255,253,248,.88);
    box-shadow: 0 14px 26px rgba(44,31,23,.12);
    font-size: 28px;
    transform: none;
  }

  .package-carousel-control--prev {
    grid-row: 2;
    grid-column: 1;
    margin-right: 64px;
  }

  .package-carousel-control--next {
    grid-row: 2;
    grid-column: 1;
    margin-left: 64px;
  }

  .package-carousel-dots {
    display: flex;
    margin: 10px auto 22px;
  }

  .process-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .process-visual-grid article {
    min-height: 0;
    padding-bottom: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefits-strip article,
  .benefits-strip svg,
  .event-tabs button,
  .event-story,
  .event-visual__ambient,
  .event-visual img,
  .process-visual-grid::before,
  .process-visual-grid article,
  .process-visual-grid i,
  .process-assurance a,
  .package-card,
  .package-card a,
  .package-recommendation a,
  .faq-list details,
  .faq-list summary::after,
  .cta-band.has-motion > *,
  .cta-band__actions a,
  .quote-wizard__bar i,
  .quote-step,
  .quote-options span,
  .quote-wizard__actions button,
  .site-footer a {
    animation: none !important;
    transition: none !important;
  }

  .hero-slide.is-active .hero-slide__image img,
  .hero-slide__image span {
    animation: none !important;
  }

  .benefits-strip article,
  .process-visual-grid article,
  .cta-band.has-motion > * {
    opacity: 1;
    transform: none;
  }

  .process-visual-grid::before {
    opacity: 1;
    transform: none;
  }
}
