/* Palmetto Prestige Services - PREMIUM visual layer (2026-09-26)
 * Edd's bar: cinematic, big-company, visual journey. This file sits on top of
 * style.css. Brand colors are accents; imagery does the heavy lifting.
 * No em dashes or en dashes anywhere in this file's comments or content.
 */
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@600;700;800&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --font-display: "Inter Tight", "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ink-2: #101414;
  --gold-2: #D9A93B;
  --paper: #FBF8F1;
}

body { font-family: var(--font-body); }

/* ---------- Cinematic hero ---------- */
.hero-cine {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: #0d1514;
}
.hero-cine .hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.09) translateY(-1.5%); }
}
/* Cinematic looping video behind the headline. The .hero-bg JPG stays
 * underneath as the poster and the full fallback: if the video fails or
 * the connection is slow, the hero is never blank. */
.hero-cine .hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  background: #0d1514;
}
/* Stronger legibility gradient when motion is behind the type. */
.hero-cine.has-video::before {
  background: linear-gradient(180deg, rgba(6,16,15,0.44) 0%, rgba(6,16,15,0.12) 38%, rgba(6,16,15,0.88) 100%);
}
.hero-cine::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(6,16,15,0.30) 0%, rgba(6,16,15,0.05) 35%, rgba(6,16,15,0.80) 100%);
}
.hero-cine .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px 64px;
  width: 100%;
}
/* Entrance: staggered rise on load (body.loaded set by app.js). */
.hero-cine .kicker,
.hero-cine h1,
.hero-cine .lede,
.hero-cine .hero-cta-row,
.hero-cine .trust-chips,
.hero-cine .trip-glass {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
body.loaded .hero-cine .kicker { opacity: 1; transform: none; transition-delay: 0.10s; }
body.loaded .hero-cine h1 { opacity: 1; transform: none; transition-delay: 0.22s; }
body.loaded .hero-cine .lede { opacity: 1; transform: none; transition-delay: 0.36s; }
body.loaded .hero-cine .hero-cta-row { opacity: 1; transform: none; transition-delay: 0.48s; }
body.loaded .hero-cine .trust-chips,
body.loaded .hero-cine .trip-glass { opacity: 1; transform: none; transition-delay: 0.60s; }
.hero-cine .kicker {
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.22em;
}
.hero-cine h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(44px, 8.5vw, 96px);
  color: #fff;
  margin: 10px 0 14px;
  max-width: 14ch;
  text-shadow: 0 3px 24px rgba(0,0,0,0.45);
}
.hero-cine .lede {
  color: rgba(255,255,255,0.92);
  font-size: clamp(16px, 2.4vw, 20px);
  max-width: 46ch;
  margin: 0 0 26px;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.btn-xl {
  padding: 18px 34px;
  font-size: 18px;
  border-radius: 999px;
  font-weight: 800;
}
.btn-gold-solid {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #241A08;
  border: none;
  box-shadow: 0 10px 30px rgba(194,155,60,0.35);
}
.btn-gold-solid:hover { background: var(--gold-dark); color: #fff; }
.btn-ghost-light {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); color: #fff; }
.trust-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-chips span {
  font-size: 13px; font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* Slim transport hero on index when home_mode=transport */
.hero-cine.slim { min-height: 70vh; }

/* ---------- Section scaffolding ---------- */
.container, .wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section.alt { background: var(--bg); }
.estimator { padding: 56px 0; }
.book-inner { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.book-inner .fld { margin: 14px 0; }
.book-inner .fld label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.book-inner .fld input, .book-inner .fld textarea {
  width: 100%; padding: 14px; font-size: 16px;
  border: 2px solid var(--line); border-radius: 14px; background: #fff;
  font-family: var(--font-body);
}
.review-box { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 8px 18px; margin: 16px 0; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.confirm-check {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--teal); color: #fff; font-size: 36px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.ref-line { font-size: 15px; color: var(--muted); }
.section-pad { padding: 72px 0; }
.container-x { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.sec-kicker {
  font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 10px;
}
.sec-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
  color: var(--ink-2);
  margin: 0 0 12px;
  max-width: 22ch;
}
.sec-sub { color: var(--muted); font-size: 17px; max-width: 60ch; margin: 0 0 30px; }

/* ---------- How it works: numbered steps ---------- */
.steps3 { display: grid; gap: 18px; margin-top: 8px; }
.step3 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.step3 .num {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 700;
  color: var(--gold);
  opacity: 0.9;
  line-height: 1;
}
.step3 h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; font-size: 22px; margin: 10px 0 6px; color: var(--ink-2); }
.step3 p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Image service cards ---------- */
.img-cards { display: grid; gap: 18px; }
.img-card {
  border-radius: 22px; overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
  padding: 0;
  width: 100%;
  font-family: var(--font-body);
}
.img-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(13,74,74,0.18); }
.img-card .ph { height: 190px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.img-card .ph .ph-in { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1); }
.img-card:hover .ph .ph-in { transform: scale(1.06); }
.img-card .ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(6,20,19,0.55) 100%);
}
.img-card .bd { padding: 18px 20px 20px; }
.img-card h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; font-size: 23px; margin: 0 0 4px; color: var(--ink-2); }
.img-card .from { font-size: 15px; color: var(--muted); margin-bottom: 12px; }
.img-card .from b { color: var(--teal); font-size: 20px; }
.img-card .go { font-weight: 800; color: var(--gold-dark); font-size: 15px; }

/* ---------- Wizard: neutral-dominant, brand colors as accents ---------- */
.wizard-sec {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.wizard-sec .sec-title { color: var(--ink-2); }
.wizard-sec .sec-sub { color: var(--muted); }
.wizard-sec .sec-kicker { color: var(--gold-dark); }
.wizard {
  background: #fff;
  color: var(--ink);
  border-radius: 26px;
  padding: 30px 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  max-width: 760px;
  margin: 0 auto;
}
.wz-progress { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.wz-dot {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  background: #EFE9DB; color: var(--muted);
  flex: none;
}
.wz-dot.done { background: var(--teal); color: #fff; }
.wz-dot.now { background: var(--gold); color: #241A08; box-shadow: 0 0 0 5px rgba(194,155,60,0.25); }
.wz-bar { flex: 1; height: 4px; background: #EFE9DB; border-radius: 2px; overflow: hidden; }
.wz-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--teal), var(--gold)); border-radius: 2px; transition: width 0.3s ease; }
.wz-q {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 4.6vw, 36px);
  color: var(--ink-2);
  margin: 0 0 6px;
  line-height: 1.1;
}
/* Wizard step entrance: staggered rise each time a step renders. */
#wz-body.wz-enter > * { animation: wzIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
#wz-body.wz-enter > *:nth-child(2) { animation-delay: 0.06s; }
#wz-body.wz-enter > *:nth-child(3) { animation-delay: 0.12s; }
#wz-body.wz-enter > *:nth-child(4) { animation-delay: 0.18s; }
@keyframes wzIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.wz-hint { color: var(--muted); font-size: 14px; margin: 0 0 18px; }
.wz-opts { display: grid; gap: 12px; }
.opt-card {
  display: flex; align-items: center; gap: 14px;
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.opt-card:hover { transform: translateY(-1px); }
.opt-card.selected { border-color: var(--gold); background: #FDF6E3; box-shadow: 0 6px 18px rgba(194,155,60,0.18); }
.opt-card .thumb {
  width: 64px; height: 64px; border-radius: 12px; flex: none;
  background-size: cover; background-position: center;
  background-color: var(--teal-light);
}
.opt-card .tt { font-weight: 800; font-size: 16px; color: var(--ink-2); display: block; }
.opt-card .dd { font-size: 13px; color: var(--muted); display: block; }
.opt-card .pp { margin-left: auto; font-weight: 800; color: var(--teal); font-size: 18px; flex: none; }
.wz-nav { display: flex; gap: 12px; margin-top: 24px; }
.wz-nav .btn { flex: 1; border-radius: 999px; }
.wz-back {
  background: transparent; color: var(--muted);
  border: 2px solid var(--line); font-weight: 700;
}
.wz-err { color: var(--red); font-size: 14px; font-weight: 600; margin-top: 10px; min-height: 20px; }

/* Big price moment */
.price-hero { text-align: center; padding: 10px 0 6px; }
.price-hero .lbl { font-size: 13px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.price-hero .amt {
  font-family: var(--font-display);
  font-size: clamp(64px, 16vw, 120px);
  font-weight: 700; color: var(--teal);
  line-height: 1; margin: 6px 0;
}
.price-hero .sub { color: var(--muted); font-size: 15px; max-width: 44ch; margin: 0 auto 4px; }
.deposit-line {
  display: inline-block; margin-top: 10px;
  background: var(--teal-light); color: var(--teal);
  font-weight: 700; font-size: 14px;
  padding: 8px 16px; border-radius: 999px;
}

/* Photo dropzone */
.dropzone {
  border: 2.5px dashed #C9BFA8;
  border-radius: 18px;
  background: #FDFBF5;
  padding: 34px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  display: block;
}
.dropzone:hover, .dropzone.over { border-color: var(--gold); background: #FDF6E3; }
.dropzone .dz-icon { font-size: 40px; }
.dropzone .dz-t { font-weight: 800; font-size: 17px; color: var(--ink-2); margin-top: 8px; }
.dropzone .dz-s { font-size: 13px; color: var(--muted); margin-top: 4px; }
.dropzone input[type="file"] { display: none; }
.wz-previews { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.wz-previews img {
  width: 84px; height: 84px; object-fit: cover; border-radius: 12px;
  border: 2px solid var(--gold);
}

/* Steppers, sliders, chips */
.stepper { display: flex; align-items: center; gap: 18px; justify-content: center; padding: 12px 0; }
.stepper button {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--teal); background: #fff; color: var(--teal);
  font-size: 26px; font-weight: 800; cursor: pointer;
}
.stepper .val { font-family: var(--font-display); font-size: 44px; color: var(--ink-2); min-width: 80px; text-align: center; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  border: 2px solid var(--line); background: #fff; border-radius: 999px;
  padding: 12px 18px; font-weight: 700; font-size: 15px; cursor: pointer; color: var(--ink);
}
.chip.selected { border-color: var(--teal); background: var(--teal); color: #fff; }
.chip .plus { color: var(--gold-dark); font-weight: 800; }
.chip.selected .plus { color: var(--gold-2); }
.miles-wrap { padding: 8px 0; }
.miles-out { font-family: var(--font-display); font-size: 40px; color: var(--teal); text-align: center; }
input[type="range"].miles {
  width: 100%; accent-color: var(--gold);
  height: 34px;
}
.tgl-row { display: flex; gap: 10px; }
.tgl {
  flex: 1; border: 2px solid var(--line); background: #fff; border-radius: 14px;
  padding: 14px; font-weight: 800; font-size: 15px; cursor: pointer; color: var(--ink);
}
.tgl.selected { border-color: var(--gold); background: #FDF6E3; color: var(--ink-2); }
.fld-x { margin: 14px 0; }
.fld-x label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--ink-2); }
.fld-x input[type="text"], .fld-x input[type="tel"], .fld-x input[type="datetime-local"], .fld-x textarea {
  width: 100%; padding: 14px; font-size: 16px;
  border: 2px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink);
  font-family: var(--font-body);
}
.fld-x input:focus, .fld-x textarea:focus { border-color: var(--gold); outline: none; }

/* Trust band */
.trust-band { background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.trust-item {
  border: 1px solid var(--line); border-radius: 18px; padding: 20px;
  background: var(--bg);
}
.trust-item .ti { font-size: 30px; }
.trust-item h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; font-size: 18px; margin: 8px 0 4px; color: var(--ink-2); }
.trust-item p { margin: 0; font-size: 14px; color: var(--muted); }

/* CTA banner */
.cta-banner {
  position: relative;
  border-radius: 28px; overflow: hidden;
  background-size: cover; background-position: center;
  padding: 64px 28px;
  text-align: center; color: #fff;
  margin: 0 16px;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,20,19,0.55), rgba(6,20,19,0.85));
}
.cta-banner > div { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(34px, 6vw, 60px); color: #fff; margin: 0 0 10px; line-height: 1.04;
}
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0 0 24px; font-size: 17px; }

/* Next trip glass card (transport hero) */
.trip-glass {
  background: rgba(255,255,255,0.96);
  border-radius: 20px;
  padding: 22px;
  color: var(--ink);
  margin: 26px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  max-width: 560px;
}
.trip-glass h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 6px; color: var(--ink-2); font-size: 20px; }
.trip-glass .route-line { font-size: 19px; font-weight: 800; color: var(--teal); }
.trip-glass .meta-line { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 8px; font-size: 14px; color: var(--muted); }
.trip-glass .meta-line b { color: var(--teal); }

/* Path cards (transport) */
.path-cards { display: grid; gap: 18px; }

/* Estimator tabs: pill style */
.tabs.pills .tab { border-radius: 999px; }

/* Booking review rows */
.rev-row {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 12px 4px; border-bottom: 1px solid var(--line); font-size: 15px;
}
.rev-row b { color: var(--ink-2); }

/* Footer polish */
#site-footer .footer-inner { padding: 36px 20px; }

/* Reveal on scroll: hidden only when JS is running (html.js set by app.js).
 * Stagger with style="--rv-d:.12s" on siblings. */
.rv { opacity: 1; }
html.js .rv { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--rv-d, 0s); }
html.js .rv.in { opacity: 1; transform: none; }

@media (min-width: 720px) {
  .steps3 { grid-template-columns: repeat(3, 1fr); }
  .img-cards { grid-template-columns: repeat(2, 1fr); }
  .journey-paths { grid-template-columns: repeat(3, 1fr); }
  .path-cards { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .wz-opts.cols2 { grid-template-columns: repeat(2, 1fr); }
  .wizard { padding: 44px 48px; }
  .cta-banner { margin: 0 auto; max-width: 1080px; }
}

@media (max-width: 719px) {
  .hero-cine { min-height: 92vh; }
  .hero-cine .hero-bg { background-position: 62% 30%; }
  .hero-cta-row .btn-xl { flex: 1 1 100%; }
  .section-pad { padding: 52px 0; }
}

/* ---------- Journey entry: pick your path ---------- */
.journey-paths { display: grid; gap: 18px; margin-top: 6px; }
.journey-paths .img-card .ph { height: 170px; }
.journey-paths .go { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Slim tool notice (replaces "coming soon" banners) ---------- */
.tool-notice {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.tool-notice .notice-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: var(--ink);
}
.tool-notice .notice-dot {
  flex: none; width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(194,155,60,0.18);
}
.tool-notice b { color: var(--teal); }

/* ---------- Transport estimator polish ---------- */
.est-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 26px 22px;
  margin-top: 24px;
}
.est-panel-img { height: 170px; border-radius: 16px; background-size: cover; background-position: center; margin-bottom: 18px; }
.planner-grid { display: grid; gap: 4px; }
.fld { margin: 12px 0; display: block; }
.fld > span { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--ink-2); }
.fld input[type="text"], .fld input[type="number"], .fld input[type="tel"],
.fld input[type="date"], .fld input[type="datetime-local"], .fld select, .fld textarea {
  width: 100%; padding: 13px 14px; font-size: 16px;
  border: 2px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink);
  font-family: var(--font-body);
}
.fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--gold); outline: none; }
.fld small { display: block; font-size: 13px; color: var(--muted); margin-top: 5px; }
.check { display: flex; align-items: center; gap: 10px; margin: 8px 0; font-size: 15px; cursor: pointer; }
.check input { width: 19px; height: 19px; accent-color: var(--teal); }

/* ---------- Reduced motion: the journey stands still, gracefully ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero-cine .hero-bg { animation: none; }
  .hero-cine .hero-video { display: none; } /* poster JPG shows instead */
  .hero-cine .kicker, .hero-cine h1, .hero-cine .lede,
  .hero-cine .hero-cta-row, .hero-cine .trust-chips, .hero-cine .trip-glass {
    opacity: 1; transform: none; transition: none;
  }
  html.js .rv { opacity: 1; transform: none; transition: none; }
  #wz-body.wz-enter > * { animation: none; }
  .img-card, .img-card .ph .ph-in, .opt-card, .btn { transition: none; }
}

/* Anchored sections clear the sticky header */
section[id], div[id].wizard-wrap { scroll-margin-top: 96px; }

/* ---------- Hero slider (transport page): one slide per story ---------- */
.hero-slider { display: block; min-height: 96vh; }
.hero-slider .hero-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.9s ease, visibility 0s linear 0.9s;
}
.hero-slider .hero-slide.active {
  opacity: 1; visibility: visible;
  transition: opacity 0.9s ease;
}
.hero-slider .hero-slide .hero-bg { animation: kenburns 26s ease-in-out infinite alternate; }
.hero-slider .hero-slide-copy {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding-bottom: 380px;
}
.hero-slider .hero-static {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  max-width: 1080px; margin: 0 auto; padding: 0 20px 44px; width: 100%;
}
.hero-slider .hero-dots {
  position: absolute; z-index: 4; top: 84px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 10px;
}
.hero-dot {
  width: 34px; height: 5px; border-radius: 3px; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.32); padding: 0;
  transition: background 0.3s ease;
}
.hero-dot.active { background: var(--gold); }
@media (max-width: 640px) {
  .hero-slider .hero-slide-copy { padding-bottom: 360px; }
  .hero-slider { min-height: 100svh; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider .hero-slide { transition: none; }
}
