:root {
  --pink: #e91e72;
  --deep: #202124;
  --ink: #32343a;
  --muted: #6d7178;
  --line: #e8e1e5;
  --paper: #fffafc;
  --mist: #f4f7f5;
  --sage: #7c9a87;
  --sky: #dfeaf1;
  --gold: #c99a4d;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(32, 33, 36, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 252, 0.92);
  border-bottom: 1px solid rgba(232, 225, 229, 0.75);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  text-decoration: none;
  font-weight: 750;
  color: var(--deep);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 3vw, 30px);
  font-size: 0.94rem;
  color: var(--muted);
}

.nav a {
  position: relative;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--pink);
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  --parallax-x: 0px;
  --parallax-y: 0px;
  min-height: min(820px, calc(100vh - 73px));
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 7vw, 96px) clamp(20px, 6vw, 92px) 54px;
  background:
    linear-gradient(135deg, rgba(255, 250, 252, 0.84), rgba(244, 247, 245, 0.96)),
    radial-gradient(circle at 75% 28%, rgba(233, 30, 114, 0.12), transparent 32%),
    linear-gradient(180deg, var(--paper), var(--mist));
}

.hero-content {
  max-width: 740px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-brand {
  display: grid;
  justify-items: start;
  width: fit-content;
  overflow: visible;
  line-height: 1;
}

.hero-brand-script {
  position: relative;
  z-index: 1;
  display: block;
  color: #ff4c9a;
  font-family: "Snell Roundhand", "Segoe Script", "Bradley Hand", cursive;
  font-size: clamp(4.4rem, 9.8vw, 8.6rem);
  font-weight: 600;
  line-height: 0.78;
  text-shadow:
    1px 2px 0 rgba(10, 19, 17, 0.88),
    3px 5px 14px rgba(10, 19, 17, 0.45);
}

.hero-brand-subtitle {
  justify-self: end;
  margin: 16px 6px 0 0;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-shadow: 0 2px 12px rgba(10, 19, 17, 0.7);
  text-transform: uppercase;
}

h2 {
  margin: 0 0 18px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 1.2rem;
  line-height: 1.2;
}

.lead {
  margin: 24px 0 10px;
  color: var(--deep);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
}

.hero-content > p:not(.kicker):not(.lead) {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-reassurance {
  margin-top: 16px !important;
  color: var(--muted);
  font-size: 0.9rem !important;
  font-weight: 700;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button::after {
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -45%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  opacity: 0;
  transform: skewX(-18deg);
  transition:
    left 650ms ease,
    opacity 260ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(32, 33, 36, 0.14);
}

.button:hover::after {
  left: 115%;
  opacity: 1;
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.nav a:focus-visible,
.contact-direct a:focus-visible,
.mobile-contact-cta:focus-visible {
  outline: 3px solid rgba(233, 30, 114, 0.28);
  outline-offset: 4px;
}

.button.primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 12px 26px rgba(233, 30, 114, 0.24);
}

.button.secondary {
  color: var(--deep);
  background: var(--white);
  border-color: var(--line);
}

.hero-visual {
  justify-self: center;
  width: min(100%, 480px);
  padding: clamp(10px, 2vw, 18px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(232, 225, 229, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-visual img,
.portrait-card img {
  border-radius: 6px;
}

.travel-path {
  position: absolute;
  right: clamp(30px, 9vw, 140px);
  bottom: 24px;
  left: clamp(30px, 9vw, 140px);
  height: 34px;
  pointer-events: none;
  transform: translate3d(calc(var(--parallax-x) * -0.35), calc(var(--parallax-y) * -0.2), 0);
  transition: transform 1100ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.travel-path-line {
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 30, 114, 0.18) 20%, rgba(124, 154, 135, 0.36) 75%, transparent);
}

.travel-path-line::after {
  position: absolute;
  right: 12%;
  bottom: -3px;
  left: 14%;
  height: 7px;
  border-top: 1px dashed rgba(32, 33, 36, 0.18);
  border-radius: 50%;
  content: "";
}

.travel-van {
  position: absolute;
  bottom: 8px;
  left: 9%;
  display: block;
  font-size: 1.35rem;
  filter: drop-shadow(0 5px 5px rgba(32, 33, 36, 0.12));
  animation: van-journey 18s ease-in-out infinite alternate;
}

@keyframes van-journey {
  0% {
    transform: translateX(0) translateY(0) rotate(-1deg);
  }

  48% {
    transform: translateX(30vw) translateY(-3px) rotate(1deg);
  }

  100% {
    transform: translateX(62vw) translateY(0) rotate(-1deg);
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip div {
  display: grid;
  gap: 4px;
  padding: 24px clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--deep);
  font-size: 0.96rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.section {
  position: relative;
  padding: clamp(58px, 8vw, 108px) clamp(20px, 6vw, 92px);
}

.section-heading > .kicker::before,
.section-copy > .kicker::before,
.contact-copy > .kicker::before,
.important .kicker::before {
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: 8px;
  background: var(--pink);
  content: "";
  vertical-align: 4px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--white);
}

.section-copy {
  max-width: 820px;
}

.section-copy p,
.section-heading p,
.important p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.highlight-panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--deep);
  background: linear-gradient(145deg, var(--sky), var(--mist));
  border: 1px solid rgba(124, 154, 135, 0.26);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(32, 33, 36, 0.08);
}

.highlight-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.08;
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--mist);
}

.portrait-card {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 520px;
  padding: 14px;
  background: radial-gradient(circle, rgba(255,255,255,.96) 0 62%, transparent 63%);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 22px 60px rgba(32, 33, 36, 0.13);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.portrait-card img {
  position: relative;
  z-index: 2;
  width: 91%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.portrait-compass-rose {
  position: absolute;
  inset: 0.5%;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  animation: portrait-compass-spin 26s linear infinite;
}

.portrait-compass-rose::before,
.portrait-compass-rose::after {
  position: absolute;
  inset: 4% 45%;
  background: linear-gradient(to bottom, var(--pink) 0 48%, rgba(32, 33, 36, 0.7) 52% 100%);
  clip-path: polygon(50% 0, 100% 45%, 60% 50%, 100% 55%, 50% 100%, 0 55%, 40% 50%, 0 45%);
  filter: drop-shadow(0 5px 7px rgba(32, 33, 36, 0.12));
  content: "";
}

.portrait-compass-rose::after {
  background: linear-gradient(to bottom, rgba(32, 33, 36, 0.58) 0 48%, rgba(233, 30, 114, 0.62) 52% 100%);
  transform: rotate(90deg);
}

.portrait-compass-directions {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.portrait-direction {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(23px, 3.5vw, 31px);
  height: clamp(23px, 3.5vw, 31px);
  color: var(--deep);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(32, 33, 36, 0.18);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(32, 33, 36, 0.12);
  font-size: clamp(0.58rem, 1.1vw, 0.72rem);
  font-weight: 900;
}

.portrait-direction-north {
  top: -2%;
  left: 50%;
  color: var(--pink);
  transform: translateX(-50%);
}

.portrait-direction-east {
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
}

.portrait-direction-south {
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
}

.portrait-direction-west {
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
}

@keyframes portrait-compass-spin {
  to {
    transform: rotate(360deg);
  }
}

.portrait-card:hover {
  box-shadow: 0 24px 54px rgba(32, 33, 36, 0.14);
  transform: translateY(-4px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

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

.feature-card,
.price-card {
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-card:hover,
.price-card:hover {
  border-color: rgba(233, 30, 114, 0.28);
  box-shadow: 0 18px 38px rgba(32, 33, 36, 0.11);
  transform: translateY(-5px);
}

.feature-card p,
.price-card p,
.price-card li {
  color: var(--muted);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  background: linear-gradient(145deg, var(--white), var(--sky));
  border: 1px solid rgba(124, 154, 135, 0.28);
  border-radius: 50%;
  font-size: 1.15rem;
  box-shadow: 0 6px 14px rgba(32, 33, 36, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.feature-card:hover .feature-icon {
  box-shadow: 0 9px 20px rgba(233, 30, 114, 0.15);
  transform: scale(1.08) rotate(-4deg);
}

.pricing {
  background: var(--white);
}

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

.price-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--sage));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.price-card:hover::before,
.price-card.is-selected::before {
  transform: scaleX(1);
}

.price-card.featured {
  border-color: rgba(233, 30, 114, 0.36);
  box-shadow: var(--shadow);
}

.price-card.is-selected,
.recommendation-detail.is-selected {
  border-color: var(--pink);
  box-shadow: 0 20px 46px rgba(233, 30, 114, 0.18);
}

.price-card.is-selected::after,
.recommendation-detail.is-selected::after {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.popular-label {
  position: absolute;
  top: -13px;
  right: 18px;
  padding: 5px 9px;
  color: var(--white);
  background: var(--pink);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.plan-label {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price {
  margin: 12px 0;
  color: var(--deep) !important;
  font-size: 2rem;
  font-weight: 900;
}

.price small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.best-for {
  min-height: 52px;
  margin: 0 0 10px;
  font-size: 0.92rem;
}

.plan-button {
  margin-top: auto;
  color: var(--deep);
  background: var(--white);
  border-color: var(--line);
}

.price-card ul {
  margin-bottom: 24px;
}

.reviews-section {
  overflow: hidden;
  background: var(--mist);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.reviews-heading .section-heading {
  margin-bottom: 0;
}

.review-summary {
  display: grid;
  justify-items: end;
  gap: 3px;
  padding-bottom: 5px;
}

.review-summary-stars,
.review-stars {
  color: var(--pink);
  letter-spacing: 0.08em;
}

.review-summary strong {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.review-summary span:last-child {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.review-slider {
  position: relative;
}

.review-track {
  display: grid;
  grid-auto-columns: minmax(310px, 38%);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(233, 30, 114, 0.4) transparent;
  scrollbar-width: thin;
}

.review-track:focus-visible {
  outline: 3px solid rgba(233, 30, 114, 0.24);
  outline-offset: 6px;
}

.review-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 13px;
  min-height: 310px;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(32, 33, 36, 0.07);
  scroll-snap-align: start;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.review-card:hover {
  border-color: rgba(233, 30, 114, 0.28);
  box-shadow: 0 20px 42px rgba(32, 33, 36, 0.11);
  transform: translateY(-4px);
}

.review-stars span {
  color: rgba(32, 33, 36, 0.2);
}

.review-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.review-card blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.review-card p {
  margin: 0;
  color: var(--deep);
  font-weight: 850;
}

.review-controls {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 10px;
}

.review-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(32, 33, 36, 0.08);
  font-size: 1.15rem;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}

.review-arrow:hover {
  color: var(--pink);
  border-color: rgba(233, 30, 114, 0.4);
  transform: translateY(-2px);
}

.review-arrow:focus-visible {
  outline: 3px solid rgba(233, 30, 114, 0.24);
  outline-offset: 3px;
}

.review-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.review-cta p {
  margin: 0;
  color: var(--deep);
  font-weight: 750;
}

.formula-intro {
  max-width: 720px;
  margin-bottom: 24px;
}

.formula-intro .kicker,
.recommendation-detail .kicker {
  margin-bottom: 14px;
  font-size: 1.02rem;
  line-height: 1.3;
}

.formula-intro p:last-child,
.formula-note,
.recommendation-detail p:not(.kicker):not(.price) {
  color: var(--muted);
}

.formula-note {
  max-width: 900px;
  margin: 20px 0 42px;
}

.recommendation-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(20px, 3vw, 38px);
  max-width: 980px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(32, 33, 36, 0.07);
}

.recommendation-detail h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
}

.recommendation-examples h4 {
  margin: 0 0 14px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.25;
}

.example-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  align-self: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.example-list li {
  display: grid;
  grid-template-columns: 29px 1fr;
  gap: 9px;
  align-items: start;
  padding: 9px 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--deep);
  font-size: 0.84rem;
  line-height: 1.35;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.recommendation-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: -1px;
  background: var(--paper);
  border: 1px solid rgba(233, 30, 114, 0.16);
  border-radius: 50%;
  font-size: 0.92rem;
}

.example-list li:hover {
  border-color: rgba(233, 30, 114, 0.28);
  transform: translateX(3px);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 10px 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: 1px;
}

.process {
  background: var(--mist);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 158px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
}

.steps span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  font-weight: 900;
}

.reasons {
  background: var(--deep);
}

.reasons h2 {
  color: var(--white);
}

.reason-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reason-list span {
  display: inline-flex;
  gap: 9px;
  align-items: flex-start;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.reason-list span::before {
  content: "✓";
  color: var(--pink);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 68px);
  background: var(--white);
}

.contact-copy {
  align-self: start;
  position: sticky;
  top: 100px;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--deep);
  font-weight: 750;
}

.contact-expectations {
  display: grid;
  gap: 9px;
  margin: 24px 0;
}

.contact-expectations span {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--deep);
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-expectations span::before {
  content: "✓";
  color: var(--pink);
  font-weight: 900;
}

.contact-direct a {
  color: var(--pink);
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(32, 33, 36, 0.08);
}

.contact-form.is-attention {
  animation: contact-attention 700ms ease;
}

@keyframes contact-attention {
  0%,
  100% {
    border-color: var(--line);
    box-shadow: 0 18px 42px rgba(32, 33, 36, 0.08);
  }

  45% {
    border-color: var(--pink);
    box-shadow: 0 20px 48px rgba(233, 30, 114, 0.2);
  }
}

/* Semi-definitive photographic cover */
.hero {
  isolation: isolate;
  min-height: min(900px, calc(100svh - 73px));
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: #36554c;
  background-image: url("assets/hero-alpine-road-maman.webp");
  background-position: 57% center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(13, 30, 27, 0.86) 0%, rgba(13, 30, 27, 0.7) 38%, rgba(13, 30, 27, 0.17) 70%, rgba(13, 30, 27, 0.05) 100%),
    linear-gradient(180deg, rgba(13, 30, 27, 0.08) 45%, rgba(13, 30, 27, 0.38) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: clamp(100px, 15vw, 190px);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42) 72%, var(--white) 100%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 90px;
}

.hero h1,
.hero .lead {
  color: var(--white);
  text-shadow: 0 3px 25px rgba(0, 0, 0, 0.26);
}

.hero-content > p:not(.kicker):not(.lead),
.hero .hero-reassurance {
  color: rgba(255, 255, 255, 0.87);
}

.hero .kicker {
  color: var(--white);
  margin-bottom: clamp(30px, 4vw, 46px);
}

.hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(12px);
}

.hero-photo-caption {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: 28px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  position: relative;
  z-index: 3;
}

.gps-journey {
  --gps-progress: 0;
  position: relative;
  min-height: 380vh;
  color: var(--deep);
  background: #f1f6f3;
}

.gps-sticky {
  position: sticky;
  top: 73px;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(600px, 1.42fr);
  grid-template-rows: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy map"
    "status map";
  gap: 18px clamp(26px, 4vw, 68px);
  align-items: stretch;
  height: calc(100svh - 73px);
  min-height: 0;
  overflow: hidden;
  padding: clamp(30px, 4.5vw, 64px) clamp(20px, 4vw, 72px);
  background: #f1f6f3;
}

.gps-copy {
  position: relative;
  z-index: 5;
  grid-area: copy;
  align-self: end;
  max-width: 520px;
}

.gps-copy h2 {
  max-width: 540px;
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
  line-height: 0.98;
}

.gps-copy p:last-child {
  max-width: 450px;
}

.gps-current-step {
  display: grid;
  gap: 5px;
  max-width: 380px;
  margin-top: 28px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border-left: 3px solid var(--pink);
  box-shadow: 0 14px 34px rgba(49, 81, 70, 0.08);
  backdrop-filter: blur(10px);
}

.gps-journey-status {
  grid-area: status;
  align-self: start;
  justify-self: start;
  width: min(100%, 380px);
  margin: 0;
}

.gps-current-number {
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gps-current-step strong {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

.gps-current-description {
  max-width: 310px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.gps-map {
  position: relative;
  grid-area: map;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  max-width: 900px;
  min-height: 0;
}

.gps-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.gps-route path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 7;
}

.gps-route-base {
  stroke: rgba(76, 119, 102, 0.24);
  stroke-width: 3;
}

.gps-route-progress {
  stroke: var(--pink);
  stroke-width: 7;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--gps-progress));
}

.gps-cursor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--white);
  border: 2px solid var(--pink);
  border-radius: 50% 50% 50% 8px;
  box-shadow: 0 10px 28px rgba(233, 30, 114, 0.28);
  transform: translate3d(var(--gps-x, 0), var(--gps-y, 0), 0) translate(-50%, -50%) rotate(-45deg);
  will-change: transform;
}

.gps-cursor span {
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
}

.gps-stop {
  position: absolute;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 4px;
  width: 172px;
  color: var(--deep);
  font-size: 0.78rem;
  text-align: center;
  opacity: 0.38;
  transform: translate(-50%, -100%);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gps-stop.is-active {
  opacity: 1;
  transform: translate(-50%, -100%);
}

.gps-vignette {
  width: 172px;
  height: 114px;
  object-fit: contain;
  filter: drop-shadow(0 9px 8px rgba(49, 81, 70, 0.08));
  transition: filter 650ms ease, transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gps-stop.is-active .gps-vignette {
  filter: drop-shadow(0 12px 10px rgba(49, 81, 70, 0.14));
  transform: translateY(-2px);
}

.gps-stop::after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--white);
  border: 2px solid var(--deep);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, 50%);
}

.gps-stop.is-active::after {
  background: var(--pink);
  border-color: var(--pink);
}

.gps-scroll-hint {
  position: absolute;
  right: clamp(20px, 7vw, 105px);
  bottom: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (min-width: 821px) and (max-height: 760px) {
  .gps-sticky {
    gap: 12px clamp(22px, 3vw, 48px);
    padding: 18px clamp(20px, 3vw, 52px);
  }

  .gps-copy h2 {
    margin-bottom: 12px;
    font-size: clamp(2.1rem, 3.6vw, 3.35rem);
  }

  .gps-copy > p:not(.kicker) {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 0.94rem;
  }

  .gps-current-step {
    padding: 11px 14px;
  }

  .gps-map {
    height: 100%;
  }

  .gps-scroll-hint {
    bottom: 8px;
  }
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-heading {
  display: grid;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.form-heading strong {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.form-heading span,
.form-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.form-note {
  margin: -6px 0 0;
  text-align: center;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--deep);
  background: var(--white);
  border: 1px solid #d8d3d6;
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(233, 30, 114, 0.18);
  border-color: var(--pink);
}

.important {
  padding: clamp(42px, 6vw, 72px) clamp(20px, 6vw, 92px);
  background: linear-gradient(135deg, #fff3f7, #eef5f0);
}

.important > div {
  max-width: 980px;
}

.important h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}

.footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 34px 20px 40px;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer p {
  margin: 0;
}

.footer-logo {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
}

.mobile-contact-cta {
  display: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-contact-cta.is-context-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  pointer-events: none;
}

.reveal-target {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid .reveal-target:nth-child(2),
.pricing-grid .reveal-target:nth-child(2),
.steps .reveal-target:nth-child(2) {
  transition-delay: 70ms;
}

.feature-grid .reveal-target:nth-child(3),
.pricing-grid .reveal-target:nth-child(3),
.steps .reveal-target:nth-child(3) {
  transition-delay: 140ms;
}

.feature-grid .reveal-target:nth-child(4),
.steps .reveal-target:nth-child(4) {
  transition-delay: 210ms;
}

.feature-grid .reveal-target:nth-child(5),
.steps .reveal-target:nth-child(5) {
  transition-delay: 280ms;
}

.feature-grid .reveal-target:nth-child(6) {
  transition-delay: 350ms;
}

.steps .reveal-target:nth-child(6) {
  transition-delay: 350ms;
}

@media (max-width: 1050px) {
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

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

  .review-track {
    grid-auto-columns: minmax(300px, 54%);
  }

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

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
    gap: 20px;
    font-size: 0.84rem;
  }

  .hero,
  .intro,
  .split,
  .contact-section,
  .recommendation-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(820px, calc(100svh - 88px));
    padding-top: 62px;
    padding-bottom: 190px;
    background-position: 67% center;
  }

  .hero-brand-script {
    font-size: clamp(4rem, 15vw, 6.6rem);
  }

  .hero-visual {
    width: min(100%, 360px);
    transform: none;
  }

  .travel-path {
    display: none;
  }

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

  .contact-copy {
    position: static;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-summary {
    justify-items: start;
  }

  .hero-photo-caption {
    right: 18px;
    bottom: 24px;
    left: 18px;
    text-align: right;
  }

  .gps-journey {
    min-height: 350svh;
  }

  .gps-sticky {
    position: sticky;
    top: 88px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "copy"
      "map"
      "status";
    gap: 6px;
    align-content: stretch;
    height: calc(100svh - 88px);
    min-height: 0;
    overflow: hidden;
    padding: 18px 18px 14px;
  }

  .gps-copy {
    align-self: start;
    max-width: 100%;
  }

  .gps-copy h2 {
    margin: 6px 0 8px;
    font-size: clamp(2.1rem, 7vw, 3.1rem);
    line-height: 0.94;
  }

  .gps-copy > p:not(.kicker):not(.gps-current-step) {
    display: none;
  }

  .gps-current-step {
    padding: 11px 14px;
  }

  .gps-journey-status {
    width: min(100%, 380px);
    margin: 0;
  }

  .gps-map {
    align-self: stretch;
    height: 100%;
    max-width: 560px;
    min-height: 0;
    margin: -8px auto -6px;
  }

  .gps-stop {
    width: 126px;
    font-size: 0.7rem;
    transform: translate(-50%, -100%);
  }

  .gps-stop.is-active {
    transform: translate(-50%, -100%);
  }

  .gps-vignette {
    width: 126px;
    height: 84px;
  }

  .gps-cursor {
    display: grid;
  }

  .gps-route-progress {
    stroke-dashoffset: calc(1 - var(--gps-progress));
  }

  .gps-scroll-hint {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 72px;
  }

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

  .trust-strip div,
  .trust-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .hero-visual {
    display: none;
  }

  .hero {
    min-height: 790px;
    padding-bottom: 225px;
    background-position: 63% center;
  }

  .hero-brand-script {
    font-size: clamp(3.55rem, 18vw, 5.5rem);
  }

  .hero-brand-subtitle {
    margin-top: 13px;
    font-size: 0.82rem;
    letter-spacing: 0.22em;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(13, 30, 27, 0.78) 0%, rgba(13, 30, 27, 0.58) 55%, rgba(13, 30, 27, 0.16) 100%),
      linear-gradient(90deg, rgba(13, 30, 27, 0.4), transparent);
  }

  .nav {
    gap: 18px;
    font-size: 0.82rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .feature-grid,
  .pricing-grid,
  .steps,
  .contact-form,
  .example-list {
    grid-template-columns: 1fr;
  }

  .review-track {
    grid-auto-columns: min(88vw, 330px);
    margin-right: -18px;
    padding-right: 18px;
  }

  .review-card {
    min-height: 0;
  }

  .review-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .section,
  .important {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-form .full {
    grid-column: auto;
  }

  .gps-journey {
    min-height: 370svh;
  }

  .gps-sticky {
    top: 88px;
    height: calc(100svh - 88px);
    min-height: 0;
    padding: 14px 10px 10px;
  }

  .gps-copy {
    max-width: 100%;
  }

  .gps-map {
    height: 100%;
    max-width: 430px;
    min-height: 0;
    margin: -4px -16% -4px -14%;
  }

  .gps-journey-status {
    width: 100%;
    padding: 8px 10px;
  }

  .gps-journey-status strong {
    font-size: 1.12rem;
  }

  .gps-journey-status .gps-current-description {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .gps-stop {
    width: 102px;
    font-size: 0.7rem;
    transform: translate(-50%, -100%);
  }

  .gps-stop.is-active {
    transform: translate(-50%, -100%);
  }

  .gps-vignette {
    width: 102px;
    height: 68px;
  }

  .mobile-contact-cta {
    position: fixed;
    right: 14px;
    bottom: 12px;
    left: 14px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    color: var(--white);
    background: var(--pink);
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(32, 33, 36, 0.24);
    font-weight: 850;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-target,
  .reveal-target.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .feature-card,
  .price-card,
  .review-card,
  .review-arrow,
  .portrait-card,
  .feature-icon,
  .example-list li,
  .nav a::after {
    transition: none;
  }

  .button::after,
  .price-card::before,
  .travel-path {
    display: none;
  }

  .travel-van {
    animation: none;
  }

  .portrait-compass-rose {
    animation: none;
  }

  .contact-form.is-attention {
    animation: none;
  }

  .gps-cursor {
    display: none;
  }

  .gps-route-progress {
    stroke-dashoffset: 0;
  }

  .gps-stop {
    opacity: 1;
    transform: translate(-50%, -100%);
    transition: none;
  }

  .gps-journey {
    min-height: auto;
  }

  .gps-sticky {
    position: relative;
    top: auto;
    min-height: 760px;
  }

  .button:hover,
  .feature-card:hover,
  .price-card:hover,
  .review-card:hover,
  .review-arrow:hover,
  .portrait-card:hover,
  .feature-card:hover .feature-icon,
  .example-list li:hover {
    transform: none;
  }
}
