:root {
  --header-space: 112px;
  --container: 1180px;
  --px: clamp(20px, 5vw, 72px);
  --py: clamp(60px, 8vw, 112px);
  --ink: #172033;
  --ink-2: #25304a;
  --muted: #657086;
  --line: #e4e7ef;
  --paper: #ffffff;
  --soft: #f7f8fc;
  --cream: #fff8ea;
  --rose: #e4416f;
  --coral: #f06d46;
  --sun: #f7b731;
  --blue: #2563eb;
  --sky: #16a4d8;
  --green: #10a978;
  --violet: #6757d9;
  --radius: 8px;
  --shadow: 0 22px 54px rgba(23, 32, 51, 0.16);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff 0%, #fff8ea 34%, #f7f8fc 100%);
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 10000;
  padding: 10px 16px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

[data-motion] {
  will-change: transform, opacity;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 3px;
  background: transparent;
}

.scroll-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--sun), var(--sky), var(--green));
}

.magic-header {
  position: fixed;
  top: 12px;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 0 var(--px);
  pointer-events: none;
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  width: min(100%, var(--container));
  min-height: 74px;
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(12, 17, 32, 0.48), rgba(12, 17, 32, 0.28));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: saturate(1.12) blur(22px);
  pointer-events: auto;
  transition: background 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.magic-header.is-scrolled .header-inner {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(12, 17, 32, 0.62);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: auto;
  height: 50px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.42));
}

.brand-copy {
  display: none;
  gap: 1px;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.header-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.34);
  white-space: nowrap;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.header-menu a:hover,
.header-menu a.is-active {
  color: #ffffff;
}

.header-menu a:hover {
  transform: translateY(-1px);
}

.header-menu a::after {
  position: absolute;
  right: 11px;
  bottom: 3px;
  left: 11px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--sun));
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.header-menu a:hover::after,
.header-menu a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions,
.header-contact {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 10px;
  justify-content: flex-end;
}

.header-contact {
  gap: 8px;
}

.header-call {
  display: grid;
  min-height: 46px;
  padding: 4px 8px;
  border: 0;
  background: transparent;
  line-height: 1.08;
}

.header-call span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 850;
}

.header-call strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.34);
  white-space: nowrap;
}

.header-mail {
  display: none;
  max-width: 160px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-location,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.header-location,
.btn-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--rose), var(--coral) 54%, var(--sun));
  box-shadow: 0 16px 34px rgba(228, 65, 111, 0.28);
}

.btn:hover,
.header-location:hover {
  transform: translateY(-2px);
}

.magic-header a:focus-visible,
.header-toggle:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(247, 183, 49, 0.62);
  outline-offset: 3px;
}

.btn-glass {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 14px 28px rgba(23, 32, 51, 0.12);
}

.btn-soft,
.btn-line {
  color: #b72152;
  background: #fff3f7;
  border: 1px solid rgba(228, 65, 111, 0.24);
}

.btn-dark {
  color: var(--paper);
  background: var(--ink);
}

.btn-light {
  color: #b72152;
  background: var(--paper);
}

.btn-outline-light {
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.btn-small {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 13px;
}

.header-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.header-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

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

.header-toggle[aria-expanded="true"] .header-toggle__line:nth-child(2) {
  opacity: 0;
}

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

.section-pad {
  padding: var(--py) var(--px);
}

.section-head,
.routes-intro {
  display: grid;
  gap: 12px;
  width: min(100%, var(--container));
  margin: 0 auto clamp(28px, 5vw, 56px);
}

.section-head.narrow {
  width: min(760px, calc(100% - var(--px) * 2));
  text-align: center;
}

.section-kicker,
.hero-kicker {
  color: #b72152;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Baloo 2", "Outfit", system-ui, sans-serif;
  letter-spacing: 0;
}

.section-head h1,
.section-head h2,
.routes-intro h2,
.cta-copy h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
}

.section-head p,
.routes-intro p,
.cta-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
}

.map-hero {
  position: relative;
  min-height: min(760px, calc(88svh - 12px));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-space) + 22px) var(--px) 28px;
  color: var(--paper);
  background: #101421;
}

.map-hero__media,
.map-hero__media img,
.map-hero__wash,
.map-hero__route {
  position: absolute;
  inset: 0;
}

.map-hero__media {
  z-index: -4;
  overflow: hidden;
}

.map-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.02);
}

.map-hero__wash {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(14, 21, 35, 0.9) 0%, rgba(14, 21, 35, 0.54) 46%, rgba(14, 21, 35, 0.2) 100%),
    radial-gradient(circle at 78% 22%, rgba(247, 183, 49, 0.32), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(228, 65, 111, 0.34), transparent 30%);
}

.map-hero__route {
  z-index: -1;
  width: min(74vw, 980px);
  height: auto;
  margin: auto 2vw 9vh auto;
  overflow: visible;
  opacity: 0.9;
}

.map-hero__route path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.76);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 22 22;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.map-hero__stage {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.54fr);
  gap: clamp(22px, 4.6vw, 64px);
  align-items: end;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.map-hero__copy {
  max-width: 640px;
}

.map-hero h1 {
  max-width: 640px;
  margin-top: 12px;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 0.96;
}

.map-hero__lead {
  max-width: 560px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.35vw, 20px);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.map-hero__pins {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.map-hero__pins a,
.map-stop,
.listing-card,
.package-card,
.branch-card,
.branch-tools,
.detail-aside,
.rules-list p {
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 0 rgba(23, 32, 51, 0.04);
}

.map-hero__pins a {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px 12px;
  padding: 14px;
  color: var(--paper);
  background: rgba(18, 25, 42, 0.56);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.map-hero__pins a::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun), var(--rose));
  opacity: 0.34;
}

.map-hero__pins span {
  position: relative;
  z-index: 1;
  color: #fff4bd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.map-hero__pins strong {
  font-size: 18px;
  line-height: 1.05;
}

.map-hero__pins small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.map-hero__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(100%, var(--container));
  margin: clamp(24px, 5vw, 44px) auto 0;
}

.map-hero__legend span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.map-hero__legend strong {
  color: #fff4bd;
}

.gsap-hero {
  position: relative;
  min-height: min(820px, 94svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-space) + 44px) var(--px) 48px;
  color: var(--paper);
  background: #080d1a;
}

.gsap-hero__media,
.gsap-hero__media img,
.gsap-hero__shade,
.gsap-hero__route,
.gsap-hero__orbits {
  position: absolute;
  inset: 0;
}

.gsap-hero__media {
  z-index: -5;
  overflow: hidden;
}

.gsap-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.14) contrast(1.04);
  transform-origin: center;
}

.gsap-hero__shade {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(8, 13, 26, 0.88), rgba(8, 13, 26, 0.56) 46%, rgba(8, 13, 26, 0.16)),
    linear-gradient(0deg, rgba(8, 13, 26, 0.68), transparent 48%),
    radial-gradient(circle at 70% 26%, rgba(247, 183, 49, 0.34), transparent 24%),
    radial-gradient(circle at 90% 72%, rgba(228, 65, 111, 0.32), transparent 28%);
}

.gsap-hero__route {
  z-index: -2;
  width: min(86vw, 1080px);
  height: auto;
  margin: auto 2vw 8vh auto;
  overflow: visible;
}

.gsap-hero__route path {
  fill: none;
  stroke: rgba(255, 244, 189, 0.9);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 16px rgba(247, 183, 49, 0.52));
}

.gsap-hero__orbits {
  z-index: -1;
  pointer-events: none;
}

.gsap-hero__orbits span {
  position: absolute;
  width: clamp(140px, 18vw, 260px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.08), 0 0 26px rgba(22, 164, 216, 0.18);
}

.gsap-hero__orbits span:nth-child(1) {
  top: 18%;
  right: 21%;
}

.gsap-hero__orbits span:nth-child(2) {
  right: 6%;
  bottom: 18%;
  width: clamp(110px, 15vw, 210px);
}

.gsap-hero__orbits span:nth-child(3) {
  bottom: 10%;
  left: 34%;
  width: clamp(90px, 12vw, 170px);
}

.gsap-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.48fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.gsap-hero__copy {
  max-width: 700px;
}

.gsap-hero h1 {
  max-width: 720px;
  margin-top: 12px;
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: 0.94;
}

.gsap-hero p {
  max-width: 570px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.45vw, 21px);
}

.gsap-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.gsap-hero__deck {
  display: grid;
  gap: 10px;
}

.gsap-hero__deck a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(12, 18, 34, 0.58);
  box-shadow: 0 18px 40px rgba(8, 13, 26, 0.18);
  backdrop-filter: blur(18px);
}

.gsap-hero__deck span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff4bd;
  background: linear-gradient(135deg, rgba(228, 65, 111, 0.82), rgba(247, 183, 49, 0.72));
  font-size: 12px;
  font-weight: 950;
}

.gsap-hero__deck strong {
  font-family: "Baloo 2", "Outfit", system-ui, sans-serif;
  font-size: 22px;
  line-height: 1;
}

.gsap-hero__deck small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.alt-flow {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.56fr) auto;
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  padding: clamp(42px, 6vw, 78px) var(--px);
  background: #fffdf7;
}

.alt-flow > * {
  min-width: 0;
}

.alt-flow h2 {
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
}

.alt-flow p {
  color: var(--muted);
  font-size: 18px;
}

.route-map {
  position: relative;
  padding: var(--py) var(--px);
  background:
    radial-gradient(circle at 12% 12%, rgba(247, 183, 49, 0.22), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(22, 164, 216, 0.16), transparent 24%),
    #fffdf7;
}

.route-map__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.route-map__track::before {
  content: "";
  position: absolute;
  top: 54px;
  right: 8%;
  left: 8%;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--rose), var(--sun), var(--sky), var(--green));
  opacity: 0.32;
}

.map-stop {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 420px;
  overflow: hidden;
  color: var(--ink);
}

.map-stop > span {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 24px 24px 0;
  border-radius: 999px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--rose), var(--sun));
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(228, 65, 111, 0.24);
}

.map-stop div {
  padding: 22px 24px 18px;
}

.map-stop h3 {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
}

.map-stop p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.map-stop img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-film {
  padding: var(--py) var(--px);
  color: var(--paper);
  background: #111827;
}

.home-film__sticky {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.home-film__intro {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

.home-film__intro .section-kicker {
  color: #ffe08a;
}

.home-film__intro h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
}

.film-stage {
  display: grid;
  gap: 18px;
}

.film-frame {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.64fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: end;
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.film-frame img {
  width: 100%;
  height: min(54vh, 520px);
  object-fit: cover;
  border-radius: var(--radius);
}

.film-frame span {
  color: #ffe08a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.film-frame h3 {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
}

.film-frame p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.family-proof,
.branch-callout,
.branch-teaser,
.tech-story,
.detail-content,
.branch-finder-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  width: min(100%, calc(var(--container) + var(--px) * 2));
  margin: 0 auto;
  padding: var(--py) var(--px);
}

.family-proof__media,
.media-block,
.branch-finder-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.family-proof__media img,
.media-block img,
.branch-finder-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.family-proof__content h2,
.branch-callout h2,
.copy-block h2,
.branch-finder-copy h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
}

.family-proof__content p,
.branch-callout p,
.copy-block p,
.branch-finder-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.proof-lines {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.proof-lines p {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.proof-lines strong {
  color: var(--ink);
}

.proof-lines span {
  color: var(--muted);
}

.branch-callout {
  grid-template-columns: 1fr 0.64fr auto;
  background: #fff;
}

.subhero {
  position: relative;
  min-height: 58svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-space) + 48px) var(--px) 72px;
  color: var(--paper);
  background: var(--ink);
}

.subhero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04);
}

.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 21, 35, 0.88), rgba(14, 21, 35, 0.48), rgba(14, 21, 35, 0.12)),
    radial-gradient(circle at 78% 22%, rgba(247, 183, 49, 0.22), transparent 24%);
}

.subhero > div {
  width: min(760px, 100%);
}

.subhero h1 {
  margin-top: 12px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.98;
}

.subhero p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.7vw, 22px);
}

.listing-section,
.package-section,
.branch-directory,
.rules-section {
  padding: var(--py) var(--px);
  background: var(--soft);
}

.listing-grid,
.package-grid,
.branch-grid {
  display: grid;
  gap: 18px;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.listing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.listing-card {
  display: grid;
  overflow: hidden;
  color: var(--ink);
}

.listing-card img,
.branch-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.listing-card span,
.package-card span,
.branch-card span {
  display: inline-flex;
  width: fit-content;
  margin: 20px 22px 0;
  color: #b72152;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.listing-card h2,
.package-card h2,
.branch-card h2 {
  margin: 8px 22px 0;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
}

.listing-card p,
.package-card p,
.branch-card p {
  margin: 10px 22px 24px;
  color: var(--muted);
}

.package-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-card {
  padding: clamp(24px, 4vw, 38px);
}

.package-card span,
.package-card h2,
.package-card p {
  margin-left: 0;
  margin-right: 0;
}

.package-card strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 18px;
}

.package-card ul,
.footer-links,
.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.package-card li,
.check-list li {
  padding: 10px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.package-card .btn {
  margin-top: 24px;
}

.branch-tools {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 18px;
  width: min(100%, var(--container));
  margin: 0 auto 30px;
  padding: 20px;
}

.branch-tools label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.branch-tools input,
.branch-tools select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.branch-tools input:focus,
.branch-tools select:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.3);
  outline-offset: 3px;
}

.branch-map-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: stretch;
  width: min(100%, var(--container));
  margin: 0 auto 30px;
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 25, 42, 0.96), rgba(31, 42, 68, 0.94)),
    radial-gradient(circle at 92% 8%, rgba(22, 164, 216, 0.22), transparent 34%);
  box-shadow: var(--shadow);
}

.branch-map-copy {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 360px;
}

.branch-map-copy h2 {
  max-width: 420px;
  color: var(--paper);
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 0.96;
}

.branch-map-copy p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.branch-map-stage {
  position: relative;
  display: grid;
  min-width: 0;
}

.branch-map {
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce8ef;
  box-shadow: inset 0 0 0 1px rgba(23, 32, 51, 0.1);
}

.branch-map-detail {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 500;
  display: grid;
  gap: 7px;
  max-width: 420px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(23, 32, 51, 0.22);
  backdrop-filter: blur(14px);
}

.branch-map-detail[hidden] {
  display: none;
}

.branch-map-detail span {
  color: #b72152;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.branch-map-detail strong {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.05;
}

.branch-map-detail p {
  color: var(--muted);
  font-size: 14px;
}

.branch-map-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.branch-map-marker {
  border: 0;
  background: transparent;
}

.branch-map-marker span {
  display: block;
  width: 26px;
  height: 26px;
  border: 4px solid var(--paper);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  box-shadow: 0 12px 24px rgba(228, 65, 111, 0.36);
}

.branch-map-marker.is-active span {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--sun), var(--sky));
  box-shadow: 0 14px 30px rgba(22, 164, 216, 0.34);
}

.branch-map .leaflet-popup-content-wrapper {
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(23, 32, 51, 0.22);
}

.branch-map .leaflet-popup-content {
  display: grid;
  gap: 6px;
  min-width: 220px;
  margin: 16px;
  color: var(--ink);
  font-family: "Outfit", system-ui, sans-serif;
}

.branch-map .leaflet-popup-content strong {
  font-size: 16px;
  line-height: 1.15;
}

.branch-map .leaflet-popup-content span,
.branch-map .leaflet-popup-content small {
  color: var(--muted);
}

.branch-map .leaflet-popup-content a {
  width: fit-content;
  margin-top: 4px;
  color: var(--rose);
  font-weight: 900;
}

.branch-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.branch-card {
  overflow: hidden;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.branch-card:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.3);
  outline-offset: 3px;
}

.branch-card.is-map-active {
  border-color: rgba(22, 164, 216, 0.38);
  box-shadow: 0 14px 30px rgba(22, 164, 216, 0.14);
}

.branch-card > div:not(.branch-actions) {
  padding: 0 0 2px;
}

.branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 22px;
}

.empty-state {
  margin: 30px auto 0;
  color: var(--muted);
  text-align: center;
}

.detail-content {
  align-items: start;
}

.content-flow {
  max-width: 780px;
}

.content-flow p {
  margin-bottom: 20px;
  color: #303a52;
  font-size: 18px;
}

.content-section {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(23, 32, 51, 0.1);
}

.content-section h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.detail-aside {
  position: sticky;
  top: 136px;
  padding: 26px;
}

.legal-page {
  background: #f9fafc;
}

.legal-page .subhero {
  min-height: 42svh;
}

.legal-page .detail-content {
  grid-template-columns: 1fr;
  width: min(980px, 100%);
}

.legal-page .content-flow {
  max-width: 100%;
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(23, 32, 51, 0.06);
}

.legal-page .detail-aside {
  display: none;
}

.legal-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 12px;
}

.legal-link-list a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.rules-list {
  display: grid;
  gap: 14px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.rules-list p {
  padding: 18px 22px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(54px, 7vw, 90px) var(--px);
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #c72f5d, #f06d46 48%, #2563eb);
}

.cta-copy {
  max-width: 760px;
}

.cta-copy .section-kicker {
  color: #fff4bd;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  padding: 72px var(--px) 34px;
  color: rgba(255, 255, 255, 0.7);
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.footer-logo {
  width: auto;
  height: 52px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--paper);
  font-size: 16px;
}

.site-footer p,
.site-footer address,
.footer-links li {
  font-size: 14px;
  font-style: normal;
}

.footer-links li {
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, var(--container));
  margin: 54px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

@media (max-width: 1180px) {
  :root {
    --header-space: 104px;
  }

  .header-inner {
    grid-template-columns: auto auto;
    min-height: 70px;
  }

  .header-toggle {
    display: inline-block;
    justify-self: end;
  }

  .header-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: var(--px);
    left: var(--px);
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(12, 17, 32, 0.96);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
    backdrop-filter: saturate(1.12) blur(22px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }

  .header-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-menu a {
    justify-content: flex-start;
    min-height: 44px;
    padding: 12px 14px;
  }

  .header-actions {
    display: none;
  }

  .map-hero {
    min-height: auto;
    padding-top: calc(var(--header-space) + 22px);
  }

  .map-hero__stage,
  .gsap-hero__content,
  .route-map__track,
  .film-frame,
  .family-proof,
  .branch-callout,
  .branch-teaser,
  .tech-story,
  .detail-content,
  .branch-finder-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-hero__route {
    width: 120vw;
    margin: auto -18vw 24vh auto;
    opacity: 0.5;
  }

  .gsap-hero {
    min-height: auto;
    padding-top: calc(var(--header-space) + 34px);
  }

  .gsap-hero__route {
    width: 126vw;
    margin: auto -28vw 22vh auto;
    opacity: 0.72;
  }

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

  .alt-flow {
    grid-template-columns: 1fr;
  }

  .map-hero__pins {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-map__track::before {
    display: none;
  }

  .map-stop {
    min-height: auto;
  }

  .film-frame img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .branch-callout,
  .cta-band,
  .package-grid,
  .branch-map-shell,
  .branch-tools {
    grid-template-columns: 1fr;
  }

  .branch-map-copy {
    min-height: auto;
  }

  .branch-map {
    min-height: 360px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .detail-aside {
    position: static;
  }

  .legal-link-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --header-space: 104px;
  }

  .magic-header {
    top: 10px;
    padding: 0 14px;
  }

  .header-inner {
    min-height: 66px;
    padding: 9px 10px 9px 12px;
  }

  .brand-copy {
    display: none;
  }

  .brand img {
    height: 46px;
  }

  .header-menu {
    right: 14px;
    left: 14px;
  }

  .map-hero {
    padding: calc(var(--header-space) + 10px) 20px 16px;
  }

  .map-hero h1 {
    font-size: clamp(31px, 9.2vw, 38px);
    line-height: 1;
  }

  .gsap-hero {
    padding: calc(var(--header-space) + 20px) 20px 24px;
  }

  .gsap-hero h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .gsap-hero p {
    margin-top: 12px;
    font-size: 15px;
  }

  .gsap-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .gsap-hero__deck {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gsap-hero__deck a {
    grid-template-columns: 34px 1fr;
    padding: 12px;
  }

  .gsap-hero__deck strong {
    font-size: 18px;
  }

  .gsap-hero__deck small {
    display: none;
  }

  .cta-actions,
  .branch-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .branch-map-shell {
    padding: 14px;
  }

  .branch-map-copy h2 {
    font-size: clamp(28px, 10vw, 40px);
  }

  .branch-map-copy p {
    font-size: 15px;
  }

  .branch-map {
    min-height: 320px;
  }

  .branch-map-stage {
    gap: 12px;
  }

  .branch-map-detail {
    position: static;
    max-width: none;
    padding: 14px;
  }

  .branch-map-detail__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .map-hero__stage {
    gap: 14px;
  }

  .map-hero__lead {
    margin-top: 12px;
    font-size: 15px;
  }

  .map-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .map-actions .btn:first-child {
    grid-column: 1 / -1;
  }

  .map-hero__pins {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .map-hero__pins a {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 0;
    padding: 10px;
  }

  .map-hero__pins a::before,
  .map-hero__pins small {
    display: none;
  }

  .map-hero__pins span {
    font-size: 10px;
  }

  .map-hero__pins strong {
    font-size: 15px;
    line-height: 1.08;
  }

  .map-hero__legend {
    display: none;
  }

  .map-hero__legend span {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .section-head h1,
  .section-head h2,
  .routes-intro h2,
  .family-proof__content h2,
  .branch-callout h2,
  .copy-block h2,
  .branch-finder-copy h2,
  .cta-copy h2 {
    font-size: clamp(32px, 12vw, 50px);
  }

  .proof-lines p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

.real-hero {
  position: relative;
  min-height: min(820px, calc(96svh - 8px));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-space) + 36px) var(--px) clamp(32px, 5vw, 64px);
  color: var(--paper);
  background: #17120f;
}

.real-hero__media,
.real-hero__media img,
.real-hero__shade {
  position: absolute;
  inset: 0;
}

.real-hero__media {
  z-index: -5;
  overflow: hidden;
}

.real-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
  transform-origin: center;
}

.real-hero__shade {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(18, 14, 12, 0.9), rgba(18, 14, 12, 0.56) 48%, rgba(18, 14, 12, 0.18)),
    linear-gradient(0deg, rgba(18, 14, 12, 0.78), rgba(18, 14, 12, 0.04) 58%);
}

.real-hero__copy,
.real-hero__facts {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.real-hero__copy {
  display: grid;
  gap: 15px;
  max-width: var(--container);
}

.real-hero h1 {
  max-width: 790px;
  font-size: clamp(40px, 5.8vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.split-word {
  display: inline-block;
  overflow: clip;
  padding-right: 0.08em;
}

.split-word span {
  display: inline-block;
  will-change: transform, opacity;
}

.real-hero__lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
}

.real-hero__actions,
.day-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.real-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(28px, 5vw, 62px);
}

.real-hero__facts span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.real-hero__facts strong {
  margin-right: 6px;
  color: #ffe08a;
}

.day-flow {
  padding: var(--py) var(--px);
  background: #fffaf2;
}

.day-flow__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, var(--container));
  margin: 0 auto;
  align-items: stretch;
}

.day-step {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.08);
  will-change: transform, opacity;
}

.day-step img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.day-step span,
.experience-tile span {
  width: fit-content;
  margin: 18px 22px 0;
  color: #b72152;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.day-step h3 {
  margin: 10px 22px 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.day-step p {
  margin: 12px 22px 24px;
  color: var(--muted);
  font-size: 15px;
}

.experience-strip {
  padding: var(--py) var(--px);
  background: #fff;
}

.experience-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--container));
  margin: 0 auto;
  perspective: 1400px;
}

.experience-tile {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.experience-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.experience-tile h3 {
  margin: 18px 20px 0;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1;
}

.experience-tile p {
  margin: 10px 20px 22px;
  color: var(--muted);
  font-size: 15px;
}

.branch-moments {
  position: relative;
  overflow: hidden;
  padding: var(--py) 0;
  color: var(--paper);
  background: #15171c;
}

.branch-moments__head {
  width: min(100%, var(--container));
  margin: 0 auto clamp(28px, 5vw, 54px);
  padding: 0 var(--px);
}

.branch-moments__head h2 {
  max-width: 840px;
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.branch-moments__track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 var(--px);
  will-change: transform;
}

.moment-panel {
  width: min(calc(100vw - (var(--px) * 2)), 1240px);
  min-height: min(64vh, 620px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--paper);
  background: #20242c;
}

.moment-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.moment-panel div {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(26px, 4vw, 46px);
}

.moment-panel span {
  color: #ffe08a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.moment-panel h3 {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.moment-panel p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.real-trust {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: var(--py) var(--px);
  background: #fffaf2;
}

.real-trust__media {
  min-height: min(62vh, 580px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.real-trust__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}

.real-trust__copy h2 {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.trust-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.trust-lines p {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(23, 32, 51, 0.12);
}

.trust-lines strong {
  color: #b72152;
}

.trust-lines span {
  color: var(--muted);
}

.day-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(58px, 8vw, 108px) var(--px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 224, 138, 0.2), transparent 34%),
    linear-gradient(135deg, #9d244d, #d65243 52%, #1b8a8f);
}

.day-cta h2 {
  max-width: 810px;
  margin-top: 10px;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

.day-cta p {
  max-width: 650px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.day-cta .section-kicker {
  color: #fff4bd;
}

.day-cta__actions {
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .real-hero {
    min-height: auto;
    padding-top: calc(var(--header-space) + 28px);
  }

  .day-flow__grid,
  .real-trust,
  .day-cta {
    grid-template-columns: 1fr;
  }

  .experience-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .branch-moments__track {
    display: grid;
    width: min(100%, var(--container));
    margin: 0 auto;
    overflow: visible;
    scroll-snap-type: none;
  }

  .moment-panel {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.46fr);
    scroll-snap-align: none;
  }

  .moment-panel img {
    min-height: 300px;
    aspect-ratio: 16 / 10;
  }

  .real-trust__media {
    min-height: 460px;
  }

  .day-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .real-hero {
    padding: calc(var(--header-space) + 18px) 20px 28px;
  }

  .real-hero h1 {
    font-size: clamp(33px, 11vw, 46px);
    line-height: 0.99;
  }

  .real-hero__lead {
    font-size: 15px;
  }

  .real-hero__actions,
  .day-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .day-flow__grid,
  .experience-strip__grid {
    grid-template-columns: 1fr;
  }

  .day-step,
  .experience-tile {
    min-height: auto;
  }

  .moment-panel {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .real-trust__media {
    min-height: 360px;
  }

  .trust-lines p {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-motion],
  [data-map-item],
  [data-map-depth],
  [data-alt-item],
  [data-alt-depth],
  [data-alt-panel],
  [data-alt-orbit],
  [data-alt-title],
  [data-alt-route],
  [data-route-step],
  [data-hero-item],
  [data-hero-depth],
  [data-horizontal-track],
  [data-day-step],
  [data-trust-media],
  [data-trust-line],
  .split-word span {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .gsap-hero,
  .gsap-hero * {
    transition: none !important;
  }

  .gsap-hero__route path {
    stroke-dashoffset: 0 !important;
  }
}
