/* =============================================
   ORLÉ — STYLES
   Audacieux · Magnétique · Raffiné · Lumineux
   ============================================= */

/* ---- BRAND TOKENS ---- */
:root {
  --neon-navy: #621217;
  --bleached-sand: #aea190;
  --bleached-cedar: #261834;
  --ablescent-white: #f5dedf;
  --swan-wing: #f7f6ee;
  --dusty-blue: #bed5eb;

  --font-heading: 'Cormorant', Georgia, serif;
  --font-body: 'Roboto', Helvetica, Arial, sans-serif;
  --font-accent: 'Caveat', 'adobe-handwriting-ernie', cursive;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
  --max-width: 1200px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--neon-navy);
  background: var(--swan-wing);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- GRAIN TEXTURE ---- */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.028;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.08;
}

h1 { font-size: clamp(3.2rem, 7.5vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

.subheadline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.font-accent { font-family: var(--font-accent); font-weight: 400; }

p { font-size: 1rem; max-width: 600px; }

/* ---- UTILITY ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-pad { padding: var(--space-xl) 0; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-14px) rotate(-5deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--neon-navy);
  color: var(--swan-wing);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bleached-cedar);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-out);
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  border: 1.5px solid currentColor;
}
.btn-outline:hover {
  background: var(--neon-navy);
  color: var(--swan-wing);
  border-color: var(--neon-navy);
}

.btn-light { background: var(--swan-wing); color: var(--neon-navy); }
.btn-light:hover { background: var(--ablescent-white); }

.btn-arrow::after {
  content: '→';
  transition: transform 0.4s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(5px); }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
:root {
  --announce-height: 38px;
}

.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--announce-height);
  background: var(--neon-navy);
  color: var(--swan-wing);
  z-index: 1100;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 240, 233, 0.08);
}

.announce-bar.hidden {
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
}

.announce-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  white-space: nowrap;
  padding-left: 2rem;
  animation: marquee 48s linear infinite;
  will-change: transform;
}

.announce-bar:hover .announce-track { animation-play-state: paused; }

.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--swan-wing);
  opacity: 0.92;
}

.announce-item .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bleached-sand);
  box-shadow: 0 0 0 0 rgba(218, 204, 180, 0.55);
  animation: announcePulse 1.9s var(--ease) infinite;
}

@keyframes announcePulse {
  0%   { box-shadow: 0 0 0 0 rgba(218, 204, 180, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(218, 204, 180, 0); }
  100% { box-shadow: 0 0 0 0 rgba(218, 204, 180, 0); }
}

.announce-sep {
  color: var(--bleached-sand);
  font-size: 0.7rem;
  opacity: 0.55;
}

.announce-close {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--swan-wing);
  font-size: 0.78rem;
  cursor: pointer;
  opacity: 0.55;
  padding: 0.35rem 0.55rem;
  line-height: 1;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.announce-close:hover { opacity: 1; transform: translateY(-50%) rotate(90deg); }

/* fade on edges */
.announce-bar::before,
.announce-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.announce-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--neon-navy) 15%, transparent 100%);
}
.announce-bar::after {
  right: 40px;
  background: linear-gradient(to left, var(--neon-navy) 15%, transparent 100%);
}

@media (prefers-reduced-motion: reduce) {
  .announce-track { animation: none; }
  .announce-item .dot { animation: none; }
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: var(--announce-height);
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: top 0.45s var(--ease), padding 0.4s var(--ease),
              background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

body.no-announce .nav { top: 0; }

.nav.scrolled {
  background: rgba(245, 240, 233, 0.88);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(19, 25, 54, 0.06),
              0 12px 32px -24px rgba(19, 25, 54, 0.25);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: currentColor;
  transition: opacity 0.3s var(--ease);
}
.nav-logo:hover { opacity: 0.78; }
.nav-logo-svg {
  height: 2.2rem;
  width: auto;
  display: block;
}
.nav-logo-dot {
  color: var(--bleached-sand);
  margin-left: 2px;
  font-size: 1.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  padding: 0.35rem 0;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.45s var(--ease-out);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn):focus-visible::after { width: 100%; }
.nav-links a:focus-visible {
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta {
  padding: 0.85rem 1.7rem;
  font-size: 0.68rem;
}

.lang-toggle {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: 1.5px solid var(--dusty-blue);
  padding: 0.28rem 0.7rem;
  cursor: pointer;
  color: var(--neon-navy);
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.3s var(--ease);
}
.lang-toggle:hover {
  background: var(--neon-navy);
  color: var(--swan-wing);
  border-color: var(--neon-navy);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.nav-hamburger span {
  width: 26px;
  height: 1.5px;
  background: var(--neon-navy);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: var(--hp-blue);
  color: var(--hp-maroon);
  z-index: 999;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 4.25rem 1.75rem 2rem;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.1rem;
  width: 100%;
}

.mobile-menu .mobile-link {
  display: block;
  text-align: left;
  color: var(--hp-maroon);
  text-decoration: none;
  line-height: 1.15;
}
.mobile-menu .mobile-link::after { display: none; }
.mobile-menu .mobile-link--serif {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 500;
}
.mobile-menu .mobile-link--sans {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.mobile-menu .mobile-link--lang {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
}

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0.75rem 0 0.5rem;
}
.mobile-menu .hp-nav-cta { display: inline-flex; }

.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--hp-maroon);
  line-height: 1;
  padding: 0.25rem 0.5rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: calc(100dvh - var(--announce-height));
  display: flex;
  align-items: center;
  position: relative;
  background: var(--swan-wing);
  overflow: hidden;
  isolation: isolate;
}
body.no-announce .hero { min-height: 100dvh; }

/* Oversized editorial backdrop word */
.hero-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-backdrop-word {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18rem, 42vw, 36rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 2px var(--bleached-sand);
  text-stroke: 2px var(--bleached-sand);
  opacity: 0.35;
  transform: translate(12%, -4%);
  user-select: none;
  white-space: nowrap;
}

/* Decorative star accents */
.hero-star {
  position: absolute;
  z-index: 1;
  color: var(--bleached-cedar);
  pointer-events: none;
  opacity: 0.55;
}
.hero-star-1 { top: 14%; left: 46%; width: 22px; transform: rotate(12deg); animation: heroStarFloat 6s ease-in-out infinite; }
.hero-star-2 { bottom: 20%; left: 38%; width: 16px; transform: rotate(-20deg); animation: heroStarFloat 7s ease-in-out 0.6s infinite; }
.hero-star-3 { top: 48%; right: 52%; width: 12px; transform: rotate(8deg); animation: heroStarFloat 5.5s ease-in-out 1.2s infinite; }

@keyframes heroStarFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); opacity: 0.55; }
  50%      { transform: translateY(-6px) rotate(var(--r, 0deg)); opacity: 0.9; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: var(--space-lg);
  align-items: center;
  padding-top: calc(var(--announce-height) + 4rem);
  padding-bottom: 4rem;
  position: relative;
  z-index: 2;
}
body.no-announce .hero-grid { padding-top: 4rem; }

.hero-content { position: relative; z-index: 3; max-width: 620px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--neon-navy);
  margin-bottom: 1.75rem;
  padding: 0.5rem 0.9rem 0.5rem 0.75rem;
  background: rgba(218, 204, 180, 0.35);
  border: 1px solid rgba(19, 25, 54, 0.08);
  border-radius: 999px;
  animation: fadeUp 0.8s var(--ease-out) 0.05s both;
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bleached-cedar);
  box-shadow: 0 0 0 0 rgba(38, 24, 52, 0.5);
  animation: heroEyebrowPulse 2.2s var(--ease) infinite;
}
@keyframes heroEyebrowPulse {
  0%   { box-shadow: 0 0 0 0 rgba(38, 24, 52, 0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(38, 24, 52, 0); }
  100% { box-shadow: 0 0 0 0 rgba(38, 24, 52, 0); }
}

/* Display headline */
.hero-title {
  color: var(--neon-navy);
  margin: 0 0 1.5rem 0;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.hero-title-line {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
}
.hero-title-line.line-1 {
  animation: fadeUp 0.9s var(--ease-out) 0.15s both;
}
.hero-title-line.line-2 {
  animation: fadeUp 0.9s var(--ease-out) 0.27s both;
}
.hero-title-line.line-3 {
  position: relative;
  display: inline-block;
  animation: fadeUp 0.9s var(--ease-out) 0.39s both;
}
.hero-title-em {
  font-style: italic;
  color: var(--bleached-cedar);
  font-weight: 500;
  position: relative;
}

/* Hand-drawn underline under "convertir" */
.hero-underline {
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: -0.05em;
  width: 96%;
  height: 0.28em;
  color: var(--bleached-cedar);
  pointer-events: none;
  overflow: visible;
}
.hero-underline path {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  transition: stroke-dashoffset 1.3s var(--ease-out);
}
.hero-title.drawn .hero-underline path { stroke-dashoffset: 0; }

.hero-caveat {
  display: block;
  font-size: 1.55rem;
  color: var(--bleached-cedar);
  margin-bottom: 1.4rem;
  transform: rotate(-1.2deg);
  animation: fadeUp 0.8s var(--ease-out) 0.5s both;
}

.hero-description {
  font-size: 1rem;
  color: var(--neon-navy);
  opacity: 0.72;
  margin-bottom: 2.1rem;
  max-width: 48ch;
  line-height: 1.75;
  animation: fadeUp 0.8s var(--ease-out) 0.6s both;
}

.hero-ctas {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s var(--ease-out) 0.72s both;
}
.hero-ctas-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-navy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
  transition: opacity 0.3s var(--ease), letter-spacing 0.3s var(--ease);
}
.hero-ctas-link:hover { letter-spacing: 0.22em; }

/* Micro social proof strip */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  list-style: none;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(19, 25, 54, 0.12);
  max-width: 560px;
  animation: fadeUp 0.8s var(--ease-out) 0.84s both;
}
.hero-proof li {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.hero-proof strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--neon-navy);
  letter-spacing: -0.01em;
}
.hero-proof-star {
  color: var(--bleached-cedar);
  font-size: 0.95em;
  margin-left: 0.1em;
}
.hero-proof span {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-navy);
  opacity: 0.55;
  margin-top: 0.2rem;
}
.hero-proof-sep {
  color: var(--bleached-cedar);
  opacity: 0.5;
  font-size: 0.85rem;
}

/* =============================================
   HERO VISUAL — editorial polaroid collage
   ============================================= */
.hero-visual {
  position: relative;
  min-height: 560px;
  animation: fadeIn 1.1s var(--ease-out) 0.35s both;
}

/* Polaroid frames */
.hero-polaroid {
  position: absolute;
  background: var(--swan-wing);
  padding: 0.9rem 0.9rem 2.4rem 0.9rem;
  box-shadow:
    0 1px 0 rgba(19, 25, 54, 0.06),
    0 22px 48px -20px rgba(19, 25, 54, 0.28),
    0 4px 14px -6px rgba(19, 25, 54, 0.12);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  will-change: transform;
}
.hero-polaroid-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bleached-sand) 0%, var(--ablescent-white) 100%);
}
.hero-polaroid-cap {
  position: absolute;
  bottom: 0.55rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--bleached-cedar);
  letter-spacing: 0.01em;
}

.hero-polaroid-main {
  width: 74%;
  top: 4%;
  right: 6%;
  transform: rotate(-2deg);
  z-index: 3;
}
.hero-polaroid-main .hero-polaroid-img { aspect-ratio: 4 / 5; }

.hero-polaroid-sec {
  width: 48%;
  bottom: 6%;
  left: 0;
  transform: rotate(4deg);
  z-index: 4;
}
.hero-polaroid-sec .hero-polaroid-img { aspect-ratio: 4 / 5; }

.hero-polaroid-sticker {
  width: 32%;
  top: -2%;
  left: -4%;
  transform: rotate(-8deg);
  z-index: 5;
  padding: 0.55rem 0.55rem 1.7rem 0.55rem;
}
.hero-polaroid-sticker .hero-polaroid-img { aspect-ratio: 3 / 4; }
.hero-polaroid-sticker .hero-polaroid-cap { font-size: 0.85rem; bottom: 0.35rem; }

.hero-polaroid:hover {
  box-shadow:
    0 1px 0 rgba(19, 25, 54, 0.06),
    0 32px 60px -20px rgba(19, 25, 54, 0.35),
    0 6px 20px -6px rgba(19, 25, 54, 0.18);
}

.placeholder-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.28;
  color: var(--neon-navy);
}

/* Rotating seal — repositioned */
.hero-badge {
  position: absolute;
  bottom: 12%;
  right: -3%;
  width: 124px;
  height: 124px;
  z-index: 6;
  color: var(--neon-navy);
  animation: spin 22s linear infinite;
  filter: drop-shadow(0 8px 20px rgba(19, 25, 54, 0.18));
}
.hero-badge svg { width: 100%; height: 100%; }

/* Floating handwritten sticker */
.hero-handwritten {
  position: absolute;
  top: 38%;
  right: -4%;
  font-size: 1.55rem;
  color: var(--bleached-cedar);
  transform: rotate(-6deg);
  z-index: 7;
  animation: float 5.5s ease-in-out infinite;
  white-space: nowrap;
  padding: 0.5rem 0.95rem;
  background: var(--swan-wing);
  box-shadow: 0 6px 22px -6px rgba(19, 25, 54, 0.25);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 3;
  opacity: 0.55;
  transition: opacity 0.4s var(--ease);
  animation: fadeUp 1s var(--ease-out) 1s both;
}
.hero-scroll-cue:hover { opacity: 1; }
.hero-scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon-navy);
  font-weight: 500;
}
.hero-scroll-line {
  width: 1px;
  height: 38px;
  background: var(--neon-navy);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bleached-cedar);
  animation: heroScrollPulse 2.4s var(--ease) infinite;
}
@keyframes heroScrollPulse {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .hero-handwritten,
  .hero-star-1,
  .hero-star-2,
  .hero-star-3,
  .hero-scroll-line::after,
  .hero-eyebrow-dot { animation: none; }
  .hero-underline path { stroke-dashoffset: 0; transition: none; }
}

/* =============================================
   CLIENT LOGO TICKER
   ============================================= */
.logos {
  background: var(--swan-wing);
  padding: 5rem 0 4.5rem;
  position: relative;
  border-top: 1px solid rgba(19, 25, 54, 0.06);
}

.logos-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--space-md);
  margin-bottom: 3rem;
}

.logos-eyebrow {
  display: block;
  color: var(--neon-navy);
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.logos-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--neon-navy);
  letter-spacing: -0.01em;
  max-width: 32ch;
}

.logos-header-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-navy);
  padding-bottom: 0.3rem;
  opacity: 0.7;
}

.logos-year {
  font-variant-numeric: tabular-nums;
}
.logos-year-sep {
  color: var(--bleached-cedar);
  font-size: 0.85rem;
}

/* Rail */
.logos-rail {
  position: relative;
  overflow: hidden;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(19, 25, 54, 0.1);
  border-bottom: 1px solid rgba(19, 25, 54, 0.1);
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 55s linear infinite;
  will-change: transform;
}
.logos-rail:hover .logos-track {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 auto;
  width: 180px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-navy);
  opacity: 0.4;
  filter: grayscale(100%);
  transition:
    opacity 0.45s var(--ease),
    filter 0.45s var(--ease),
    color 0.45s var(--ease),
    transform 0.45s var(--ease-out);
}
.logo-item svg {
  width: 100%;
  height: 100%;
}

.logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  color: var(--bleached-cedar);
  transform: translateY(-2px);
}

.logos-divider {
  flex: 0 0 auto;
  color: var(--bleached-cedar);
  font-size: 0.9rem;
  opacity: 0.4;
  user-select: none;
}

.logos-footnote {
  margin-top: 1.75rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-navy);
  opacity: 0.32;
  text-align: right;
}

@media (prefers-reduced-motion: reduce) {
  .logos-track { animation: none; }
}

@media (max-width: 768px) {
  .logos { padding: 3.5rem 0 3rem; }
  .logos-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.2rem;
  }
  .logos-header-right {
    justify-self: start;
    padding-bottom: 0;
  }
  .logos-tagline { font-size: 1.3rem; max-width: 100%; }
  .logo-item { width: 150px; height: 54px; }
  .logos-track { gap: 1.8rem; }
  .logos-footnote { text-align: left; }
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-section {
  padding: 1.6rem 0;
  background: var(--neon-navy);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  white-space: nowrap;
  padding: 0 0.6rem;
  color: var(--ablescent-white);
  opacity: 0.55;
}

.marquee-item .star {
  display: inline-block;
  margin: 0 1rem;
  opacity: 0.35;
  font-style: normal;
  font-size: 0.7em;
}

/* =============================================
   SERVICES — editorial rows w/ hover preview
   ============================================= */
.services {
  background: var(--swan-wing);
  position: relative;
  overflow: hidden;
}

.services-header {
  margin-bottom: 4.5rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-lg);
  align-items: end;
}

.services-header-left { position: relative; }

.services-header .subheadline {
  color: var(--neon-navy);
  opacity: 0.6;
  margin-bottom: 1.1rem;
  display: block;
}

.services-header-left h2 {
  max-width: 14ch;
}
.services-header-left h2 em {
  font-style: italic;
  color: var(--bleached-cedar);
}

.services-count {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 1.35rem;
  color: var(--bleached-cedar);
  transform: rotate(-1.5deg);
}

.services-header-right {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 1.6rem;
  text-align: left;
  justify-self: end;
  max-width: 440px;
}

.services-badge {
  display: inline-block;
  width: 84px;
  height: 84px;
  color: var(--neon-navy);
  opacity: 0.75;
  animation: spin 28s linear infinite;
}
.services-badge svg { width: 100%; height: 100%; }

.services-header-right p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--neon-navy);
  opacity: 0.65;
  max-width: 34ch;
}

/* list wrapper — establish stacking context for sticky preview */
.services-list {
  position: relative;
  border-top: 1px solid rgba(19, 25, 54, 0.12);
}

/* Each row is a link */
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 140px 120px;
  gap: var(--space-md);
  align-items: center;
  padding: 2.6rem 0;
  border-bottom: 1px solid rgba(19, 25, 54, 0.12);
  transition: padding 0.5s var(--ease), background 0.45s var(--ease);
  color: var(--neon-navy);
  text-decoration: none;
  cursor: pointer;
}

/* Decorative ✦ sitting on each divider */
.service-row::before {
  content: '✦';
  position: absolute;
  top: -0.65em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: var(--bleached-cedar);
  background: var(--swan-wing);
  padding: 0 0.7rem;
  opacity: 0.5;
  pointer-events: none;
}
.service-row:last-child::after {
  content: '✦';
  position: absolute;
  bottom: -0.65em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: var(--bleached-cedar);
  background: var(--swan-wing);
  padding: 0 0.7rem;
  opacity: 0.5;
}

.service-row:hover {
  padding-left: 1.25rem;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 4.4rem;
  font-weight: 300;
  color: var(--bleached-sand);
  line-height: 1;
  transition: color 0.5s var(--ease), transform 0.5s var(--ease-out);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.service-row:hover .service-num {
  color: var(--bleached-cedar);
  transform: translateY(-4px) scale(1.06);
}

.service-main {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 520px;
}
.service-row h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  line-height: 1.1;
  color: var(--neon-navy);
  letter-spacing: -0.005em;
  transition: transform 0.5s var(--ease-out);
}
.service-row:hover h3 {
  transform: translateX(4px);
}
.service-row p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--neon-navy);
  opacity: 0.6;
  max-width: 52ch;
}

/* Service tags row */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin-top: 0.35rem;
}
.service-tags li {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-navy);
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(19, 25, 54, 0.18);
  border-radius: 999px;
  opacity: 0.75;
  transition: opacity 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.service-row:hover .service-tags li {
  opacity: 1;
  border-color: rgba(38, 24, 52, 0.35);
}

/* Hover image preview */
.service-preview {
  position: relative;
  width: 140px;
  height: 96px;
  background: linear-gradient(160deg, var(--bleached-sand) 0%, var(--ablescent-white) 100%);
  overflow: hidden;
  justify-self: center;
  opacity: 0;
  transform: translateY(12px) rotate(-1.5deg) scale(0.94);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.55s var(--ease-out);
  box-shadow: 0 14px 34px -14px rgba(19, 25, 54, 0.35);
}
.service-row:hover .service-preview {
  opacity: 1;
  transform: translateY(0) rotate(-2.5deg) scale(1);
}
.service-preview .placeholder-text {
  font-size: 0.52rem;
  color: var(--neon-navy);
}

/* Link / CTA cell */
.service-row .service-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-navy);
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease-out), gap 0.45s var(--ease);
}
.service-row .service-link::after {
  content: '→';
  font-size: 0.95rem;
  transition: transform 0.45s var(--ease-out);
}
.service-row:hover .service-link {
  opacity: 1;
  gap: 0.8rem;
  color: var(--bleached-cedar);
}
.service-row:hover .service-link::after {
  transform: translateX(6px);
}

/* Floating stickers on featured rows */
.service-sticker {
  position: absolute;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--bleached-cedar);
  padding: 0.3rem 0.8rem;
  background: var(--swan-wing);
  box-shadow: 0 8px 20px -8px rgba(19, 25, 54, 0.3);
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
  opacity: 0.95;
}
.service-sticker-signature {
  top: 1.2rem;
  left: 68px;
  transform: rotate(-6deg);
}
.service-sticker-hot {
  top: 1.4rem;
  right: 150px;
  transform: rotate(4deg);
  color: var(--neon-navy);
  background: var(--bleached-sand);
}

@media (prefers-reduced-motion: reduce) {
  .services-badge { animation: none; }
}

/* =============================================
   ABOUT — editorial polaroid collage + value list
   ============================================= */
.about {
  background: var(--neon-navy);
  color: var(--ablescent-white);
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

/* scattered stars */
.about-star {
  position: absolute;
  color: var(--bleached-sand);
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}
.about-star-1 { top: 9%; left: 44%; width: 20px; transform: rotate(10deg); animation: heroStarFloat 6.5s ease-in-out infinite; }
.about-star-2 { bottom: 14%; right: 6%; width: 14px; transform: rotate(-14deg); animation: heroStarFloat 7.5s ease-in-out 0.8s infinite; }

/* oversized outline word */
.about-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
}
.about-backdrop-word {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(14rem, 38vw, 30rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(218, 204, 180, 0.14);
  text-stroke: 1px rgba(218, 204, 180, 0.14);
  transform: translate(6%, 0);
  white-space: nowrap;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* --- Left: polaroid collage --- */
.about-visual {
  position: relative;
  min-height: 580px;
}

.about-polaroid {
  position: absolute;
  background: var(--swan-wing);
  padding: 14px 14px 46px;
  box-shadow:
    0 36px 80px -24px rgba(0, 0, 0, 0.7),
    0 14px 28px -14px rgba(0, 0, 0, 0.55);
  transition: transform 0.9s var(--ease-out);
}
.about-polaroid-img {
  position: relative;
  background: linear-gradient(160deg, var(--bleached-cedar) 0%, #3a2848 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-polaroid-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--neon-navy);
}

.about-polaroid-main {
  top: 0;
  left: 4%;
  width: 62%;
  transform: rotate(-3deg);
  z-index: 1;
}
.about-polaroid-main .about-polaroid-img { aspect-ratio: 4 / 5; }

.about-polaroid-sec {
  bottom: 2%;
  right: 0;
  width: 50%;
  transform: rotate(5deg);
  z-index: 2;
}
.about-polaroid-sec .about-polaroid-img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(150deg, var(--bleached-sand) 0%, var(--ablescent-white) 100%);
}
.about-polaroid-sec .about-polaroid-img .placeholder-text { color: var(--neon-navy); }
.about-polaroid:hover {
  transform: rotate(-1deg) translateY(-4px);
}
.about-polaroid-sec:hover {
  transform: rotate(3deg) translateY(-4px);
}

.about-seal {
  position: absolute;
  top: 36%;
  left: 50%;
  width: 118px;
  height: 118px;
  color: var(--bleached-sand);
  z-index: 3;
  animation: aboutSealSpin 24s linear infinite;
  pointer-events: none;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.4));
}
.about-seal svg { width: 100%; height: 100%; }

@keyframes aboutSealSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-note {
  position: absolute;
  top: -0.4rem;
  right: 4%;
  font-family: var(--font-accent);
  font-size: 1.45rem;
  color: var(--bleached-sand);
  transform: rotate(5deg);
  z-index: 4;
  max-width: 190px;
  text-align: center;
  line-height: 1.1;
  opacity: 0.95;
}

/* --- Right: content --- */
.about-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dusty-blue);
  margin-bottom: var(--space-md);
}
.about-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bleached-sand);
  box-shadow: 0 0 0 4px rgba(218, 204, 180, 0.14);
}

.about h2 {
  margin-bottom: 0.9rem;
  color: var(--ablescent-white);
  letter-spacing: -0.01em;
}
.about h2 em {
  font-style: italic;
  color: var(--bleached-sand);
}

.about-caveat {
  display: block;
  font-size: 1.7rem;
  color: var(--bleached-sand);
  margin-bottom: var(--space-md);
  transform: rotate(-0.6deg);
  transform-origin: left center;
  line-height: 1.2;
}

.about-text {
  opacity: 0.7;
  line-height: 1.85;
  margin-bottom: var(--space-md);
  max-width: 52ch;
  color: var(--ablescent-white);
}

.about-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.about-btn {
  border-color: var(--ablescent-white);
  color: var(--ablescent-white);
}
.about-btn:hover {
  background: var(--ablescent-white);
  color: var(--neon-navy);
}
.about-link {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dusty-blue);
  transition: letter-spacing 0.35s var(--ease), color 0.35s var(--ease);
}
.about-link:hover {
  letter-spacing: 0.28em;
  color: var(--bleached-sand);
}

/* Values as editorial numbered list */
.about-values {
  list-style: none;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(218, 204, 180, 0.14);
  display: grid;
  gap: 1.4rem;
}

.about-value {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.2rem;
  align-items: start;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(218, 204, 180, 0.08);
}
.about-value:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-value-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--bleached-sand);
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.about-value-body h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
  color: var(--ablescent-white);
  letter-spacing: -0.005em;
}
.about-value-body p {
  font-size: 0.85rem;
  opacity: 0.55;
  line-height: 1.65;
  max-width: 38ch;
  color: var(--ablescent-white);
}

@media (prefers-reduced-motion: reduce) {
  .about-seal { animation: none; }
  .about-star-1, .about-star-2 { animation: none; }
}

/* =============================================
   FORFAITS — edge-to-edge cards
   ============================================= */
/* =============================================
   FORFAITS — editorial price ladder (Section 6)
   ============================================= */
.forfaits {
  background: var(--bleached-sand);
  color: var(--neon-navy);
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

/* oversized outline backdrop word */
.forfaits-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 0;
}
.forfaits-backdrop-word {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(14rem, 38vw, 30rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(19, 25, 54, 0.12);
  text-stroke: 1px rgba(19, 25, 54, 0.12);
  transform: translate(-8%, 6%);
  white-space: nowrap;
}

/* scattered stars */
.forfaits-star {
  position: absolute;
  color: var(--neon-navy);
  opacity: 0.32;
  z-index: 1;
  pointer-events: none;
}
.forfaits-star-1 { top: 10%; right: 8%; width: 22px; transform: rotate(12deg); animation: heroStarFloat 6.5s ease-in-out infinite; }
.forfaits-star-2 { bottom: 14%; left: 7%; width: 16px; transform: rotate(-14deg); animation: heroStarFloat 7.8s ease-in-out 0.6s infinite; }

.forfaits .container { position: relative; z-index: 2; }

/* --- Editorial header --- */
.forfaits-header {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-lg);
  align-items: end;
  margin-bottom: 4.5rem;
}
.forfaits-header-left { position: relative; }

.forfaits-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-navy);
  opacity: 0.78;
  margin-bottom: 1.25rem;
}
.forfaits-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-navy);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(19, 25, 54, 0.12);
}

.forfaits-header-left h2 {
  max-width: 16ch;
  margin: 0;
}
.forfaits-header-left h2 em {
  font-style: italic;
  color: var(--bleached-cedar);
}

.forfaits-caveat {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 1.35rem;
  color: var(--bleached-cedar);
  transform: rotate(-1.5deg);
}

.forfaits-header-right {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 1.6rem;
  text-align: left;
  justify-self: end;
  max-width: 460px;
}
.forfaits-seal {
  display: inline-block;
  width: 92px;
  height: 92px;
  color: var(--neon-navy);
  opacity: 0.85;
  animation: spin 32s linear infinite;
}
.forfaits-seal svg { width: 100%; height: 100%; }
.forfaits-header-right p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--neon-navy);
  opacity: 0.7;
  max-width: 36ch;
  margin: 0;
}

/* --- Tier card grid --- */
.forfaits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

.forfait-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--swan-wing);
  color: var(--neon-navy);
  padding: 2.4rem 2rem 2rem;
  border: 1px solid rgba(19, 25, 54, 0.1);
  box-shadow:
    0 30px 60px -32px rgba(19, 25, 54, 0.45),
    0 12px 24px -18px rgba(19, 25, 54, 0.25);
  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease),
    border-color 0.45s var(--ease);
}
.forfait-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--bleached-cedar);
  opacity: 0.85;
}
.forfait-card:hover {
  transform: translateY(-10px) rotate(-0.4deg);
  box-shadow:
    0 50px 90px -38px rgba(19, 25, 54, 0.55),
    0 22px 44px -22px rgba(19, 25, 54, 0.3);
  border-color: rgba(19, 25, 54, 0.22);
}

/* Featured (middle) card */
.forfait-card.featured {
  background: var(--neon-navy);
  color: var(--ablescent-white);
  border-color: var(--neon-navy);
  transform: translateY(-6px);
}
.forfait-card.featured::before { background: var(--bleached-sand); opacity: 1; }
.forfait-card.featured:hover { transform: translateY(-14px) rotate(-0.4deg); }

/* Hand-written sticker on featured */
.forfait-sticker {
  position: absolute;
  top: -1.1rem;
  right: 1.4rem;
  font-family: var(--font-accent);
  font-size: 1.45rem;
  color: var(--neon-navy);
  background: var(--bleached-sand);
  padding: 0.25rem 0.85rem;
  box-shadow: 0 12px 26px -10px rgba(19, 25, 54, 0.45);
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
  transform: rotate(-5deg);
}

/* Card head: number + name + tagline */
.forfait-head {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}
.forfait-num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--bleached-cedar);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.forfait-card.featured .forfait-num { color: var(--bleached-sand); }
.forfait-num-total {
  font-size: 0.95rem;
  opacity: 0.55;
  margin-left: 0.25rem;
  letter-spacing: 0;
}
.forfait-name {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0.2rem 0 0;
}
.forfait-tagline {
  font-size: 0.86rem;
  line-height: 1.6;
  opacity: 0.62;
  margin: 0;
  max-width: 32ch;
}

/* Price line */
.forfait-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 1.1rem 0 1.2rem;
  border-top: 1px dashed rgba(19, 25, 54, 0.18);
  border-bottom: 1px dashed rgba(19, 25, 54, 0.18);
}
.forfait-card.featured .forfait-price {
  border-color: rgba(218, 204, 180, 0.22);
}
.forfait-price-prefix {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}
.forfait-price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.forfait-price-suffix {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.6;
}

/* Decorative ✦ rule between price and features */
.forfait-rule {
  position: relative;
  height: 1px;
  margin: 1.4rem 0 1.1rem;
  background: linear-gradient(90deg, transparent, rgba(19, 25, 54, 0.18), transparent);
  text-align: center;
}
.forfait-card.featured .forfait-rule {
  background: linear-gradient(90deg, transparent, rgba(218, 204, 180, 0.32), transparent);
}
.forfait-rule span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--swan-wing);
  padding: 0 0.6rem;
  font-size: 0.7rem;
  color: var(--bleached-cedar);
  opacity: 0.7;
}
.forfait-card.featured .forfait-rule span {
  background: var(--neon-navy);
  color: var(--bleached-sand);
}

/* Feature list */
.forfait-features {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.forfait-features li {
  position: relative;
  padding: 0.1rem 0 0.1rem 1.2rem;
  font-size: 0.86rem;
  line-height: 1.55;
  opacity: 0.85;
}
.forfait-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.35rem;
  font-size: 0.55rem;
  color: var(--bleached-cedar);
  opacity: 0.85;
}
.forfait-card.featured .forfait-features li::before {
  color: var(--bleached-sand);
}

/* Card footer: link + handwritten note */
.forfait-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(19, 25, 54, 0.12);
  margin-top: auto;
}
.forfait-card.featured .forfait-foot {
  border-color: rgba(218, 204, 180, 0.18);
}
.forfait-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  transition: gap 0.4s var(--ease-out), color 0.4s var(--ease);
}
.forfait-link::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.4s var(--ease-out);
}
.forfait-card:hover .forfait-link { gap: 0.85rem; color: var(--bleached-cedar); }
.forfait-card:hover .forfait-link::after { transform: translateX(6px); }
.forfait-card.featured:hover .forfait-link { color: var(--bleached-sand); }

.forfait-foot-note {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--bleached-cedar);
  transform: rotate(-2deg);
  white-space: nowrap;
  opacity: 0.85;
}
.forfait-card.featured .forfait-foot-note { color: var(--bleached-sand); }

/* Editorial footnote strip */
.forfaits-footnote {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  margin-top: 3.2rem;
  padding: 1.4rem 1.8rem;
  background: var(--swan-wing);
  border: 1px solid rgba(19, 25, 54, 0.1);
  border-left: 4px solid var(--bleached-cedar);
}
.forfaits-footnote-mark {
  font-size: 1.2rem;
  color: var(--bleached-cedar);
  opacity: 0.8;
}
.forfaits-footnote p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--neon-navy);
  opacity: 0.72;
  margin: 0;
  max-width: 70ch;
}
.forfaits-footnote-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-navy);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.35s var(--ease), letter-spacing 0.35s var(--ease);
}
.forfaits-footnote-link:hover {
  color: var(--bleached-cedar);
  letter-spacing: 0.22em;
}

@media (prefers-reduced-motion: reduce) {
  .forfaits-seal { animation: none; }
  .forfaits-star-1, .forfaits-star-2 { animation: none; }
}

/* =============================================
   CTA — discovery voucher (Section 7)
   ============================================= */
.cta-section {
  background: var(--swan-wing);
  color: var(--neon-navy);
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

.cta-section .container { position: relative; z-index: 2; }

/* outline backdrop word */
.cta-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.cta-backdrop-word {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(14rem, 40vw, 32rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(19, 25, 54, 0.13);
  text-stroke: 1px rgba(19, 25, 54, 0.13);
  white-space: nowrap;
  transform: translateY(-2%);
}

/* scattered stars */
.cta-star {
  position: absolute;
  color: var(--bleached-cedar);
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}
.cta-star-1 { top: 12%; left: 6%; width: 22px; transform: rotate(-12deg); animation: heroStarFloat 6.5s ease-in-out infinite; }
.cta-star-2 { bottom: 16%; right: 7%; width: 18px; transform: rotate(14deg); animation: heroStarFloat 7.6s ease-in-out 0.7s infinite; }
.cta-star-3 { top: 18%; right: 22%; width: 14px; transform: rotate(6deg); animation: heroStarFloat 8.2s ease-in-out 1.3s infinite; }

/* --- the voucher card --- */
.cta-voucher {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--neon-navy);
  color: var(--ablescent-white);
  padding: 1.4rem 2.6rem 1.4rem;
  box-shadow:
    0 60px 120px -40px rgba(19, 25, 54, 0.55),
    0 24px 48px -24px rgba(19, 25, 54, 0.35);
  transform: rotate(-0.6deg);
  transition: transform 0.7s var(--ease-out), box-shadow 0.7s var(--ease);
}
.cta-voucher:hover {
  transform: rotate(-0.2deg) translateY(-4px);
  box-shadow:
    0 80px 140px -42px rgba(19, 25, 54, 0.6),
    0 32px 60px -28px rgba(19, 25, 54, 0.4);
}

/* perforated edges (left + right notches via radial-gradient) */
.cta-voucher::before,
.cta-voucher::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  background: var(--swan-wing);
  border-radius: 50%;
  transform: translateY(-50%);
}
.cta-voucher::before { left: -11px; }
.cta-voucher::after  { right: -11px; }

/* Top stamp row */
.cta-voucher-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0 1rem;
  border-bottom: 1px dashed rgba(218, 204, 180, 0.35);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bleached-sand);
}
.cta-voucher-id { opacity: 0.7; font-variant-numeric: tabular-nums; }
.cta-voucher-id sup { font-size: 0.55em; vertical-align: super; opacity: 0.85; }
.cta-voucher-tag {
  background: var(--bleached-sand);
  color: var(--neon-navy);
  padding: 0.3rem 0.85rem;
  letter-spacing: 0.24em;
  transform: rotate(-1.5deg);
}
.cta-voucher-loc { opacity: 0.6; }

/* Main body */
.cta-voucher-body {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2.4rem;
  align-items: center;
  padding: 2.4rem 0 2rem;
  position: relative;
}
/* central dashed perforation between the two zones */
.cta-voucher-body::after {
  content: '';
  position: absolute;
  top: 1.4rem;
  bottom: 1.2rem;
  left: calc(57% - 0.5px);
  width: 1px;
  background-image: linear-gradient(to bottom, rgba(218, 204, 180, 0.4) 0 6px, transparent 6px 12px);
  background-size: 1px 12px;
  background-repeat: repeat-y;
  pointer-events: none;
}

/* Left: copy */
.cta-voucher-copy { padding-right: 1rem; }

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  opacity: 0.85;
  margin-bottom: 1.1rem;
}
.cta-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bleached-sand);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(218, 204, 180, 0.18);
}

.cta-voucher-copy h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  max-width: 18ch;
  color: var(--ablescent-white);
}
.cta-voucher-copy h2 em {
  font-style: italic;
  color: var(--bleached-sand);
}

.cta-accent {
  font-family: var(--font-accent);
  font-size: 1.55rem;
  color: var(--bleached-sand);
  display: block;
  margin: 0 0 1.1rem;
  transform: rotate(-1.5deg);
}

.cta-voucher-copy p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ablescent-white);
  opacity: 0.7;
  max-width: 44ch;
  margin: 0;
}

/* Right: action */
.cta-voucher-action {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
  padding-left: 2rem;
}

.cta-stamp {
  position: absolute;
  top: -2.2rem;
  right: -1rem;
  width: 130px;
  height: 130px;
  color: var(--bleached-sand);
  opacity: 0.95;
  animation: spin 38s linear infinite;
  transform: rotate(-6deg);
  pointer-events: none;
}
.cta-stamp svg { width: 100%; height: 100%; }

.cta-voucher-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.4rem 1rem 1.6rem;
  background: var(--bleached-sand);
  color: var(--neon-navy);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--bleached-sand);
  transition:
    background 0.45s var(--ease),
    color 0.45s var(--ease),
    transform 0.5s var(--ease-out),
    gap 0.45s var(--ease);
  margin-top: 5.2rem;
}
.cta-voucher-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--neon-navy);
  color: var(--bleached-sand);
  transition: transform 0.5s var(--ease-out), background 0.45s var(--ease);
}
.cta-voucher-btn-arrow svg { width: 18px; height: 18px; }
.cta-voucher-btn:hover {
  background: transparent;
  color: var(--bleached-sand);
  gap: 1.4rem;
}
.cta-voucher-btn:hover .cta-voucher-btn-arrow {
  background: var(--bleached-sand);
  color: var(--neon-navy);
  transform: translateX(4px) rotate(-6deg);
}

.cta-voucher-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  opacity: 0.8;
}
.cta-voucher-meta li[aria-hidden="true"] { opacity: 0.55; }

/* Bottom signature strip */
.cta-voucher-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0.9rem;
  border-top: 1px dashed rgba(218, 204, 180, 0.35);
}
.cta-voucher-sign {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--bleached-sand);
  transform: rotate(-1deg);
}
.cta-voucher-foot-meta {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  .cta-stamp { animation: none; }
  .cta-star-1, .cta-star-2, .cta-star-3 { animation: none; }
  .cta-voucher { transform: none; }
  .cta-voucher:hover { transform: none; }
}

/* =============================================
   FOOTER — editorial colophon (Section 8)
   ============================================= */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.footer {
  background: var(--neon-navy);
  color: var(--ablescent-white);
  position: relative;
  overflow: hidden;
  padding: 4.4rem 0 1.6rem;
}

.footer .container { position: relative; z-index: 2; }

/* Top hairline rule with a centered ✦ */
.footer-rule {
  position: relative;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 204, 180, 0.28), transparent);
}
.footer-rule span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--neon-navy);
  padding: 0 0.8rem;
  font-size: 0.85rem;
  color: var(--bleached-sand);
  opacity: 0.75;
}

/* Outline wordmark bleeding off the bottom */
.footer-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.footer-backdrop-word {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16rem, 44vw, 36rem);
  line-height: 0.78;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(218, 204, 180, 0.16);
  text-stroke: 1px rgba(218, 204, 180, 0.16);
  white-space: nowrap;
  transform: translateY(28%);
}

/* --- Masthead --- */
.footer-masthead {
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: var(--space-lg);
  align-items: start;
  padding-top: 3.6rem;
  padding-bottom: 3rem;
}

.footer-brand { max-width: 56ch; }
.footer-logo {
  display: inline-block;
  text-decoration: none;
  color: var(--ablescent-white);
}
.footer-logo-mark {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}
.footer-logo-svg {
  height: clamp(3.6rem, 6.5vw, 5.4rem);
  width: auto;
  display: block;
  color: var(--ablescent-white);
}
.footer-logo-dot {
  color: var(--bleached-sand);
  margin-left: 0.05em;
}

.footer-tag {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  opacity: 0.78;
}
.footer-mission {
  margin-top: 1.2rem;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--ablescent-white);
  opacity: 0.65;
  max-width: 50ch;
}

.footer-colophon {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-self: end;
  padding-top: 0.8rem;
}
.footer-colophon-seal {
  display: inline-block;
  width: 138px;
  height: 138px;
  color: var(--bleached-sand);
  opacity: 0.92;
  animation: spin 38s linear infinite;
}
.footer-colophon-seal svg { width: 100%; height: 100%; }
.footer-handwritten {
  position: absolute;
  bottom: -0.4rem;
  left: -1.4rem;
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--bleached-sand);
  transform: rotate(-8deg);
  white-space: nowrap;
}

/* --- Editorial sitemap grid --- */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 1.4fr;
  gap: var(--space-lg);
  padding: 2.6rem 0 2.4rem;
  border-top: 1px solid rgba(218, 204, 180, 0.12);
  border-bottom: 1px solid rgba(218, 204, 180, 0.12);
}

.footer-col {
  position: relative;
  display: flex;
  flex-direction: column;
}
.footer-col-num {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--bleached-sand);
  opacity: 0.55;
  margin-bottom: 0.6rem;
  font-variant-numeric: tabular-nums;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
  color: var(--bleached-sand);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
  display: inline-block;
  font-size: 0.88rem;
  color: var(--ablescent-white);
  text-decoration: none;
  opacity: 0.62;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease-out), color 0.35s var(--ease);
}
.footer-col a:hover {
  opacity: 1;
  color: var(--bleached-sand);
  transform: translateX(3px);
}

.footer-address {
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--ablescent-white);
  opacity: 0.55;
  letter-spacing: 0.02em;
}

/* --- Newsletter column --- */
.footer-letter-copy {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ablescent-white);
  opacity: 0.7;
  margin: 0 0 1rem;
  max-width: 32ch;
}
.footer-letter-form {
  position: relative;
  display: flex;
  align-items: stretch;
  background: transparent;
  border-bottom: 1px solid rgba(218, 204, 180, 0.32);
  transition: border-color 0.4s var(--ease);
}
.footer-letter-form:focus-within {
  border-color: var(--bleached-sand);
}
.footer-letter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0.85rem 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ablescent-white);
  letter-spacing: 0.01em;
}
.footer-letter-form input::placeholder {
  color: var(--ablescent-white);
  opacity: 0.35;
  font-style: italic;
}
.footer-letter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: auto 0;
  border: 1px solid rgba(218, 204, 180, 0.4);
  border-radius: 50%;
  background: transparent;
  color: var(--bleached-sand);
  cursor: pointer;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease),
    transform 0.5s var(--ease-out),
    border-color 0.4s var(--ease);
}
.footer-letter-btn svg { width: 18px; height: 18px; }
.footer-letter-btn:hover {
  background: var(--bleached-sand);
  color: var(--neon-navy);
  border-color: var(--bleached-sand);
  transform: translateX(3px) rotate(-6deg);
}
.footer-letter-form.is-sent::after {
  content: '✓ merci';
  position: absolute;
  left: 0;
  bottom: -1.6rem;
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--bleached-sand);
}
.footer-letter-note {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--bleached-sand);
  opacity: 0.85;
  transform: rotate(-1deg);
}

/* --- Bottom strip --- */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.4rem;
  padding-top: 1.6rem;
}
.footer-bottom-left { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-bottom-left p {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--ablescent-white);
  opacity: 0.45;
}
.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-legal a {
  color: var(--ablescent-white);
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.3s, color 0.3s;
}
.footer-legal a:hover { opacity: 1; color: var(--bleached-sand); }
.footer-legal li[aria-hidden="true"] { opacity: 0.3; }

.footer-totop {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(218, 204, 180, 0.4);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  text-decoration: none;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease),
    border-color 0.4s var(--ease),
    transform 0.5s var(--ease-out);
}
.footer-totop-arrow {
  display: inline-flex;
  font-size: 1rem;
  transition: transform 0.5s var(--ease-out);
}
.footer-totop:hover {
  background: var(--bleached-sand);
  color: var(--neon-navy);
  border-color: var(--bleached-sand);
}
.footer-totop:hover .footer-totop-arrow { transform: translateY(-3px); }

.footer-socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
}
.footer-socials a {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ablescent-white);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.3s, color 0.3s, letter-spacing 0.3s;
}
.footer-socials a:hover {
  opacity: 1;
  color: var(--bleached-sand);
  letter-spacing: 0.2em;
}
.footer-socials li[aria-hidden="true"] {
  font-size: 0.55rem;
  color: var(--bleached-sand);
  opacity: 0.4;
}

@media (prefers-reduced-motion: reduce) {
  .footer-colophon-seal { animation: none; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-header {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    align-items: start;
  }
  .services-header-right {
    justify-self: start;
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .services-header-right p { max-width: 56ch; }
  .services-badge { display: none; }

  .service-row {
    grid-template-columns: 70px 1fr auto;
    gap: 1.2rem;
  }
  .service-preview { display: none; }
  .service-row .service-link { opacity: 1; }
  .service-sticker-hot { right: 1rem; }

  .forfaits-header {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    align-items: start;
  }
  .forfaits-header-right {
    justify-self: start;
    grid-template-columns: 1fr;
    gap: 1.1rem;
    max-width: 56ch;
  }
  .forfaits-seal { display: none; }
  .forfait-card { padding: 2.2rem 1.7rem 1.7rem; }
  .forfait-num { font-size: 2.6rem; }
  .forfait-price-amount { font-size: 2.1rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md) 2.2rem; }
  .footer-col-letter, .footer-col-contact { grid-column: auto; }
  .footer-colophon-seal { width: 116px; height: 116px; }
}

@media (max-width: 900px) {
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .nav-actions .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .announce-item { font-size: 0.62rem; letter-spacing: 0.18em; }
  .announce-bar::after { right: 36px; width: 50px; }
  .announce-bar::before { width: 50px; }
}

@media (max-width: 1024px) {
  .hero-backdrop-word { font-size: clamp(14rem, 52vw, 28rem); opacity: 0.28; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: calc(var(--announce-height) + 6rem);
    padding-bottom: 5rem;
  }
  body.no-announce .hero-grid { padding-top: 6rem; }
  .hero-visual {
    max-width: 420px;
    min-height: 460px;
    margin: 0 auto;
    order: 2;
  }
  .hero-title { font-size: clamp(2.6rem, 11vw, 4.4rem); }
  .hero-caveat { font-size: 1.3rem; }
  .hero-polaroid-main { width: 70%; right: 8%; }
  .hero-polaroid-sec  { width: 50%; bottom: 4%; left: 2%; }
  .hero-polaroid-sticker { width: 30%; top: 0; left: -2%; }
  .hero-badge { width: 92px; height: 92px; bottom: 10%; right: -2%; }
  .hero-handwritten { font-size: 1.2rem; top: 32%; right: -2%; }
  .hero-proof { gap: 0.9rem; padding-top: 1.2rem; }
  .hero-proof strong { font-size: 1.2rem; }
  .hero-scroll-cue { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .about-visual { min-height: 480px; max-width: 440px; margin: 0 auto; width: 100%; }
  .about-polaroid-main { width: 66%; left: 2%; }
  .about-polaroid-sec { width: 54%; right: -2%; }
  .about-seal { width: 94px; height: 94px; top: 42%; left: 46%; }
  .about-note { font-size: 1.2rem; right: -2%; top: -1rem; }
  .about-backdrop-word { font-size: clamp(10rem, 48vw, 18rem); }
  .about-caveat { font-size: 1.4rem; }
  .about-value { grid-template-columns: 50px 1fr; gap: 0.9rem; }
  .about-value-num { font-size: 2rem; }

  .forfaits-header { grid-template-columns: 1fr; gap: var(--space-md); align-items: start; }
  .forfaits-header-right { justify-self: start; max-width: 100%; }
  .forfaits-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 1.4rem; }
  .forfait-card.featured { transform: none; }
  .forfait-card.featured:hover { transform: translateY(-10px) rotate(-0.4deg); }
  .forfaits-backdrop-word { font-size: clamp(10rem, 48vw, 18rem); }
  .forfaits-footnote { grid-template-columns: 1fr; text-align: left; gap: 0.8rem; }
  .forfaits-caveat { font-size: 1.25rem; }

  .cta-voucher { padding: 1.2rem 1.6rem; transform: none; }
  .cta-voucher:hover { transform: translateY(-4px); }
  .cta-voucher-body {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 2rem 0 1.6rem;
  }
  .cta-voucher-body::after { display: none; }
  .cta-voucher-copy { padding-right: 0; }
  .cta-voucher-copy h2 { max-width: none; }
  .cta-voucher-action {
    padding-left: 0;
    align-items: stretch;
  }
  .cta-stamp {
    position: static;
    align-self: flex-end;
    width: 96px;
    height: 96px;
    margin-bottom: -0.6rem;
  }
  .cta-voucher-btn { margin-top: 0; justify-content: space-between; }
  .cta-voucher-foot { flex-direction: column; align-items: flex-start; gap: 0.4rem; text-align: left; }
  .cta-voucher-top { flex-wrap: wrap; gap: 0.6rem; }
  .cta-backdrop-word { font-size: clamp(10rem, 48vw, 18rem); }

  .footer-masthead {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding-top: 2.6rem;
    padding-bottom: 2.2rem;
  }
  .footer-colophon { justify-self: start; }
  .footer-handwritten { left: 5.6rem; bottom: 0.4rem; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md) 2rem;
    padding: 2rem 0;
  }
  .footer-col-letter, .footer-col-contact { grid-column: 1 / -1; }
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 1.4rem;
  }
  .footer-totop { justify-self: start; }
  .footer-socials { justify-content: flex-start; }
  .footer-backdrop-word { font-size: clamp(12rem, 60vw, 22rem); }

  .service-row {
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }
  .service-num { font-size: 2.4rem; }
  .service-row h3 { font-size: 1.4rem; }
  .service-row p { font-size: 0.88rem; }
  .service-row .service-link {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.3rem;
    opacity: 0.9;
  }
  .service-sticker { display: none; }
  .services-count { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-letter-form input { font-size: 0.84rem; }
  .footer-logo-mark { font-size: clamp(2.8rem, 14vw, 4rem); }
  .hero-handwritten { display: none; }
  .hero-polaroid-sticker { display: none; }
  .hero-proof { flex-wrap: wrap; }
  .hero-proof-sep { display: none; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.2em; }
  .hero-backdrop-word { font-size: 16rem; opacity: 0.22; }
}


/* =============================================
   SERVICES PAGE
   ============================================= */

/* ---- Nav active state ---- */
.nav-links a.nav-active {
  opacity: 1;
  position: relative;
}
.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: currentColor;
  opacity: 0.55;
}

/* ---- Page Hero ---- */
.svc-hero {
  position: relative;
  background: var(--neon-navy);
  color: var(--swan-wing);
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--announce-height) + 5rem + 5rem) 0 7rem;
}

/* Oversized editorial backdrop */
.svc-hero-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.svc-hero-backdrop-word {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(9rem, 22vw, 20rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 233, 0.055);
  white-space: nowrap;
  user-select: none;
  letter-spacing: -0.02em;
  padding-left: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Decorative stars */
.svc-hero-star {
  position: absolute;
  color: var(--bleached-sand);
  opacity: 0.28;
  pointer-events: none;
}
.svc-hero-star-1 {
  width: 22px;
  height: 22px;
  top: 28%;
  right: 8%;
  animation: heroStarFloat 6s ease-in-out 0.4s infinite;
}
.svc-hero-star-2 {
  width: 14px;
  height: 14px;
  top: 68%;
  left: 6%;
  animation: heroStarFloat 7.5s ease-in-out 1.2s infinite;
}

/* Inner layout */
.svc-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 5rem;
  align-items: center;
}

/* Eyebrow */
.svc-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.svc-hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bleached-sand);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(218, 204, 180, 0.55);
  animation: announcePulse 2s var(--ease) infinite;
}

/* Heading */
.svc-hero-content h1 {
  color: var(--swan-wing);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}
.svc-hero-content h1 > span { display: block; }
.svc-hero-content h1 em {
  font-style: italic;
  color: var(--bleached-sand);
  display: block;
}

/* Body copy */
.svc-hero-content > p {
  color: rgba(245, 240, 233, 0.68);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

/* CTAs */
.svc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.65s forwards;
}
.svc-hero-ctas .btn-outline {
  color: var(--swan-wing);
  border-color: rgba(245, 240, 233, 0.35);
}
.svc-hero-ctas .btn-outline:hover {
  background: rgba(245, 240, 233, 0.1);
  border-color: var(--swan-wing);
}

/* Aside: seal + stats */
.svc-hero-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeIn 1.1s var(--ease-out) 0.8s forwards;
}

.svc-hero-seal {
  width: 155px;
  height: 155px;
  flex-shrink: 0;
  color: var(--bleached-sand);
}
.svc-hero-seal svg {
  width: 100%;
  height: 100%;
  animation: spin 28s linear infinite;
}

.svc-hero-stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.svc-hero-stats li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(245, 240, 233, 0.09);
  border-left: 2px solid rgba(218, 204, 180, 0.6);
}
.svc-hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--bleached-sand);
  line-height: 1;
}
.svc-hero-stat-lbl {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 233, 0.5);
}

/* Handwritten floating accent */
.svc-hero-accent {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  font-size: 1.4rem;
  color: rgba(218, 204, 180, 0.4);
  z-index: 1;
  pointer-events: none;
  transform: rotate(-4deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .svc-hero-backdrop-word { font-size: clamp(8rem, 20vw, 16rem); opacity: 0.9; }
  .svc-hero-inner { gap: 3rem; }
}

@media (max-width: 860px) {
  .svc-hero-inner { grid-template-columns: 1fr; }
  .svc-hero-aside {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .svc-hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem;
    width: auto;
  }
  .svc-hero-stats li { flex: 1; min-width: 120px; }
  .svc-hero-accent { display: none; }
}

@media (max-width: 560px) {
  .svc-hero { padding-bottom: 4rem; }
  .svc-hero-aside { display: none; }
  .svc-hero-backdrop-word { font-size: clamp(6rem, 18vw, 10rem); }
}

@media (prefers-reduced-motion: reduce) {
  .svc-hero-eyebrow,
  .svc-hero-content h1,
  .svc-hero-content > p,
  .svc-hero-ctas,
  .svc-hero-aside { opacity: 1; animation: none; }
  .svc-hero-seal svg { animation: none; }
  .svc-hero-star { animation: none; }
}


/* =============================================
   SERVICES PAGE — LIST
   ============================================= */

/* Section wrapper */
.svc-list {
  background: var(--swan-wing);
  color: var(--neon-navy);
}

/* Section header: two-column (mirrors homepage services-header) */
.svc-list-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(19, 25, 54, 0.1);
  margin-bottom: 0;
}

.svc-list-header-left .subheadline {
  margin-bottom: 0.8rem;
  opacity: 0.55;
}
.svc-list-header-left h2 em {
  font-style: italic;
  color: var(--bleached-cedar);
}

.svc-list-header-right p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--neon-navy);
  opacity: 0.6;
  max-width: 42ch;
}

/* ---- Individual panel ---- */
.svc-panel {
  position: relative;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(19, 25, 54, 0.1);
}

/* ✦ separator mark on the top border of each panel */
.svc-panel::before {
  content: '✦';
  position: absolute;
  top: -0.65em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--bleached-cedar);
  background: var(--swan-wing);
  padding: 0 0.75rem;
  opacity: 0.45;
  pointer-events: none;
}

/* Top row: number + heading + CTA */
.svc-panel-top {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.svc-panel-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.3;
  padding-top: 0.2rem;
}

.svc-panel-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.svc-panel-sub {
  font-size: 1rem;
  color: var(--bleached-cedar);
  opacity: 0.7;
}

.svc-panel-cta {
  border-color: rgba(19, 25, 54, 0.3);
  flex-shrink: 0;
  font-size: 0.68rem;
}
.svc-panel-cta:hover {
  border-color: var(--neon-navy);
}

/* Body: two columns — text+deliverables | visual+tags */
.svc-panel-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-left: calc(72px + 1.5rem); /* align with heading, past the number */
}

.svc-panel-desc {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(19, 25, 54, 0.7);
  max-width: 52ch;
  margin-bottom: 1.6rem;
}

.svc-panel-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.svc-panel-deliverables li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--neon-navy);
  opacity: 0.75;
  padding-left: 1.2rem;
  position: relative;
}
.svc-panel-deliverables li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--bleached-cedar);
  opacity: 0.65;
  font-size: 0.75rem;
}

/* Right column */
.svc-panel-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.svc-panel-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--bleached-sand) 0%, var(--ablescent-white) 100%);
  overflow: hidden;
}
.svc-panel-visual .placeholder-text {
  font-size: 0.55rem;
  color: var(--neon-navy);
  opacity: 0.35;
}

/* Featured panel (03 — most requested) */
.svc-panel--featured {
  background: rgba(19, 25, 54, 0.025);
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: -2rem;
  margin-right: -2rem;
}
.svc-panel--featured::before { background: var(--swan-wing); }

.svc-panel-badge {
  position: absolute;
  top: 3rem;
  right: 2.5rem;
  font-size: 1.1rem;
  color: var(--bleached-cedar);
  transform: rotate(-4deg);
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .svc-panel-body { padding-left: 0; gap: 2rem; }
}

@media (max-width: 860px) {
  .svc-list-header { grid-template-columns: 1fr; gap: 1.2rem; }
  .svc-panel-top { grid-template-columns: 56px 1fr auto; gap: 1rem; }
  .svc-panel-body { grid-template-columns: 1fr; gap: 1.8rem; }
  .svc-panel--featured { padding-left: 1.2rem; padding-right: 1.2rem; margin-left: -1.2rem; margin-right: -1.2rem; }
  .svc-panel-badge { right: 1.2rem; top: 2rem; }
}

@media (max-width: 560px) {
  .svc-panel-top { grid-template-columns: 1fr auto; }
  .svc-panel-num { display: none; }
  .svc-panel-heading h2 { font-size: 1.5rem; }
  .svc-panel-visual { aspect-ratio: 4 / 3; }
}


/* =============================================
   SERVICES PAGE — PROCESS
   ============================================= */

.svc-process {
  position: relative;
  background: var(--neon-navy);
  color: var(--swan-wing);
  padding: var(--space-xl) 0 calc(var(--space-xl) + 1rem);
  overflow: hidden;
}

/* Backdrop word */
.svc-process-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.svc-process-backdrop-word {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(9rem, 22vw, 20rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 233, 0.05);
  white-space: nowrap;
  user-select: none;
  letter-spacing: -0.02em;
  padding-right: 1rem;
}

/* Decorative stars */
.svc-process-star {
  position: absolute;
  color: var(--bleached-sand);
  opacity: 0.22;
  pointer-events: none;
}
.svc-process-star-1 { width: 18px; height: 18px; top: 14%; left: 7%; animation: heroStarFloat 7s ease-in-out infinite; }
.svc-process-star-2 { width: 12px; height: 12px; bottom: 18%; right: 5%; animation: heroStarFloat 6s ease-in-out 1s infinite; }

/* Section header — centred */
.svc-process-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4.5rem;
}

.svc-process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  margin-bottom: 1.3rem;
}
.svc-process-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bleached-sand);
  flex-shrink: 0;
  animation: announcePulse 2s var(--ease) infinite;
}

.svc-process-header h2 {
  color: var(--swan-wing);
  margin-bottom: 1.1rem;
}
.svc-process-header h2 > span { display: block; }
.svc-process-header h2 em {
  font-style: italic;
  color: var(--bleached-sand);
}
.svc-process-header > p {
  color: rgba(245, 240, 233, 0.58);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 52ch;
  margin: 0 auto;
}

/* Steps grid — 4 columns */
.svc-process-steps {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(245, 240, 233, 0.1);
  border-left: 1px solid rgba(245, 240, 233, 0.1);
}

.svc-process-step {
  padding: 2.8rem 2rem 2.8rem 2rem;
  border-right: 1px solid rgba(245, 240, 233, 0.1);
  border-bottom: 1px solid rgba(245, 240, 233, 0.1);
  position: relative;
  transition: background 0.4s var(--ease);
}
.svc-process-step:hover {
  background: rgba(245, 240, 233, 0.04);
}

/* Step number */
.svc-step-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--bleached-sand);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 1.4rem;
  transition: opacity 0.4s var(--ease);
}
.svc-process-step:hover .svc-step-num { opacity: 0.35; }

/* Step heading */
.svc-step-content h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--swan-wing);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

/* Step description */
.svc-step-content p {
  font-size: 0.875rem;
  color: rgba(245, 240, 233, 0.55);
  line-height: 1.75;
  max-width: 28ch;
  margin-bottom: 1.2rem;
}

/* Accent tag line */
.svc-step-detail {
  display: block;
  font-size: 0.85rem;
  color: var(--bleached-sand);
  opacity: 0.45;
  letter-spacing: 0.02em;
}

/* Bottom foot strip */
.svc-process-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(245, 240, 233, 0.1);
  flex-wrap: wrap;
}

.svc-process-foot-text {
  flex: 1;
  font-size: 1.25rem;
  color: rgba(218, 204, 180, 0.45);
}

/* Responsive */
@media (max-width: 1024px) {
  .svc-process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .svc-process-steps { grid-template-columns: 1fr; }
  .svc-process-step { padding: 2rem 0; border-right: none; }
  .svc-process-foot { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .svc-process-foot-text { font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  .svc-process-star { animation: none; }
  .svc-process-eyebrow-dot { animation: none; }
}


/* =============================================
   SERVICES PAGE — FORFAITS TEASER
   ============================================= */

.svc-forfaits {
  background: var(--ablescent-white);
  color: var(--neon-navy);
}

/* Header: two-column */
.svc-forfaits-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(19, 25, 54, 0.12);
  margin-bottom: 0;
}

.svc-forfaits-header-left .subheadline { margin-bottom: 0.8rem; opacity: 0.55; }
.svc-forfaits-header-left h2 em { font-style: italic; color: var(--bleached-cedar); }

.svc-forfaits-caveat {
  display: block;
  font-size: 1.2rem;
  color: var(--bleached-cedar);
  opacity: 0.65;
  margin-top: 0.6rem;
}

.svc-forfaits-header-right {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: flex-start;
}
.svc-forfaits-header-right p {
  font-size: 0.95rem;
  color: rgba(19, 25, 54, 0.6);
  line-height: 1.7;
  max-width: 42ch;
}

/* Package rows list */
.svc-forfaits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.svc-forfait-row {
  position: relative;
  display: grid;
  grid-template-columns: 200px 180px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem 1.6rem;
  border-bottom: 1px solid rgba(19, 25, 54, 0.1);
  transition: background 0.35s var(--ease), padding-left 0.35s var(--ease);
}
.svc-forfait-row::before {
  content: '✦';
  position: absolute;
  top: -0.65em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--bleached-cedar);
  background: var(--ablescent-white);
  padding: 0 0.7rem;
  opacity: 0.4;
  pointer-events: none;
}
.svc-forfait-row:hover { background: rgba(19, 25, 54, 0.03); padding-left: 2.2rem; }

/* Featured row — dark navy */
.svc-forfait-row--featured {
  background: var(--neon-navy);
  color: var(--swan-wing);
}
.svc-forfait-row--featured::before { background: var(--neon-navy); color: var(--bleached-sand); opacity: 0.5; }
.svc-forfait-row--featured:hover { background: var(--bleached-cedar); padding-left: 2.2rem; }

/* Handwritten sticker on featured */
.svc-forfait-sticker {
  position: absolute;
  top: 1rem;
  right: 1.6rem;
  font-size: 1rem;
  color: var(--bleached-sand);
  opacity: 0.55;
  transform: rotate(-3deg);
  pointer-events: none;
}

/* Column: id (number + name) */
.svc-forfait-id {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.svc-forfait-num {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.3;
  flex-shrink: 0;
}
.svc-forfait-name {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.1;
}

/* Column: price */
.svc-forfait-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.svc-forfait-price-prefix,
.svc-forfait-price-suffix {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}
.svc-forfait-price {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.svc-forfait-row--featured .svc-forfait-price { color: var(--bleached-sand); }

/* Column: description + includes */
.svc-forfait-desc p {
  font-size: 0.85rem;
  color: inherit;
  opacity: 0.6;
  margin-bottom: 0.8rem;
  max-width: 42ch;
  line-height: 1.6;
}
.svc-forfait-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.svc-forfait-includes li {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.6;
  padding-left: 1rem;
  position: relative;
}
.svc-forfait-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  top: 0.18em;
  opacity: 0.6;
}

/* Column: action */
.svc-forfait-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}
.svc-forfait-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s var(--ease), opacity 0.3s var(--ease);
  white-space: nowrap;
}
.svc-forfait-link::after { content: '→'; transition: transform 0.35s var(--ease); }
.svc-forfait-row:hover .svc-forfait-link::after,
.svc-forfait-link:hover::after { transform: translateX(4px); }

.svc-forfait-note {
  font-size: 0.85rem;
  opacity: 0.4;
}

/* Footnote */
.svc-forfaits-footnote {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(19, 25, 54, 0.1);
  font-size: 0.85rem;
  color: rgba(19, 25, 54, 0.5);
  max-width: none;
  line-height: 1.65;
}
.svc-forfaits-footnote-mark { flex-shrink: 0; font-size: 0.7rem; margin-top: 0.2rem; }

/* Responsive */
@media (max-width: 1024px) {
  .svc-forfait-row { grid-template-columns: 160px 160px 1fr auto; gap: 1.5rem; }
}

@media (max-width: 860px) {
  .svc-forfaits-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-forfait-row { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1rem 1.5rem; }
  .svc-forfait-desc { grid-column: 1 / -1; }
  .svc-forfait-action { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .svc-forfait-sticker { top: auto; bottom: 1rem; right: 1rem; }
}

@media (max-width: 560px) {
  .svc-forfait-row { grid-template-columns: 1fr; padding: 2rem 0; }
  .svc-forfait-row:hover { padding-left: 0; }
  .svc-forfait-id { flex-direction: column; gap: 0.2rem; }
  .svc-forfait-row--featured { padding: 2rem 1.2rem; }
}


/* =============================================
   ORLÉ — ALTERNATIVE HOMEPAGE
   Stratège de marque · privé · profond
   Builds on top of style.css — same tokens & chrome.
   ============================================= */


/* =============================================
   NAV DROPDOWN — Services
   ============================================= */
.nav-dropdown-parent {
  position: relative;
}

.nav-dropdown-arrow {
  font-size: 0.6em;
  margin-left: 0.25em;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.25s var(--ease);
}
.nav-dropdown-parent:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(247, 246, 238, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(98, 18, 23, 0.1);
  list-style: none;
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 1010;
  box-shadow: 0 12px 32px -12px rgba(98, 18, 23, 0.18);
}
.nav-dropdown-parent:hover .nav-dropdown-menu,
.nav-dropdown-parent:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li { list-style: none; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.4rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--neon-navy);
  transition: background 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover {
  background: rgba(98, 18, 23, 0.05);
  padding-left: 1.8rem;
}

/* Mobile sub-items */
.mobile-sub {
  padding-left: 2.2rem !important;
  font-size: 0.82em !important;
  opacity: 0.72;
}

/* =============================================
   HERO  —  alt-hero
   ============================================= */

/* Mask the area behind the transparent nav so nothing bleeds through */
.alt-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--announce-height) + 7rem);
  background: var(--swan-wing);
  z-index: 1;
  pointer-events: none;
}

.alt-hero {
  min-height: calc(100dvh - var(--announce-height));
  display: flex;
  align-items: center;
  position: relative;
  background: var(--swan-wing);
  overflow: hidden;
  isolation: isolate;
}
body.no-announce .alt-hero { min-height: 100dvh; }

/* Oversized editorial backdrop word */
.alt-hero-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.alt-hero-backdrop-word {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16rem, 38vw, 32rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px var(--bleached-sand);
  text-stroke: 2px var(--bleached-sand);
  opacity: 0.32;
  transform: translate(-8%, 6%);
  user-select: none;
  white-space: nowrap;
}

/* Decorative star accents */
.alt-hero-star {
  position: absolute;
  z-index: 1;
  color: var(--bleached-cedar);
  pointer-events: none;
  opacity: 0.55;
}
.alt-hero-star-1 { top: 12%; left: 48%; width: 22px; transform: rotate(12deg); animation: altHeroStarFloat 6s ease-in-out infinite; }
.alt-hero-star-2 { bottom: 22%; left: 36%; width: 14px; transform: rotate(-20deg); animation: altHeroStarFloat 7s ease-in-out 0.6s infinite; }
.alt-hero-star-3 { top: 42%; right: 4%; width: 12px; transform: rotate(8deg); animation: altHeroStarFloat 5.5s ease-in-out 1.2s infinite; }

@keyframes altHeroStarFloat {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50%      { transform: translateY(-6px); opacity: 0.9; }
}

.alt-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: var(--space-md);
  align-items: center;
  padding-top: calc(var(--announce-height) + 7rem);
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}
body.no-announce .alt-hero-grid { padding-top: 2.5rem; }

.alt-hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  text-align: center;
}

.alt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--neon-navy);
  margin-bottom: 1.85rem;
  padding: 0.5rem 0.9rem 0.5rem 0.75rem;
  background: rgba(174, 161, 144, 0.35);
  border: 1px solid rgba(98, 18, 23, 0.08);
  border-radius: 999px;
  animation: fadeUp 0.8s var(--ease-out) 0.05s both;
}
.alt-hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bleached-cedar);
  box-shadow: 0 0 0 0 rgba(38, 24, 52, 0.5);
  animation: altHeroEyebrowPulse 2.2s var(--ease) infinite;
}
@keyframes altHeroEyebrowPulse {
  0%   { box-shadow: 0 0 0 0 rgba(38, 24, 52, 0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(38, 24, 52, 0); }
  100% { box-shadow: 0 0 0 0 rgba(38, 24, 52, 0); }
}

/* Display headline */
.alt-hero-title {
  color: var(--neon-navy);
  margin: 0 0 1.2rem 0;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-family: var(--font-heading);
  font-weight: 400;
}
.alt-hero-title-line {
  display: block;
}
.alt-hero-title-line.line-1 { animation: fadeUp 0.9s var(--ease-out) 0.15s both; }
.alt-hero-title-line.line-2 { animation: fadeUp 0.9s var(--ease-out) 0.27s both; color: var(--neon-navy); opacity: 0.92; }
.alt-hero-title-line.line-3 {
  display: inline-block;
  animation: fadeUp 0.9s var(--ease-out) 0.39s both;
}
.alt-hero-title-em {
  font-style: italic;
  color: var(--bleached-cedar);
  font-weight: 500;
  position: relative;
  display: inline-block;
}

/* Hand-drawn underline under "sûre." */
.alt-hero-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05em;
  width: 100%;
  height: 0.28em;
  color: var(--bleached-cedar);
  pointer-events: none;
  overflow: visible;
}
.alt-hero-underline path {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  transition: stroke-dashoffset 1.3s var(--ease-out);
}
.alt-hero-title.drawn .alt-hero-underline path { stroke-dashoffset: 0; }

.alt-hero-caveat {
  display: block;
  font-size: 1.3rem;
  color: var(--bleached-cedar);
  margin-bottom: 1rem;
  transform: rotate(-1deg);
  animation: fadeUp 0.8s var(--ease-out) 0.5s both;
}

.alt-hero-description {
  font-size: 0.96rem;
  color: var(--neon-navy);
  opacity: 0.75;
  margin: 0 auto 1.1rem auto;
  max-width: 46ch;
  line-height: 1.75;
  animation: fadeUp 0.8s var(--ease-out) 0.6s both;
}

.alt-hero-pullquote {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--neon-navy);
  max-width: 44ch;
  margin: 0 auto 1.7rem auto;
  padding: 0.85rem 1.4rem;
  border: 1px solid rgba(38, 24, 52, 0.18);
  background: rgba(174, 161, 144, 0.18);
  animation: fadeUp 0.8s var(--ease-out) 0.72s both;
}
.alt-hero-pullquote em {
  font-style: italic;
  color: var(--bleached-cedar);
  font-weight: 500;
}

.alt-hero-ctas {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s var(--ease-out) 0.84s both;
}
.alt-hero-ctas-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-navy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
  transition: opacity 0.3s var(--ease), letter-spacing 0.3s var(--ease);
}
.alt-hero-ctas-link:hover { letter-spacing: 0.22em; }

/* Micro signals strip */
.alt-hero-signals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  list-style: none;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(98, 18, 23, 0.12);
  animation: fadeUp 0.8s var(--ease-out) 0.96s both;
}
.alt-hero-signals li {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.alt-hero-signals strong {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--neon-navy);
  letter-spacing: -0.01em;
}
.alt-hero-signals span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-navy);
  opacity: 0.55;
  margin-top: 0.3rem;
}
.alt-hero-signals-sep {
  color: var(--bleached-cedar);
  opacity: 0.5;
  font-size: 0.85rem;
}

/* =============================================
   HERO VISUAL — single polaroid + quote ticket
   ============================================= */
.alt-hero-visual {
  position: relative;
  min-height: 520px;
  animation: fadeIn 1.1s var(--ease-out) 0.35s both;
}

/* Single editorial polaroid (portrait) */
.alt-hero-polaroid {
  position: absolute;
  top: 2%;
  right: 4%;
  width: 80%;
  background: var(--swan-wing);
  padding: 0.95rem 0.95rem 2.6rem 0.95rem;
  transform: rotate(-2deg);
  z-index: 3;
  box-shadow:
    0 1px 0 rgba(98, 18, 23, 0.06),
    0 22px 48px -20px rgba(98, 18, 23, 0.28),
    0 4px 14px -6px rgba(98, 18, 23, 0.12);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  will-change: transform;
}
.alt-hero-polaroid-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--bleached-sand) 0%, var(--ablescent-white) 100%);
}
.alt-hero-polaroid-cap {
  position: absolute;
  bottom: 0.65rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--bleached-cedar);
  letter-spacing: 0.01em;
}
.alt-hero-polaroid:hover {
  box-shadow:
    0 1px 0 rgba(98, 18, 23, 0.06),
    0 32px 60px -20px rgba(98, 18, 23, 0.35),
    0 6px 20px -6px rgba(98, 18, 23, 0.18);
}

/* Editorial quote ticket — overlapping bottom-left */
.alt-hero-ticket {
  position: absolute;
  bottom: 4%;
  left: -6%;
  width: 64%;
  background: var(--neon-navy);
  color: var(--swan-wing);
  padding: 1.4rem 1.5rem 1.5rem;
  z-index: 5;
  transform: rotate(3deg);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.1),
    0 28px 60px -22px rgba(98, 18, 23, 0.55),
    0 6px 20px -6px rgba(98, 18, 23, 0.25);
}
.alt-hero-ticket::before,
.alt-hero-ticket::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  background-image: radial-gradient(circle at 4px 4px, var(--swan-wing) 3px, transparent 3.5px);
  background-size: 12px 8px;
  background-repeat: repeat-x;
}
.alt-hero-ticket::before { top: -4px; }
.alt-hero-ticket::after  { bottom: -4px; }

.alt-hero-ticket-eyebrow {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  opacity: 0.7;
  margin-bottom: 0.85rem;
}
.alt-hero-ticket-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--swan-wing);
  margin-bottom: 0.85rem;
}
.alt-hero-ticket-quote em {
  font-style: italic;
  font-weight: 500;
  color: var(--bleached-sand);
}
.alt-hero-ticket-sign {
  display: block;
  font-size: 1.05rem;
  color: var(--bleached-sand);
  opacity: 0.85;
  text-align: right;
}

/* Rotating seal */
.alt-hero-seal {
  position: absolute;
  top: 6%;
  right: -4%;
  width: 118px;
  height: 118px;
  z-index: 6;
  color: var(--neon-navy);
  animation: spin 24s linear infinite;
  filter: drop-shadow(0 8px 20px rgba(98, 18, 23, 0.18));
}
.alt-hero-seal svg { width: 100%; height: 100%; }

/* Floating handwritten note */
.alt-hero-handwritten {
  position: absolute;
  top: 50%;
  right: -2%;
  font-size: 1.45rem;
  color: var(--bleached-cedar);
  transform: rotate(-5deg);
  z-index: 7;
  animation: float 5.5s ease-in-out infinite;
  white-space: nowrap;
  padding: 0.5rem 0.95rem;
  background: var(--swan-wing);
  box-shadow: 0 6px 22px -6px rgba(98, 18, 23, 0.25);
}

/* Scroll cue */
.alt-hero-scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 3;
  opacity: 0.55;
  transition: opacity 0.4s var(--ease);
  animation: fadeUp 1s var(--ease-out) 1.2s both;
}
.alt-hero-scroll-cue:hover { opacity: 1; }
.alt-hero-scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon-navy);
  font-weight: 500;
}
.alt-hero-scroll-line {
  width: 1px;
  height: 38px;
  background: var(--neon-navy);
  position: relative;
  overflow: hidden;
}
.alt-hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bleached-cedar);
  animation: altHeroScrollPulse 2.4s var(--ease) infinite;
}
@keyframes altHeroScrollPulse {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .alt-hero-seal,
  .alt-hero-handwritten,
  .alt-hero-star-1,
  .alt-hero-star-2,
  .alt-hero-star-3,
  .alt-hero-scroll-line::after,
  .alt-hero-eyebrow-dot { animation: none; }
  .alt-hero-underline path { stroke-dashoffset: 0; transition: none; }
}

/* ---- Responsive: HERO ---- */
/* =============================================
   LE PROBLÈME
   ============================================= */
.alt-probleme {
  background: var(--neon-navy);
  color: var(--swan-wing);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.alt-probleme::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--neon-navy);
}

.alt-section-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  opacity: 0.55;
  margin-bottom: 2rem;
}

.alt-probleme-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--swan-wing);
  max-width: 20ch;
  margin: 0 0 4rem 0;
}

.alt-probleme-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: start;
  margin-bottom: 4rem;
}

.alt-probleme-copy p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--swan-wing);
  opacity: 0.72;
  margin-bottom: 1.5rem;
}
.alt-probleme-copy p:last-child { margin-bottom: 0; }

.alt-probleme-aside {
  border: 1px solid rgba(247, 246, 238, 0.1);
  padding: 2.2rem;
  position: relative;
}
.alt-probleme-aside::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 100%;
  background: var(--bleached-cedar);
  opacity: 0.6;
}

.alt-probleme-aside-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  opacity: 0.5;
  margin-bottom: 1.6rem;
}

.alt-probleme-tactics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.alt-probleme-tactics li {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--swan-wing);
  opacity: 0.38;
  text-decoration: line-through;
  text-decoration-color: rgba(174, 161, 144, 0.45);
  text-decoration-thickness: 1px;
}

.alt-probleme-aside-note {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--bleached-sand);
  opacity: 0.75;
  border-top: 1px solid rgba(247, 246, 238, 0.1);
  padding-top: 1.4rem;
  margin: 0;
}
.alt-probleme-aside-note em {
  font-style: italic;
  color: var(--bleached-sand);
  opacity: 1;
}

.alt-probleme-closer {
  border-left: 2px solid var(--bleached-cedar);
  padding: 0 0 0 2.2rem;
  margin: 0 0 2.5rem 0;
}
.alt-probleme-closer p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.008em;
  color: var(--swan-wing);
  margin: 0;
}
.alt-probleme-closer em {
  font-style: italic;
  color: var(--bleached-sand);
}

.alt-probleme-truth {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--bleached-sand);
  opacity: 0.65;
  max-width: 72ch;
  line-height: 1.75;
  margin: 0;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE — LE PROBLÈME
   ============================================= */
@media (max-width: 960px) {
  .alt-probleme-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 960px) {
  .alt-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: calc(var(--announce-height) + 7rem);
    padding-bottom: 2rem;
  }
  .alt-hero-visual {
    min-height: 480px;
    max-width: 420px;
    margin: 0 auto;
  }
  .alt-hero-backdrop-word {
    font-size: clamp(11rem, 42vw, 20rem);
    transform: translate(-8%, -10%);
  }
  .alt-hero-handwritten { right: 2%; }
}

@media (max-width: 640px) {
  .alt-hero-title { font-size: clamp(1.9rem, 9.5vw, 3rem); }
  .alt-hero-pullquote { font-size: 0.95rem; }
  .alt-hero-signals { gap: 1rem; }
  .alt-hero-signals strong { font-size: 1.2rem; }
  .alt-hero-visual { min-height: 420px; }
  .alt-hero-polaroid { width: 76%; right: 2%; }
  .alt-hero-ticket { width: 72%; left: -2%; padding: 1rem 1.1rem 1.1rem; }
  .alt-hero-seal { width: 86px; height: 86px; right: -2%; top: 2%; }
  .alt-hero-handwritten { font-size: 1.1rem; right: 0; top: 56%; }
}

/* =============================================
   LE RECADRAGE
   ============================================= */
.alt-recadrage {
  background: var(--swan-wing);
  padding: var(--space-xl) 0;
  position: relative;
}

.alt-section-label--dark {
  color: var(--neon-navy);
  opacity: 0.38;
}

.alt-recadrage-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--neon-navy);
  max-width: 26ch;
  margin: 0 0 4rem 0;
}
.alt-recadrage-title-em {
  display: block;
  font-style: italic;
  color: var(--bleached-cedar);
  margin-top: 0.15em;
}

/* Contrast panel */
.alt-recadrage-contrast {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(98, 18, 23, 0.1);
  padding: 2.5rem;
  margin-bottom: 5rem;
  background: rgba(174, 161, 144, 0.14);
}
.alt-recadrage-contrast-item { display: flex; flex-direction: column; gap: 0.75rem; }
.alt-recadrage-contrast-before { opacity: 0.52; }
.alt-recadrage-contrast-before p { text-decoration: line-through; text-decoration-color: rgba(98, 18, 23, 0.3); text-decoration-thickness: 1px; }
.alt-recadrage-contrast-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon-navy);
  opacity: 0.5;
}
.alt-recadrage-contrast-item p {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--neon-navy);
  margin: 0;
}
.alt-recadrage-contrast-item p em { font-style: italic; color: var(--bleached-cedar); }
.alt-recadrage-contrast-after p em { font-style: italic; color: var(--bleached-cedar); font-weight: 500; }
.alt-recadrage-contrast-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bleached-cedar);
  opacity: 0.6;
}
.alt-recadrage-contrast-divider svg { width: 28px; height: 28px; }

/* Main grid */
.alt-recadrage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: start;
  margin-bottom: 4rem;
}
.alt-recadrage-copy p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--neon-navy);
  opacity: 0.78;
  margin-bottom: 1.4rem;
}
.alt-recadrage-copy p:last-child { margin-bottom: 0; }
.alt-recadrage-copy strong { font-weight: 600; color: var(--neon-navy); opacity: 1; }
.alt-recadrage-copy em { font-style: italic; color: var(--bleached-cedar); }
.alt-recadrage-accent {
  font-family: var(--font-heading) !important;
  font-size: 1.2rem !important;
  font-style: italic;
  opacity: 1 !important;
  color: var(--neon-navy) !important;
  line-height: 1.4 !important;
  border-left: 2px solid var(--bleached-cedar);
  padding-left: 1.4rem !important;
  margin: 1.8rem 0 !important;
}

/* Interference card */
.alt-recadrage-card {
  background: var(--neon-navy);
  color: var(--swan-wing);
  padding: 2.5rem;
  position: sticky;
  top: calc(var(--announce-height) + 6rem);
}
.alt-recadrage-card-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  opacity: 0.55;
  margin-bottom: 1.8rem;
}
.alt-recadrage-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0;
}
.alt-recadrage-card-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--swan-wing);
  opacity: 0.82;
}
.alt-recadrage-card-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--bleached-cedar);
  opacity: 0.8;
}
.alt-recadrage-card-note {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--bleached-sand);
  opacity: 0.65;
  border-top: 1px solid rgba(247, 246, 238, 0.1);
  padding-top: 1.4rem;
  margin: 0;
  font-style: italic;
}

.alt-recadrage-closing {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--neon-navy);
  opacity: 0.55;
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .alt-recadrage-contrast { grid-template-columns: 1fr; gap: 1.5rem; }
  .alt-recadrage-contrast-divider svg { transform: rotate(90deg); }
  .alt-recadrage-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .alt-recadrage-card { position: static; }
}

/* =============================================
   QUI JE SUIS
   ============================================= */
.alt-qui {
  background: var(--ablescent-white);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.alt-qui-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: var(--space-lg);
  align-items: start;
}

/* Visual */
.alt-qui-visual {
  position: sticky;
  top: calc(var(--announce-height) + 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.alt-qui-polaroid {
  width: 100%;
  background: var(--swan-wing);
  padding: 0.85rem 0.85rem 2.4rem;
  transform: rotate(-1.5deg);
  box-shadow:
    0 1px 0 rgba(98, 18, 23, 0.06),
    0 18px 42px -16px rgba(98, 18, 23, 0.28),
    0 4px 12px -4px rgba(98, 18, 23, 0.1);
  transition: transform 0.5s var(--ease-out);
}
.alt-qui-polaroid:hover { transform: rotate(0deg); }

.alt-qui-polaroid-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, rgba(174,161,144,0.4) 0%, rgba(247,246,238,0.6) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alt-qui-polaroid-cap {
  text-align: center;
  font-size: 1.1rem;
  color: var(--bleached-cedar);
  padding-top: 0.5rem;
  display: block;
}

.alt-qui-handwritten {
  font-size: 1.2rem;
  color: var(--bleached-cedar);
  margin-top: 1.4rem;
  transform: rotate(-2deg);
  align-self: flex-end;
  padding-right: 0.5rem;
}

/* Content */
.alt-qui-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.016em;
  color: var(--neon-navy);
  margin: 0 0 1.8rem 0;
}
.alt-qui-title em {
  font-style: italic;
  color: var(--bleached-cedar);
}

.alt-qui-intro {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--neon-navy);
  opacity: 0.8;
  margin-bottom: 2rem;
}

/* Contrasts list */
.alt-qui-contrasts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
  margin: 0 0 2.2rem 0;
}
.alt-qui-contrast-item {
  font-size: 0.92rem;
  line-height: 1.65;
  padding: 0.6rem 1rem;
}
.alt-qui-contrast-no {
  color: var(--neon-navy);
  opacity: 0.35;
  text-decoration: line-through;
  text-decoration-color: rgba(98, 18, 23, 0.25);
  text-decoration-thickness: 1px;
  background: rgba(98, 18, 23, 0.03);
}
.alt-qui-contrast-divider {
  text-align: center;
  color: var(--bleached-cedar);
  opacity: 0.45;
  font-size: 0.75rem;
  padding: 0.2rem 0;
  list-style: none;
}
.alt-qui-contrast-yes {
  color: var(--neon-navy);
  background: rgba(98, 18, 23, 0.05);
  border-left: 2px solid var(--bleached-cedar);
}

.alt-qui-body {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--neon-navy);
  opacity: 0.75;
  margin-bottom: 1.4rem;
}
.alt-qui-body strong {
  font-weight: 600;
  color: var(--neon-navy);
  opacity: 1;
}

.alt-qui-invite {
  border: 1px solid rgba(98, 18, 23, 0.14);
  padding: 1.8rem 2rem;
  margin: 2rem 0 0 0;
  background: rgba(247, 246, 238, 0.55);
}
.alt-qui-invite p {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--neon-navy);
  margin: 0;
}

@media (max-width: 960px) {
  .alt-qui-grid { grid-template-columns: 1fr; }
  .alt-qui-visual { position: static; max-width: 320px; margin: 0 auto 3rem; }
}

/* =============================================
   LE TRAVAIL
   ============================================= */
.alt-travail {
  background: var(--dusty-blue);
  padding: var(--space-xl) 0;
  position: relative;
}

.alt-travail-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--neon-navy);
  max-width: 18ch;
  margin: 0 0 4rem 0;
}

/* Two-column 2×2 card grid */
.alt-travail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

/* Base card */
.alt-service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(98, 18, 23, 0.1);
  overflow: hidden;
}

.alt-service-header {
  padding: 2rem 2rem 1.6rem;
  border-bottom: 1px solid rgba(98, 18, 23, 0.08);
}
.alt-service-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.alt-service-duration {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--neon-navy);
  opacity: 0.45;
}
.alt-service-badge {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  background: var(--dusty-blue);
  color: var(--neon-navy);
  font-weight: 500;
}
.alt-service-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--neon-navy);
  margin: 0 0 0.5rem 0;
  line-height: 1;
}
.alt-service-name {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--neon-navy);
  margin: 0 0 0.65rem 0;
}
.alt-service-tagline {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--neon-navy);
  opacity: 0.55;
  margin: 0;
  font-style: italic;
}

.alt-service-body {
  padding: 1.8rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.alt-service-body > p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--neon-navy);
  opacity: 0.72;
  margin: 0;
}
.alt-service-attributes {
  font-size: 0.75rem !important;
  letter-spacing: 0.06em;
  opacity: 0.5 !important;
}
.alt-service-attributes em { font-style: italic; }

.alt-service-credit {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.78rem !important;
  line-height: 1.6 !important;
  color: var(--bleached-cedar) !important;
  opacity: 1 !important;
  background: rgba(38, 24, 52, 0.04);
  padding: 0.85rem 1rem;
  margin-top: auto !important;
}
.alt-service-credit svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }

/* Deliverables list */
.alt-service-deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.alt-service-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--neon-navy);
  opacity: 0.78;
}
.alt-service-deliverables li::before {
  content: '✦';
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.35em;
  color: var(--bleached-cedar);
  opacity: 0.7;
}

/* Transformation line */
.alt-service-transform {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  padding: 1rem;
  background: rgba(98, 18, 23, 0.04);
  margin-top: 0.5rem;
}
.alt-service-transform svg { width: 16px; height: 16px; flex-shrink: 0; }
.alt-service-transform-before { color: var(--neon-navy); opacity: 0.42; text-decoration: line-through; text-decoration-thickness: 1px; }
.alt-service-transform-after  { color: var(--neon-navy); font-weight: 500; }

.alt-service-footer {
  padding: 1.6rem 2rem;
  border-top: 1px solid rgba(98, 18, 23, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.alt-service-limit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0;
}
.alt-service-limit svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── FEATURED: La Reconstruction ── */
.alt-service-card--reconstruction {
  background: var(--neon-navy);
  border-color: var(--neon-navy);
  box-shadow: 0 24px 60px -20px rgba(98, 18, 23, 0.4);
}
.alt-service-card--reconstruction .alt-service-header {
  border-bottom-color: rgba(247, 246, 238, 0.1);
}
.alt-service-card--reconstruction .alt-service-duration { color: var(--bleached-sand); opacity: 0.5; }
.alt-service-card--reconstruction .alt-service-price { color: var(--bleached-sand); }
.alt-service-card--reconstruction .alt-service-name { color: var(--swan-wing); }
.alt-service-card--reconstruction .alt-service-tagline { color: var(--swan-wing); opacity: 0.5; }
.alt-service-card--reconstruction .alt-service-body > p { color: var(--swan-wing); opacity: 0.68; }
.alt-service-card--reconstruction .alt-service-deliverables li { color: var(--swan-wing); opacity: 0.78; }
.alt-service-card--reconstruction .alt-service-transform { background: rgba(247, 246, 238, 0.05); }
.alt-service-card--reconstruction .alt-service-transform-before { color: var(--swan-wing); }
.alt-service-card--reconstruction .alt-service-transform-after  { color: var(--bleached-sand); }
.alt-service-card--reconstruction .alt-service-transform svg { color: var(--bleached-cedar); }
.alt-service-card--reconstruction .alt-service-footer { border-top-color: rgba(247, 246, 238, 0.1); }
.alt-service-card--reconstruction .alt-service-limit { color: var(--swan-wing); }
.alt-service-card--reconstruction .alt-service-limit svg { color: var(--bleached-cedar); }

.alt-service-cta--light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bleached-sand);
  color: var(--neon-navy);
  padding: 0.85rem 1.7rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.alt-service-cta--light:hover {
  background: var(--swan-wing);
}
.alt-service-cta--light::after {
  content: '→';
  transition: transform 0.3s var(--ease);
}
.alt-service-cta--light:hover::after { transform: translateX(4px); }

@media (max-width: 640px) {
  .alt-travail-grid { grid-template-columns: 1fr; }
}

/* =============================================
   LA PROMESSE
   ============================================= */
.alt-promesse {
  background: var(--neon-navy);
  color: var(--swan-wing);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.alt-promesse-headline {
  margin-bottom: 4.5rem;
}

.alt-promesse-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  max-width: 24ch;
}
.alt-promesse-title-no {
  color: var(--swan-wing);
  opacity: 0.35;
  text-decoration: line-through;
  text-decoration-color: rgba(247, 246, 238, 0.25);
  text-decoration-thickness: 2px;
  font-style: normal;
}
.alt-promesse-title-yes {
  font-style: italic;
  color: var(--bleached-sand);
}

/* Two-column grid */
.alt-promesse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
  margin-bottom: 5rem;
}

.alt-promesse-copy p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--swan-wing);
  opacity: 0.7;
  margin-bottom: 1.4rem;
}
.alt-promesse-copy p:last-child { margin-bottom: 0; }

/* Outcomes aside */
.alt-promesse-outcomes {
  border: 1px solid rgba(247, 246, 238, 0.1);
  padding: 2.2rem;
}
.alt-promesse-outcomes-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  opacity: 0.5;
  margin-bottom: 1.8rem;
}
.alt-promesse-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.alt-promesse-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(247, 246, 238, 0.08);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--swan-wing);
  opacity: 0.78;
}
.alt-promesse-list li:last-child { border-bottom: none; padding-bottom: 0; }
.alt-promesse-list li:first-child { padding-top: 0; }
.alt-promesse-list strong { font-weight: 600; color: var(--bleached-sand); opacity: 1; }
.alt-promesse-list-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bleached-cedar);
  opacity: 0.45;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1em;
}

/* Closing */
.alt-promesse-closing {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  border-top: 1px solid rgba(247, 246, 238, 0.1);
  padding-top: 4rem;
}
.alt-promesse-closing-text {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--swan-wing);
  margin: 0;
  line-height: 1;
}
.alt-promesse-closing-accent {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--bleached-sand);
  margin: 0;
  opacity: 0.75;
}

@media (max-width: 768px) {
  .alt-promesse-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =============================================
   MARQUEE TICKER
   ============================================= */
.alt-marquee {
  overflow: hidden;
  background: var(--dusty-blue);
  padding: 1.15rem 0;
  position: relative;
  z-index: 2;
}
.alt-marquee::before,
.alt-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 5rem;
  z-index: 1;
  pointer-events: none;
}
.alt-marquee::before { left: 0; background: linear-gradient(to right, var(--dusty-blue), transparent); }
.alt-marquee::after  { right: 0; background: linear-gradient(to left, var(--dusty-blue), transparent); }

.alt-marquee-track {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.alt-marquee-item {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--neon-navy);
  opacity: 0.85;
}
.alt-marquee-sep {
  color: var(--neon-navy);
  font-size: 0.65rem;
  opacity: 0.4;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .alt-marquee-track { animation: none; }
}

/* =============================================
   STATS STRIP
   ============================================= */
.alt-stats {
  background: var(--swan-wing);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(98, 18, 23, 0.08);
  border-bottom: 1px solid rgba(98, 18, 23, 0.08);
}
.alt-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.alt-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0 3.5rem;
  text-align: center;
}
.alt-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--neon-navy);
  margin: 0;
}
.alt-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--neon-navy);
  opacity: 0.48;
  line-height: 1.65;
  margin: 0;
}
.alt-stats-sep {
  width: 1px;
  height: 54px;
  background: rgba(98, 18, 23, 0.14);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .alt-stat-item { padding: 1.5rem 2rem; }
  .alt-stats-sep { display: none; }
}

/* =============================================
   APPEL GRATUIT — Voucher CTA
   ============================================= */
.alt-cta-section {
  background: var(--swan-wing);
  color: var(--neon-navy);
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}
.alt-cta-section .container { position: relative; z-index: 2; }

.alt-cta-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.alt-cta-backdrop-word {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(14rem, 34vw, 30rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--bleached-sand);
  text-stroke: 1.5px var(--bleached-sand);
  opacity: 0.28;
  user-select: none;
  white-space: nowrap;
}

/* Decorative star accents */
.alt-cta-star-1 {
  position: absolute;
  top: 12%; left: 6%;
  width: 22px;
  color: var(--bleached-cedar);
  opacity: 0.4;
  transform: rotate(-12deg);
  animation: altHeroStarFloat 6.5s ease-in-out infinite;
  pointer-events: none;
}
.alt-cta-star-2 {
  position: absolute;
  bottom: 18%; right: 7%;
  width: 18px;
  color: var(--bleached-cedar);
  opacity: 0.3;
  transform: rotate(14deg);
  animation: altHeroStarFloat 7.6s ease-in-out 0.7s infinite;
  pointer-events: none;
}
.alt-cta-star-3 {
  position: absolute;
  top: 20%; right: 20%;
  width: 14px;
  color: var(--bleached-cedar);
  opacity: 0.25;
  transform: rotate(6deg);
  animation: altHeroStarFloat 8.2s ease-in-out 1.3s infinite;
  pointer-events: none;
}

/* --- The voucher card --- */
.alt-voucher {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--neon-navy);
  color: var(--ablescent-white);
  padding: 1.4rem 2.6rem 1.4rem;
  box-shadow:
    0 60px 120px -40px rgba(98, 18, 23, 0.55),
    0 24px 48px -24px rgba(98, 18, 23, 0.35);
  transform: rotate(-0.6deg);
  transition: transform 0.7s var(--ease-out), box-shadow 0.7s var(--ease);
}
.alt-voucher:hover {
  transform: rotate(-0.2deg) translateY(-4px);
  box-shadow:
    0 80px 140px -42px rgba(98, 18, 23, 0.6),
    0 32px 60px -28px rgba(98, 18, 23, 0.4);
}

/* Circular notch perforation */
.alt-voucher::before,
.alt-voucher::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  background: var(--swan-wing);
  border-radius: 50%;
  transform: translateY(-50%);
}
.alt-voucher::before { left: -11px; }
.alt-voucher::after  { right: -11px; }

/* Top stamp row */
.alt-voucher-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0 1rem;
  border-bottom: 1px dashed rgba(174, 161, 144, 0.35);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bleached-sand);
}
.alt-voucher-id { opacity: 0.7; font-variant-numeric: tabular-nums; }
.alt-voucher-id sup { font-size: 0.55em; vertical-align: super; opacity: 0.85; }
.alt-voucher-tag {
  background: var(--bleached-sand);
  color: var(--neon-navy);
  padding: 0.3rem 0.85rem;
  letter-spacing: 0.24em;
  transform: rotate(-1.5deg);
  display: inline-block;
}
.alt-voucher-loc { opacity: 0.6; }

/* Main body */
.alt-voucher-body {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2.4rem;
  align-items: center;
  padding: 2.4rem 0 2rem;
  position: relative;
}
.alt-voucher-body::after {
  content: '';
  position: absolute;
  top: 1.4rem;
  bottom: 1.2rem;
  left: calc(57% - 0.5px);
  width: 1px;
  background-image: linear-gradient(to bottom, rgba(174, 161, 144, 0.4) 0 6px, transparent 6px 12px);
  background-size: 1px 12px;
  background-repeat: repeat-y;
  pointer-events: none;
}

.alt-voucher-copy { padding-right: 1rem; }

.alt-voucher-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  opacity: 0.85;
  margin-bottom: 1.1rem;
}
.alt-voucher-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bleached-sand);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(174, 161, 144, 0.18);
}

.alt-voucher-copy h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  max-width: 18ch;
  color: var(--ablescent-white);
}
.alt-voucher-copy h2 em {
  font-style: italic;
  color: var(--bleached-sand);
}

.alt-voucher-accent {
  display: block;
  font-size: 1.55rem;
  color: var(--bleached-sand);
  margin: 0 0 1.1rem;
  transform: rotate(-1.5deg);
}

.alt-voucher-copy p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ablescent-white);
  opacity: 0.7;
  max-width: 44ch;
  margin: 0;
}

/* Right: action */
.alt-voucher-action {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
  padding-left: 2rem;
}

.alt-voucher-stamp {
  position: absolute;
  top: -2.2rem;
  right: -1rem;
  width: 130px;
  height: 130px;
  color: var(--bleached-sand);
  opacity: 0.95;
  animation: spin 38s linear infinite;
  transform: rotate(-6deg);
  pointer-events: none;
}
.alt-voucher-stamp svg { width: 100%; height: 100%; }

.alt-voucher-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.4rem 1rem 1.6rem;
  background: var(--bleached-sand);
  color: var(--neon-navy);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--bleached-sand);
  transition:
    background 0.45s var(--ease),
    color 0.45s var(--ease),
    transform 0.5s var(--ease-out),
    gap 0.45s var(--ease);
  margin-top: 5.2rem;
}
.alt-voucher-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--neon-navy);
  color: var(--bleached-sand);
  transition: transform 0.5s var(--ease-out), background 0.45s var(--ease);
}
.alt-voucher-btn-arrow svg { width: 18px; height: 18px; }
.alt-voucher-btn:hover {
  background: transparent;
  color: var(--bleached-sand);
  gap: 1.4rem;
}
.alt-voucher-btn:hover .alt-voucher-btn-arrow {
  background: var(--bleached-sand);
  color: var(--neon-navy);
  transform: translateX(4px) rotate(-6deg);
}

.alt-voucher-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  opacity: 0.8;
}
.alt-voucher-meta li[aria-hidden="true"] { opacity: 0.55; }

/* Bottom signature strip */
.alt-voucher-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0.9rem;
  border-top: 1px dashed rgba(174, 161, 144, 0.35);
}
.alt-voucher-sign {
  font-size: 1.25rem;
  color: var(--bleached-sand);
  transform: rotate(-1deg);
  display: inline-block;
}
.alt-voucher-foot-meta {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  .alt-voucher-stamp { animation: none; }
  .alt-cta-star-1, .alt-cta-star-2, .alt-cta-star-3 { animation: none; }
  .alt-voucher { transform: none; }
  .alt-voucher:hover { transform: none; }
}

@media (max-width: 768px) {
  .alt-voucher-body { grid-template-columns: 1fr; gap: 3rem; }
  .alt-voucher-body::after { display: none; }
  .alt-voucher-action { padding-left: 0; }
  .alt-voucher-btn { margin-top: 7rem; }
}
@media (max-width: 640px) {
  .alt-voucher { padding: 1.2rem 1.4rem; transform: none; }
  .alt-voucher:hover { transform: none; }
  .alt-voucher::before, .alt-voucher::after { display: none; }
  .alt-voucher-btn { margin-top: 6rem; width: 100%; justify-content: space-between; }
}

/* =============================================
   FOOTER
   ============================================= */
.alt-footer {
  background: var(--neon-navy);
  color: var(--ablescent-white);
  padding-top: 0;
  position: relative;
  overflow: hidden;
}
.alt-footer .container { position: relative; z-index: 2; }

.alt-footer-rule {
  position: relative;
  height: 1px;
  background: rgba(247, 246, 238, 0.1);
  margin-bottom: 0;
}
.alt-footer-rule span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--neon-navy);
  padding: 0 0.9rem;
  font-size: 0.6rem;
  color: var(--bleached-cedar);
  opacity: 0.65;
}

.alt-footer-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.alt-footer-backdrop-word {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(10rem, 22vw, 20rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 246, 238, 0.06);
  text-stroke: 1px rgba(247, 246, 238, 0.06);
  user-select: none;
  white-space: nowrap;
  transform: translateX(5%) translateY(15%);
}

/* Masthead */
.alt-footer-masthead {
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid rgba(247, 246, 238, 0.08);
  margin-bottom: 3rem;
}
.alt-footer-brand { max-width: 52ch; }

.alt-footer-logo {
  display: inline-block;
  text-decoration: none;
  color: var(--ablescent-white);
  opacity: 0.88;
  transition: opacity 0.3s var(--ease);
  margin-bottom: 1.2rem;
}
.alt-footer-logo:hover { opacity: 1; }
.alt-footer-logo-svg {
  height: clamp(3rem, 5.5vw, 4.6rem);
  width: auto;
  display: block;
}

.alt-footer-tag {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  opacity: 0.45;
  margin-bottom: 1rem;
}
.alt-footer-mission {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ablescent-white);
  opacity: 0.52;
  margin: 0;
}

.alt-footer-colophon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.alt-footer-colophon-seal {
  display: inline-block;
  width: 118px;
  height: 118px;
  color: var(--bleached-sand);
  opacity: 0.5;
  animation: spin 28s linear infinite;
}
.alt-footer-colophon-seal svg { width: 100%; height: 100%; }
.alt-footer-handwritten {
  position: absolute;
  bottom: -0.6rem;
  right: -0.5rem;
  font-size: 1.15rem;
  color: var(--bleached-sand);
  opacity: 0.65;
  transform: rotate(-4deg);
}

/* Grid */
.alt-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247, 246, 238, 0.08);
  margin-bottom: 2rem;
}

.alt-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.alt-footer-col-num {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--bleached-cedar);
  opacity: 0.45;
  margin-bottom: 0.85rem;
  line-height: 1;
}
.alt-footer-col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ablescent-white);
  opacity: 0.45;
  margin: 0 0 1.2rem 0;
}
.alt-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.alt-footer-col li { margin-bottom: 0.65rem; }
.alt-footer-col a {
  display: inline-block;
  font-size: 0.88rem;
  color: var(--ablescent-white);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.alt-footer-col a:hover { opacity: 1; color: var(--bleached-sand); }

.alt-footer-address {
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--ablescent-white);
  opacity: 0.35;
}

.alt-footer-philosophy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.alt-footer-philosophy-list li {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ablescent-white);
  opacity: 0.55;
  line-height: 1.4;
  text-decoration: none !important;
}
.alt-footer-philosophy-sign {
  font-size: 0.88rem;
  color: var(--bleached-sand);
  opacity: 0.38;
}

/* Bottom strip */
.alt-footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-bottom: 2.5rem;
  gap: 1rem;
}
.alt-footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.alt-footer-bottom-left p {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--ablescent-white);
  opacity: 0.28;
}
.alt-footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.alt-footer-legal a {
  font-size: 0.66rem;
  color: var(--ablescent-white);
  opacity: 0.28;
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}
.alt-footer-legal a:hover { opacity: 0.7; }
.alt-footer-legal li[aria-hidden="true"] { opacity: 0.2; font-size: 0.6rem; color: var(--ablescent-white); }

.alt-footer-totop {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ablescent-white);
  opacity: 0.38;
  text-decoration: none;
  border: 1px solid rgba(247, 246, 238, 0.15);
  padding: 0.5rem 1rem;
  transition: all 0.3s var(--ease);
}
.alt-footer-totop:hover {
  background: var(--bleached-sand);
  color: var(--neon-navy);
  opacity: 1;
  border-color: var(--bleached-sand);
}
.alt-footer-totop-arrow {
  transition: transform 0.3s var(--ease);
}
.alt-footer-totop:hover .alt-footer-totop-arrow { transform: translateY(-3px); }

.alt-footer-socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.2rem;
}
.alt-footer-socials a {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ablescent-white);
  opacity: 0.38;
  text-decoration: none;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.alt-footer-socials a:hover { opacity: 1; color: var(--bleached-sand); }
.alt-footer-socials li[aria-hidden="true"] { font-size: 0.5rem; color: var(--bleached-cedar); opacity: 0.3; }

@media (max-width: 960px) {
  .alt-footer-masthead { grid-template-columns: 1fr; }
  .alt-footer-colophon { display: none; }
  .alt-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .alt-footer-grid { grid-template-columns: 1fr; }
  .alt-footer-bottom { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .alt-footer-bottom-left { align-items: center; }
  .alt-footer-totop { justify-self: center; }
  .alt-footer-socials { justify-content: center; }
}


/* =============================================
   LE PROBLÈME — ENHANCEMENTS
   ============================================= */
.alt-probleme { isolation: isolate; }
.alt-probleme .container { position: relative; z-index: 2; }

.alt-probleme-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.alt-probleme-backdrop-word {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(14rem, 34vw, 28rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px var(--dusty-blue);
  text-stroke: 2px var(--dusty-blue);
  opacity: 0.25;
  transform: translate(14%, 4%);
  user-select: none;
  white-space: nowrap;
}

.alt-probleme-star {
  position: absolute;
  z-index: 1;
  color: var(--bleached-sand);
  pointer-events: none;
  opacity: 0.45;
}
.alt-probleme-star-1 { top: 14%; right: 18%; width: 22px; transform: rotate(-14deg); animation: altHeroStarFloat 7s ease-in-out infinite; }
.alt-probleme-star-2 { bottom: 18%; left: 6%; width: 16px; transform: rotate(10deg); animation: altHeroStarFloat 6s ease-in-out 0.5s infinite; }

.alt-probleme-head {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.alt-probleme-head .alt-section-label { margin-bottom: 0; }
.alt-probleme-tape {
  display: inline-block;
  font-size: 1.05rem;
  color: var(--bleached-sand);
  background: rgba(174, 161, 144, 0.14);
  border: 1px dashed rgba(174, 161, 144, 0.4);
  padding: 0.25rem 0.85rem;
  transform: rotate(-2deg);
  opacity: 0.9;
}

.alt-probleme-title-em {
  font-style: italic;
  color: var(--bleached-sand);
}

.alt-probleme-aside { isolation: isolate; }
.alt-probleme-aside-sticker {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 96px;
  height: 96px;
  color: var(--bleached-sand);
  opacity: 0.9;
  transform: rotate(14deg);
  animation: spin 52s linear infinite;
  pointer-events: none;
  z-index: 2;
}
.alt-probleme-aside-sticker svg { width: 100%; height: 100%; display: block; }

.alt-probleme-tactics { list-style: none; gap: 0 !important; margin-bottom: 1.8rem !important; }
.alt-probleme-tactics li {
  display: flex !important;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.55rem 0 !important;
  border-bottom: 1px dashed rgba(247, 246, 238, 0.08);
  text-decoration: none !important;
  opacity: 0.58 !important;
}
.alt-probleme-tactics li:last-child { border-bottom: none; }
.alt-probleme-tactic-num {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--bleached-cedar);
  opacity: 0.95;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}

.alt-probleme-truth {
  position: relative;
  padding: 1.6rem 1.8rem;
  background: rgba(174, 161, 144, 0.06);
  border-left: 2px solid var(--bleached-sand);
  font-style: normal;
  opacity: 1;
  font-size: 0.95rem;
  line-height: 1.7;
}
.alt-probleme-truth-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bleached-sand);
  opacity: 0.7;
  margin-bottom: 0.65rem;
  font-style: normal;
}
.alt-probleme-truth em {
  font-style: italic;
  color: var(--bleached-sand);
  opacity: 1;
}


/* =============================================
   PRESS / CREDO TICKER
   ============================================= */
.alt-credo {
  background: var(--dusty-blue);
  border-top: 1px solid rgba(98, 18, 23, 0.08);
  border-bottom: 1px solid rgba(98, 18, 23, 0.08);
  padding: 1.2rem 0;
  position: relative;
  z-index: 2;
}
.alt-credo-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.alt-credo-label {
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon-navy);
  opacity: 0.55;
  padding-right: 1rem;
  border-right: 1px solid rgba(98, 18, 23, 0.18);
}
.alt-credo-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.alt-credo-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 48s linear infinite;
  width: max-content;
}
.alt-credo-item {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--neon-navy);
  opacity: 0.78;
}
.alt-credo-sep {
  color: var(--bleached-cedar);
  opacity: 0.6;
  font-size: 0.7rem;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .alt-credo-track { animation: none; }
}
@media (max-width: 640px) {
  .alt-credo-label { display: none; }
}


/* =============================================
   LE RECADRAGE — ENHANCEMENTS
   ============================================= */
.alt-recadrage { overflow: hidden; isolation: isolate; }
.alt-recadrage .container { position: relative; z-index: 2; }

.alt-recadrage-moon {
  position: absolute;
  top: 12%;
  right: 4%;
  width: 72px;
  color: var(--bleached-cedar);
  opacity: 0.28;
  z-index: 1;
  animation: altHeroStarFloat 9s ease-in-out infinite;
  pointer-events: none;
}
.alt-recadrage-spark {
  position: absolute;
  bottom: 10%;
  left: 4%;
  width: 28px;
  color: var(--bleached-cedar);
  opacity: 0.45;
  z-index: 1;
  animation: altHeroStarFloat 6.5s ease-in-out 0.8s infinite;
  pointer-events: none;
}

.alt-recadrage-head {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.alt-recadrage-head .alt-section-label { margin-bottom: 0; }
.alt-recadrage-pill {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--bleached-cedar);
  background: rgba(38, 24, 52, 0.06);
  border: 1px dashed rgba(38, 24, 52, 0.22);
  padding: 0.25rem 0.85rem;
  transform: rotate(2deg);
}

/* Numbered contrast */
.alt-recadrage-contrast-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--bleached-cedar);
  opacity: 0.4;
  letter-spacing: -0.02em;
  margin-bottom: 0.1rem;
}
.alt-recadrage-contrast-before .alt-recadrage-contrast-num { color: var(--neon-navy); opacity: 0.2; }

/* Sticker for interference card */
.alt-recadrage-card { position: sticky; overflow: visible; }
.alt-recadrage-card-sticker {
  position: absolute;
  top: -18px;
  right: -12px;
  font-size: 1.15rem;
  color: var(--neon-navy);
  background: var(--bleached-sand);
  padding: 0.25rem 0.8rem;
  transform: rotate(5deg);
  box-shadow: 0 6px 14px -6px rgba(98, 18, 23, 0.35);
  z-index: 3;
}


/* =============================================
   QUI JE SUIS — ENHANCEMENTS
   ============================================= */
.alt-qui { isolation: isolate; }
.alt-qui .container { position: relative; z-index: 2; }

.alt-qui-ornament {
  position: absolute;
  color: var(--bleached-cedar);
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}
.alt-qui-ornament-1 {
  top: 8%;
  right: 8%;
  width: 30px;
  animation: altHeroStarFloat 7s ease-in-out infinite;
}
.alt-qui-ornament-2 {
  bottom: 10%;
  left: 4%;
  width: 44px;
  opacity: 0.22;
  animation: altHeroStarFloat 9s ease-in-out 0.6s infinite;
}

.alt-qui-head {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.alt-qui-head .alt-section-label { margin-bottom: 0; }
.alt-qui-tape {
  display: inline-block;
  font-size: 1.2rem;
  color: var(--bleached-cedar);
  background: var(--swan-wing);
  border: 1px dashed rgba(38, 24, 52, 0.25);
  padding: 0.2rem 0.85rem;
  transform: rotate(-3deg);
}

/* Visual stack — scrapbook with two polaroids + sticker */
.alt-qui-visual {
  position: relative;
  gap: 1rem;
  padding-top: 1.5rem;
}
.alt-qui-polaroid { position: relative; }
.alt-qui-polaroid-1 {
  z-index: 2;
  width: 92%;
  transform: rotate(-2deg);
}
.alt-qui-polaroid-2 {
  align-self: flex-start;
  z-index: 1;
  width: 62%;
  margin-top: -3rem;
  margin-left: auto;
  transform: rotate(4deg);
}
.alt-qui-polaroid-2 .alt-qui-polaroid-img { aspect-ratio: 4 / 3; }
.alt-qui-polaroid-img--alt {
  background: linear-gradient(150deg, rgba(38, 24, 52, 0.22) 0%, rgba(174, 161, 144, 0.6) 100%) !important;
}

.alt-qui-sticker {
  position: absolute;
  left: -30px;
  bottom: 6rem;
  width: 102px;
  height: 102px;
  color: var(--neon-navy);
  z-index: 3;
  animation: spin 56s linear infinite;
  pointer-events: none;
  opacity: 0.9;
}
.alt-qui-sticker svg { width: 100%; height: 100%; display: block; }

/* Fit checklist */
.alt-qui-fit {
  border: 1px solid rgba(98, 18, 23, 0.14);
  background: rgba(247, 246, 238, 0.6);
  padding: 1.6rem 1.8rem;
  margin-top: 2rem;
  position: relative;
}
.alt-qui-fit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--bleached-cedar);
  opacity: 0.7;
}
.alt-qui-fit-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon-navy);
  opacity: 0.55;
  margin-bottom: 1.1rem;
}
.alt-qui-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.alt-qui-fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--neon-navy);
  opacity: 0.84;
}
.alt-qui-fit-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bleached-cedar);
  background: rgba(38, 24, 52, 0.08);
  border-radius: 50%;
  margin-top: 2px;
}
.alt-qui-fit-check svg { width: 10px; height: 10px; }

@media (max-width: 960px) {
  .alt-qui-visual { max-width: 420px !important; }
  .alt-qui-polaroid-2 { width: 58%; margin-top: -2rem; }
  .alt-qui-sticker { left: auto; right: -12px; bottom: auto; top: 2rem; width: 82px; height: 82px; }
}


/* =============================================
   LES DIRES — testimonials
   ============================================= */
.alt-dires {
  background: var(--dusty-blue);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.alt-dires .container { position: relative; z-index: 2; }

.alt-dires-star {
  position: absolute;
  z-index: 1;
  color: var(--bleached-cedar);
  opacity: 0.35;
  pointer-events: none;
}
.alt-dires-star-1 { top: 10%; left: 4%; width: 22px; transform: rotate(-14deg); animation: altHeroStarFloat 7.5s ease-in-out infinite; }
.alt-dires-star-2 { bottom: 12%; right: 6%; width: 18px; transform: rotate(8deg); animation: altHeroStarFloat 8s ease-in-out 0.8s infinite; }

.alt-dires-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 4rem;
}
.alt-dires-head .alt-section-label {
  color: var(--neon-navy);
  opacity: 0.45;
  margin-bottom: 0;
}
.alt-dires-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--neon-navy);
  margin: 0.3rem 0 0 0;
  max-width: 18ch;
}
.alt-dires-title em {
  font-style: italic;
  color: var(--bleached-cedar);
}
.alt-dires-tag {
  font-size: 1.15rem;
  color: var(--bleached-cedar);
  opacity: 0.85;
  margin-top: 0.3rem;
}

.alt-dires-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: start;
}

.alt-dires-card {
  position: relative;
  background: var(--swan-wing);
  padding: 2.2rem 2rem 2rem;
  border: 1px solid rgba(98, 18, 23, 0.08);
  box-shadow:
    0 18px 42px -22px rgba(98, 18, 23, 0.28),
    0 4px 10px -4px rgba(98, 18, 23, 0.08);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.alt-dires-card-1 { transform: rotate(-1.5deg); }
.alt-dires-card-2 {
  transform: rotate(0.8deg) translateY(1.4rem);
  background: var(--neon-navy);
  color: var(--swan-wing);
  border-color: var(--neon-navy);
}
.alt-dires-card-3 { transform: rotate(-0.6deg); }

.alt-dires-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 30px 60px -24px rgba(98, 18, 23, 0.4),
    0 8px 18px -6px rgba(98, 18, 23, 0.12);
}

.alt-dires-card-mark {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--bleached-cedar);
  opacity: 0.55;
  display: block;
  margin-bottom: 0.8rem;
}
.alt-dires-card-2 .alt-dires-card-mark { color: var(--bleached-sand); opacity: 0.8; }

.alt-dires-card-quote {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  line-height: 1.45;
  color: inherit;
  margin: 0 0 1.6rem;
  opacity: 0.92;
}
.alt-dires-card-quote em { font-style: italic; color: var(--bleached-cedar); }
.alt-dires-card-2 .alt-dires-card-quote em { color: var(--bleached-sand); }

.alt-dires-card-foot {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(98, 18, 23, 0.18);
}
.alt-dires-card-2 .alt-dires-card-foot { border-top-color: rgba(247, 246, 238, 0.18); }

.alt-dires-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: inherit;
  font-style: italic;
}
.alt-dires-card-role {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.55;
}

.alt-dires-card-stamp {
  position: absolute;
  bottom: -0.5rem;
  right: 0.8rem;
  font-size: 1.1rem;
  color: var(--bleached-cedar);
  background: var(--bleached-sand);
  padding: 0.2rem 0.7rem;
  transform: rotate(-4deg);
  box-shadow: 0 6px 12px -6px rgba(98, 18, 23, 0.3);
}
.alt-dires-card-2 .alt-dires-card-stamp {
  background: var(--bleached-sand);
  color: var(--neon-navy);
  transform: rotate(3deg);
}

@media (max-width: 960px) {
  .alt-dires-grid { grid-template-columns: 1fr; gap: 1.6rem; max-width: 480px; margin: 0 auto; }
  .alt-dires-card-2 { transform: rotate(0.8deg); }
}


/* =============================================
   LE TRAVAIL — ENHANCEMENTS
   ============================================= */
.alt-travail { overflow: hidden; isolation: isolate; }
.alt-travail .container { position: relative; z-index: 2; }

.alt-travail-ornament {
  position: absolute;
  top: 6%;
  right: 6%;
  width: 24px;
  color: var(--bleached-cedar);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
  animation: altHeroStarFloat 7s ease-in-out infinite;
}

.alt-travail-head {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.alt-travail-head .alt-section-label { margin-bottom: 0; }
.alt-travail-pill {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--bleached-cedar);
  background: rgba(38, 24, 52, 0.06);
  border: 1px dashed rgba(38, 24, 52, 0.22);
  padding: 0.25rem 0.85rem;
  transform: rotate(-2deg);
}

.alt-travail-title-em {
  font-style: italic;
  color: var(--bleached-cedar);
}

.alt-service-card {
  position: relative;
  overflow: visible !important;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
/* All four cards: burgundy on blue section */
.alt-service-card--diagnostic,
.alt-service-card--signature,
.alt-service-card--fil {
  background: var(--neon-navy);
  border-color: var(--neon-navy);
}
.alt-service-card--diagnostic .alt-service-header,
.alt-service-card--signature .alt-service-header,
.alt-service-card--fil .alt-service-header { border-bottom-color: rgba(247, 246, 238, 0.1); }
.alt-service-card--diagnostic .alt-service-duration,
.alt-service-card--signature .alt-service-duration,
.alt-service-card--fil .alt-service-duration { color: var(--bleached-sand); opacity: 0.5; }
.alt-service-card--diagnostic .alt-service-name,
.alt-service-card--signature .alt-service-name,
.alt-service-card--fil .alt-service-name { color: var(--swan-wing); }
.alt-service-card--diagnostic .alt-service-tagline,
.alt-service-card--signature .alt-service-tagline,
.alt-service-card--fil .alt-service-tagline { color: var(--swan-wing); opacity: 0.5; }
.alt-service-card--diagnostic .alt-service-body > p,
.alt-service-card--signature .alt-service-body > p,
.alt-service-card--fil .alt-service-body > p { color: var(--swan-wing); opacity: 0.68; }
.alt-service-card--diagnostic .alt-service-deliverables li,
.alt-service-card--signature .alt-service-deliverables li,
.alt-service-card--fil .alt-service-deliverables li { color: var(--swan-wing); opacity: 0.78; }
.alt-service-card--diagnostic .alt-service-footer,
.alt-service-card--signature .alt-service-footer,
.alt-service-card--fil .alt-service-footer { border-top-color: rgba(247, 246, 238, 0.1); }
.alt-service-card--diagnostic .alt-service-credit,
.alt-service-card--signature .alt-service-credit { color: var(--swan-wing); opacity: 0.65; }
.alt-service-card--diagnostic .alt-service-credit svg,
.alt-service-card--signature .alt-service-credit svg { color: var(--bleached-sand); }
.alt-service-card--diagnostic .alt-service-num,
.alt-service-card--signature .alt-service-num,
.alt-service-card--fil .alt-service-num { background: var(--neon-navy); color: var(--bleached-sand); opacity: 0.9; }
.alt-service-card--diagnostic .alt-service-attributes,
.alt-service-card--signature .alt-service-attributes,
.alt-service-card--fil .alt-service-attributes { color: var(--swan-wing) !important; }

/* Sur invitation badge */
.alt-service-badge--invitation {
  background: rgba(247, 246, 238, 0.12);
  color: var(--bleached-sand);
}

/* Prerequisite note */
.alt-service-prerequisite {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--swan-wing);
  opacity: 0.5;
  padding: 0.75rem 1rem;
  background: rgba(247, 246, 238, 0.06);
  margin-top: auto !important;
}
.alt-service-prerequisite svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; }
.alt-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px -22px rgba(98, 18, 23, 0.28);
}
.alt-service-card--reconstruction:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px -24px rgba(98, 18, 23, 0.5);
}

.alt-service-num {
  position: absolute;
  top: -1.4rem;
  left: 1.2rem;
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bleached-cedar);
  opacity: 0.65;
  background: var(--swan-wing);
  padding: 0 0.5rem;
  z-index: 3;
  pointer-events: none;
}
.alt-service-card--reconstruction .alt-service-num {
  color: var(--bleached-sand);
  background: var(--neon-navy);
  opacity: 0.9;
}

.alt-service-sticker {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  z-index: 4;
  font-size: 1rem;
  background: var(--bleached-sand);
  color: var(--neon-navy);
  padding: 0.3rem 0.85rem;
  transform: rotate(8deg);
  box-shadow: 0 8px 18px -8px rgba(98, 18, 23, 0.4);
  letter-spacing: 0.05em;
}


/* =============================================
   STATS STRIP — ENHANCEMENT
   ============================================= */
.alt-stats { position: relative; }
.alt-stats-handwritten {
  position: absolute;
  top: 1.2rem;
  right: 2rem;
  font-size: 1.2rem;
  color: var(--bleached-cedar);
  opacity: 0.75;
  transform: rotate(-4deg);
  pointer-events: none;
}
@media (max-width: 768px) {
  .alt-stats-handwritten { display: none; }
}


/* =============================================
   LA PROMESSE — ENHANCEMENTS
   ============================================= */
.alt-promesse { isolation: isolate; }
.alt-promesse .container { position: relative; z-index: 2; }

.alt-promesse-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.alt-promesse-backdrop-word {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(12rem, 30vw, 24rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px var(--dusty-blue);
  text-stroke: 2px var(--dusty-blue);
  opacity: 0.3;
  transform: translate(10%, 0);
  user-select: none;
  white-space: nowrap;
}

.alt-promesse-star {
  position: absolute;
  z-index: 1;
  color: var(--bleached-sand);
  pointer-events: none;
  opacity: 0.5;
}
.alt-promesse-star-1 { top: 10%; left: 8%; width: 20px; transform: rotate(-12deg); animation: altHeroStarFloat 6.5s ease-in-out infinite; }
.alt-promesse-star-2 { bottom: 20%; right: 8%; width: 14px; transform: rotate(10deg); animation: altHeroStarFloat 7.5s ease-in-out 0.6s infinite; }

.alt-promesse-head {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.alt-promesse-head .alt-section-label { margin-bottom: 0; }
.alt-promesse-tape {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--bleached-sand);
  background: rgba(174, 161, 144, 0.14);
  border: 1px dashed rgba(174, 161, 144, 0.4);
  padding: 0.25rem 0.85rem;
  transform: rotate(2deg);
  opacity: 0.85;
}


/* =============================================
   INTERMEZZO — pull quote between hero and problème
   ============================================= */
.alt-intermezzo {
  background: var(--dusty-blue);
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.alt-intermezzo .container { position: relative; z-index: 2; }

.alt-intermezzo-spark {
  position: absolute;
  z-index: 1;
  color: var(--bleached-cedar);
  opacity: 0.4;
  pointer-events: none;
}
.alt-intermezzo-spark-1 { top: 18%; left: 8%; width: 22px; transform: rotate(-12deg); animation: altHeroStarFloat 7s ease-in-out infinite; }
.alt-intermezzo-spark-2 { bottom: 20%; right: 10%; width: 16px; transform: rotate(14deg); animation: altHeroStarFloat 6s ease-in-out 0.6s infinite; }

.alt-intermezzo-quote {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
  position: relative;
  padding: 1rem 1rem 0;
}
.alt-intermezzo-mark {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.5;
  color: var(--bleached-cedar);
  opacity: 0.55;
  margin-bottom: 0.6rem;
}
.alt-intermezzo-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--neon-navy);
  margin: 0 auto;
  max-width: 22ch;
}
.alt-intermezzo-quote p em {
  font-style: italic;
  color: var(--bleached-cedar);
}
.alt-intermezzo-attr {
  display: block;
  font-size: 1.2rem;
  color: var(--bleached-cedar);
  opacity: 0.85;
  margin-top: 1rem;
}


/* =============================================
   DELIVERABLES INTRO
   ============================================= */
.alt-service-deliverables-intro {
  font-size: 0.82rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55 !important;
  margin-bottom: 0.2rem !important;
}

/* =============================================
   WAITLIST FORM
   ============================================= */
.alt-waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

.alt-waitlist-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-navy);
  opacity: 0.5;
}

.alt-waitlist-input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(98, 18, 23, 0.22);
  background: rgba(247, 246, 238, 0.55);
  color: var(--neon-navy);
  outline: none;
  width: 100%;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  border-radius: 0;
}

.alt-waitlist-input::placeholder {
  color: var(--neon-navy);
  opacity: 0.35;
}

.alt-waitlist-input:focus {
  border-color: rgba(98, 18, 23, 0.5);
  background: rgba(247, 246, 238, 0.85);
}

.alt-waitlist-success {
  display: none;
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--neon-navy);
  padding: 1.2rem 0.5rem;
  text-align: center;
  line-height: 1.6;
}


/* =============================================
   ORLÉ — REDESIGN HOMEPAGE
   redesign.css — new visual direction
   ============================================= */

/* ---- COLOUR OVERRIDES for redesign body ---- */
.redesign {
  --rd-ink:       #1a1212;
  --rd-paper:     #f7f5f0;
  --rd-accent:    #c8351a;
  --rd-gold:      #e8c96d;
  --rd-cta-bg:    #1a1212;
  --rd-cta-text:  #f7f5f0;
  background: var(--rd-paper);
  color: var(--rd-ink);
}

/* =============================================
   NAV — rd-nav (replaces alt-hero nav styles)
   ============================================= */
.rd-nav {
  position: fixed;
  top: var(--announce-height, 36px);
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 2rem;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.rd-nav.scrolled {
  background: rgba(247, 245, 240, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(26, 18, 18, 0.08);
}

.rd-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Left links */
.rd-nav-left {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.rd-nav-left a {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rd-ink);
  opacity: 0.75;
  transition: opacity 0.2s;
  position: relative;
}

.rd-nav-left a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rd-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.rd-nav-left a:hover {
  opacity: 1;
}

.rd-nav-left a:hover::after {
  transform: scaleX(1);
}

/* Logo */
.rd-nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.rd-nav-logo svg {
  width: 100px;
  height: auto;
  color: var(--rd-ink);
  display: block;
}

/* Right links + CTA */
.rd-nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: flex-end;
}

.rd-nav-right-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.rd-nav-right-links a {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rd-ink);
  opacity: 0.75;
  transition: opacity 0.2s;
}

.rd-nav-right-links a:hover { opacity: 1; }

.rd-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  background: var(--rd-accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.rd-nav-cta:hover {
  background: #a82a12;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .rd-nav-left,
  .rd-nav-right-links,
  .rd-nav-cta { display: none; }
}

/* =============================================
   HERO — rd-hero
   ============================================= */
.rd-hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--announce-height, 36px) + 72px);
  background: var(--rd-paper);
  position: relative;
  overflow: hidden;
}

.rd-hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  width: 100%;
  gap: 3rem;
}

/* — Copy — */
.rd-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.rd-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rd-ink);
  opacity: 0.55;
}

.rd-hero-eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--rd-accent);
  flex-shrink: 0;
}

.rd-hero-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: 1.06;
  color: var(--rd-ink);
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.rd-hero-heading em {
  font-style: italic;
  display: block;
}

.rd-hero-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--rd-ink);
  opacity: 0.7;
  border-left: 2px solid var(--rd-accent);
  padding-left: 1rem;
  line-height: 1.6;
}

.rd-hero-body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--rd-ink);
  opacity: 0.8;
  max-width: 540px;
}

.rd-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.75rem;
  background: var(--rd-cta-bg);
  color: var(--rd-cta-text);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}

.rd-hero-cta svg {
  width: 22px;
  height: 22px;
  color: var(--rd-cta-text);
  flex-shrink: 0;
}

.rd-hero-cta:hover {
  background: #2d1c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(26, 18, 18, 0.45);
}

/* — Visual — */
.rd-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.rd-hero-photo-wrap {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  position: relative;
}

.rd-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Placeholder when no image */
.rd-hero-photo-wrap:not(:has(img[src])),
.rd-hero-photo[src="../images/portrait-1.jpg"]:not([complete]) {
  background: #d8d3cc;
}

/* =============================================
   SERVICES STRIP — rd-services-strip
   ============================================= */
.rd-services-strip {
  border-top: 1px solid rgba(26, 18, 18, 0.1);
  background: var(--rd-paper);
  padding: 1.25rem 2rem;
}

.rd-services-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.rd-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rd-ink);
  opacity: 0.65;
  transition: opacity 0.2s;
}

.rd-strip-item:hover { opacity: 1; }

.rd-strip-icon {
  width: 28px;
  height: 28px;
  color: var(--rd-ink);
  opacity: 0.55;
}

.rd-strip-sep {
  color: var(--rd-accent);
  font-size: 0.5rem;
  opacity: 0.6;
}

/* =============================================
   FOOTER PLACEHOLDER
   ============================================= */
.rd-footer-placeholder {
  border-top: 1px solid rgba(26, 18, 18, 0.1);
  padding: 3rem 2rem;
  background: var(--rd-ink);
}

.rd-footer-placeholder-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.rd-footer-logo-svg {
  width: 100px;
  height: auto;
  color: var(--rd-paper);
  opacity: 0.6;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .rd-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .rd-hero-visual {
    order: -1;
    justify-content: center;
  }

  .rd-hero-photo-wrap {
    max-width: 280px;
    aspect-ratio: 3 / 4;
  }

  .rd-strip-item {
    padding: 0.5rem 1.2rem;
  }
}

@media (max-width: 600px) {
  .rd-hero-heading {
    font-size: 2.4rem;
  }

  .rd-services-strip-inner {
    gap: 0;
  }

  .rd-strip-sep {
    display: none;
  }
}


/* =============================================
   HP — HOMEPAGE V2  (Figma redesign)
   Palette: #640a22 · #bed5eb · #f5dedf · #f7f6ee · #261834
   ============================================= */

:root {
  --hp-maroon:  #640a22;
  --hp-blue:    #bed5eb;
  --hp-pink:    #f5dedf;
  --hp-cream:   #f7f6ee;
  --hp-navy:    #261834;
  --hp-cursive: 'Cedarville Cursive', 'Caveat', cursive;
}

/* ---- NAV PILL ------------------------------------------- */
.hp-nav {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 900;
}

.hp-nav-inner {
  background: var(--hp-blue);
  border-radius: 80px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: box-shadow 0.3s var(--ease);
}

.hp-nav.scrolled .hp-nav-inner {
  box-shadow: 0 4px 24px -8px rgba(38, 24, 52, 0.18);
}

/* Left links — Cormorant */
.hp-nav-left {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.hp-nav-left a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--hp-maroon);
  letter-spacing: -0.04em;
  transition: opacity 0.2s var(--ease);
}

.hp-nav-left a:hover { opacity: 0.6; }

/* Language toggle — Roboto uppercase, sits at the very left */
.hp-nav .hp-nav-left a.hp-nav-lang {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Logo */
.hp-nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--hp-maroon);
}

.hp-nav-logo svg {
  width: 88px;
  height: auto;
  display: block;
  color: inherit;
}

/* Right links + CTA — Roboto */
.hp-nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}

.hp-nav-right-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.hp-nav-right-links a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--hp-maroon);
  letter-spacing: -0.04em;
  transition: opacity 0.2s var(--ease);
}

.hp-nav-right-links a:hover { opacity: 0.6; }

.hp-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.5rem;
  background: var(--hp-pink);
  color: #000;
  border: 1px solid var(--hp-maroon);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  white-space: nowrap;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  cursor: pointer;
}
.hp-nav-cta--beta {
  background: var(--hp-blue);
  color: var(--hp-navy);
  border-color: var(--hp-navy);
}
.hp-nav-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
button.hp-nav-cta { line-height: 1; }

.hp-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 5px 6px 6px rgba(0, 0, 0, 0.22);
}

/* Hamburger */
.hp-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hp-nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hp-maroon);
  border-radius: 2px;
  transition: opacity 0.2s;
}

@media (max-width: 960px) {
  .hp-nav-left,
  .hp-nav-right-links,
  .hp-nav-cta { display: none; }

  .hp-nav-hamburger { display: flex; }
}

/* ---- HERO ----------------------------------------------- */
.hp-hero {
  background: var(--hp-cream);
  /* Extra 5rem accounts for the rotation swinging 'worth' ~70px above the layout box */
  padding-top: calc(16px + 62px + 5rem);
  min-height: 600px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hp-hero-grid {
  display: grid;
  grid-template-columns: 42% 1fr;
  grid-template-rows: auto 1fr;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem 0 clamp(3rem, 7vw, 9rem);
  gap: 0;
  overflow: visible;
}

/* Heading row spans full grid width so 'worth' lands over the photo */
.hp-hero-heading-row {
  grid-column: 1 / 3;
  grid-row: 1;
  position: relative;
  z-index: 2;
  overflow: visible;
  padding-top: 0;
  padding-right: 0;
  pointer-events: none;
}

.hp-hero-heading {
  font-family: var(--hp-cursive);
  /* Cap matches ~4.5vw at the 1400px grid max-width so the heading doesn't
     keep growing on wider displays while the columns stay fixed. */
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--hp-maroon);
  line-height: 1.3;
  letter-spacing: -0.02em;
  transform: rotate(-4.45deg);
  transform-origin: left center;
  margin: 0;
  overflow: visible;
  white-space: nowrap;
}

.hp-hero-heading span {
  display: block;
  white-space: nowrap;
}

.hp-hero-heading span.hp-hero-heading-worth {
  display: inline;
  white-space: nowrap;
  text-shadow: 2px 2px 6px rgba(247, 200, 210, 0.9);
}

/* Copy block — stays in the left column, pushed right against the photo */
.hp-hero-left {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 2.5rem;
  padding-right: 1rem;
  margin-left: auto;
  max-width: 100%;
}

/* Subheadline */
.hp-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.90rem;
  font-weight: 500;
  color: var(--hp-maroon);
  letter-spacing: 0em;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.hp-hero-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--hp-maroon);
  letter-spacing: -0.03em;
  line-height: 1.6;
  margin: 0;
}

.hp-hero-body strong { font-weight: 700; }

.hp-hero-body-line { white-space: nowrap; }

/* Right column — photo spans both grid rows, pulled left to overlap heading */
.hp-hero-right {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  justify-content: center;
  /* Pull the photo up so "worth" actually overlaps it instead of floating
     above an image centered in the row. */
  align-items: flex-start;
  position: relative;
  z-index: 1;
  margin-left: 0rem;
}

.hp-hero-photo-wrap {
  transform: rotate(6.52deg);
  width: 90%;
  max-width: 420px;
  /* Fixed crop so the photo renders the same on any desktop height,
     instead of stretching to its full 2/3 ratio on tall displays. */
  aspect-ratio: 4 / 5;
  /* Lift the photo into the heading band so "worth" actually overlaps it,
     but not so far that it tucks under the fixed nav. */
  margin-top: -1.5rem;
  border-radius: 8px;
  overflow: hidden;
  background: #d5cfc6;
  box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.15);
}

.hp-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* CTA strip */
.hp-hero-cta-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 3rem 1.5rem;
}
.hp-hero-cta-subhead {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--hp-maroon);
  text-align: center;
}
.hp-hero-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hp-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hp-maroon);
  color: var(--hp-pink);
  border: 3px solid var(--hp-pink);
  border-radius: 100px;
  padding: 0.75rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.hp-hero-cta--beta {
  background: var(--hp-blue);
  color: var(--hp-navy);
  border-color: var(--hp-navy);
}
button.hp-hero-cta { line-height: 1; }

.hp-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 6px 8px 10px rgba(0, 0, 0, 0.25);
}

/* ---- BETA TICKER ---------------------------------------- */
.hp-beta-ticker {
  background: var(--hp-blue);
  height: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.hp-beta-ticker-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: hp-beta-ticker-scroll 40s linear infinite;
  will-change: transform;
}

.hp-beta-ticker-track:hover {
  animation-play-state: paused;
}

/* Each set is a viewport-wide row of items spaced evenly so two sets
   never appear on screen at the same time and the loop is seamless. */
.hp-beta-ticker-set {
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0 1.25rem;
  flex-shrink: 0;
  min-width: 100vw;
  gap: 2.5rem;
  white-space: nowrap;
}

.hp-beta-ticker-set li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #000;
}

@keyframes hp-beta-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hp-beta-ticker-track {
    animation: none;
  }
}

/* ---- FOOTER PLACEHOLDER --------------------------------- */
.hp-footer-placeholder {
  border-top: 1px solid rgba(100, 10, 34, 0.1);
  padding: 3rem 2rem;
  background: var(--hp-maroon);
}

.hp-footer-placeholder-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.hp-footer-logo-svg {
  width: 100px;
  height: auto;
  color: var(--hp-pink);
  opacity: 0.7;
}

/* ---- RESPONSIVE ----------------------------------------- */
@media (max-width: 960px) {
  .hp-hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 0 2rem;
  }

  .hp-hero-heading-row {
    grid-column: 1;
    grid-row: 2;
    padding-top: 1.75rem;
  }

  .hp-hero-right {
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
    padding: 0;
  }

  .hp-hero-photo-wrap {
    max-width: 180px;
    transform: rotate(3deg);
    margin-top: 0;
  }

  .hp-hero-heading {
    transform: none;
    font-size: clamp(2.1rem, 7.5vw, 3rem);
    white-space: normal;
  }

  .hp-hero-heading span { white-space: normal; }

  .hp-hero-left {
    grid-column: 1;
    grid-row: 3;
    padding-top: 0.75rem;
    padding-right: 0;
    margin-left: 0;
  }

  .hp-hero-eyebrow,
  .hp-hero-body-line { white-space: normal; }
}

@media (max-width: 600px) {
  .hp-hero {
    padding-top: calc(16px + 72px + 1rem);
    height: auto;
    min-height: 100dvh;
  }

  .hp-hero-cta {
    padding: 0.65rem 1.75rem;
    font-size: 0.8rem;
  }

  .hp-hero-cta-wrap {
    padding: 1rem 1.5rem 1.5rem;
  }

  .hp-beta-ticker {
    height: 48px;
    padding: 0;
  }

  .hp-beta-ticker-set li {
    font-size: 0.72rem;
  }

  .hp-beta-ticker-set {
    gap: 1.5rem;
    padding: 0 0.75rem;
  }

  .hp-beta-ticker-track {
    animation-duration: 30s;
  }

  .hp-nav-inner {
    height: 72px;
    padding: 0 1.5rem;
  }
}


/* =============================================
   HP — SECTION 2: THE PROBLEM
   Background: #640a22 (maroon)
   ============================================= */

/* Shared section label utility */
.hp-section-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hp-maroon);
}

.hp-section-label--light {
  color: var(--hp-cream);
}

/* Problem section wrapper */
.hp-problem {
  background: var(--hp-maroon);
  padding: 4rem 0;
}

.hp-problem-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
  gap: 3rem;
  align-items: start;
}

/* Left column */
.hp-problem-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0;
}

.hp-problem-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 3rem);
  color: var(--hp-blue);
  line-height: 1.5;
  letter-spacing: -0.05em;
  display: flex;
  flex-direction: column;
}

.hp-problem-heading span { display: block; }

.hp-problem-heading em {
  font-style: italic;
  font-weight: 550;
}

.hp-problem-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--hp-cream);
  letter-spacing: -0.02em;
  line-height: 1.7;
  max-width: 540px;
}

/* Right column — card */
.hp-problem-right {
  padding-top: 0;
}

.hp-problem-card {
  background: var(--hp-cream);
  border: 4px solid var(--hp-blue);
  border-radius: 20px;
  box-shadow: 5px 6px 7px rgba(0, 0, 0, 0.25);
  padding: 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hp-card-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hp-maroon);
  margin-bottom: 1.5rem;
}

.hp-problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.hp-problem-list li {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--hp-maroon);
  letter-spacing: -0.02em;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(100, 10, 34, 0.18);
  line-height: 1.4;
}

.hp-problem-list li:first-child {
  padding-top: 0;
}

.hp-problem-card-note {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--hp-maroon);
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin-top: 1.75rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hp-problem-inner {
    grid-template-columns: 1fr;
    padding: 0 2rem;
    gap: 3rem;
  }

  .hp-problem-heading {
    font-size: clamp(2.25rem, 7.5vw, 3.25rem);
  }
}

@media (max-width: 600px) {
  .hp-problem {
    padding: 4rem 0 5rem;
  }

  .hp-problem-card {
    padding: 1.5rem;
  }
}


/* =============================================
   HP — SECTION 3: THE REFRAME
   Background: #261834 (dark navy)
   Layout mirrors Section 2: card left, text right
   ============================================= */

.hp-reframe {
  background: var(--hp-navy);
  padding: 4rem 0 10rem;
}

.hp-reframe-inner {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
  gap: 3rem;
  align-items: start;
}

/* Left — card */
.hp-reframe-left {
  padding-top: 0;
}

.hp-reframe-card {
  background: var(--hp-cream);
  border: 4px solid var(--hp-blue);
  border-radius: 20px;
  box-shadow: 5px 6px 7px rgba(0, 0, 0, 0.25);
  padding: 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.hp-reframe-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.hp-reframe-list li {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--hp-maroon);
  letter-spacing: -0.02em;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(100, 10, 34, 0.18);
  line-height: 1.4;
}

.hp-reframe-list li:first-child {
  padding-top: 0;
}

.hp-reframe-card-note {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--hp-maroon);
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin-top: 1.75rem;
}

/* Right — text */
.hp-reframe-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0;
  padding-left: 5rem;
}

.hp-reframe-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 3rem);
  color: var(--hp-blue);
  line-height: 1.5;
  letter-spacing: -0.05em;
  display: flex;
  flex-direction: column;
}

.hp-reframe-heading span { display: block; }

.hp-reframe-heading em {
  font-style: italic;
  font-weight: 550;
}

.hp-reframe-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--hp-cream);
  letter-spacing: -0.02em;
  line-height: 1.7;
  max-width: 560px;
}

.hp-reframe-body strong {
  font-weight: 700;
}

/* Responsive */
@media (max-width: 960px) {
  .hp-reframe-inner {
    grid-template-columns: 1fr;
    padding: 0 2rem;
    gap: 3rem;
  }

  .hp-reframe-right {
    padding-left: 0;
    order: 1;
  }

  .hp-reframe-left {
    order: 2;
  }

  .hp-reframe-heading {
    font-size: clamp(2.25rem, 7.5vw, 3.25rem);
  }
}

@media (max-width: 900px) {
  .hp-reframe {
    padding: 4rem 0 7rem;
  }
}

@media (max-width: 600px) {
  .hp-reframe {
    padding: 4rem 0 5rem;
  }

  .hp-reframe-card {
    padding: 1.5rem;
  }
}


/* =============================================
   HP — SECTION 3b: LETTER FROM KRIS
   The letter+text PNG (1665x1523, transparent bg) is the
   entire piece. The figure is sized with the image's
   aspect-ratio so percentages on the maroon panel scale
   correctly. The figure is pulled up slightly so only the
   upper-right corner of the letter (envelope flap apex)
   overlaps the reframe section above. The maroon panel
   sits behind the letter starting just below the doily
   card's top-left corner (~40% from image top) and ends
   just past the bottom of the image — full viewport width.
   ============================================= */

.hp-letter {
  background: var(--hp-cream);
  display: flow-root;
}

.hp-letter-figure {
  position: relative;
  max-width: 1000px;
  width: calc(100% - 5rem);
  margin: -140px auto 60px;
  aspect-ratio: 1665 / 1523;
}

/* Maroon panel — full viewport width, top edge sits just below
   the envelope's top-left corner; bottom edge sits just below
   the image. Sits behind the image. */
.hp-letter-bg {
  position: absolute;
  top: 28%;
  bottom: -3%;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--hp-maroon);
  z-index: 0;
}

.hp-letter-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  user-select: none;
}

/* CTA row (sits on cream page bg, below the maroon panel) */
.hp-letter-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 2.5rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sized to match the hero CTA. */
.hp-letter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 0.75rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
button.hp-letter-btn { line-height: 1; }

.hp-letter-btn--blue {
  background: var(--hp-blue);
  color: var(--hp-navy);
  border: 3px solid var(--hp-navy);
}

.hp-letter-btn--pink {
  background: var(--hp-pink);
  color: var(--hp-maroon);
  border: 3px solid var(--hp-maroon);
}

.hp-letter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 6px 8px 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .hp-letter-figure {
    width: calc(100% - 3rem);
    margin: -90px auto 50px;
  }

  .hp-letter-actions {
    gap: 1.25rem;
    padding: 1rem 1.5rem 4rem;
  }
}

@media (max-width: 600px) {
  .hp-letter-figure {
    width: calc(100% - 2rem);
    margin: -55px auto 40px;
  }

  .hp-letter-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.25rem 3.5rem;
  }
}


/* =============================================
   HP — SECTION 2b: VOCABULARY BAR
   Signal · Interference · Pattern · Depth
   Break · Thread · Root · Sovereign
   ============================================= */

.hp-vocab-bar {
  background: var(--hp-blue);
  padding: 1.5rem 4rem;
}

.hp-vocab-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.hp-vocab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.hp-vocab-icon {
  width: clamp(36px, 3.6vw, 52px);
  height: clamp(36px, 3.6vw, 52px);
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.hp-vocab-item span {
  font-family: var(--hp-cursive);
  font-size: clamp(0.7rem, 0.9vw, 0.95rem);
  color: #000;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .hp-vocab-bar {
    padding: 2rem;
  }

  .hp-vocab-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
  }

  .hp-vocab-item {
    flex: 0 0 calc(25% - 2rem);
  }
}

@media (max-width: 500px) {
  .hp-vocab-item {
    flex: 0 0 calc(33.33% - 1.5rem);
  }
}


/* =============================================
   HP — SECTION 4: WHO I AM
   Background: #f7f6ee (cream) with blurred decorative backdrop
   Layout: text content left, rotated portrait right
   ============================================= */

.hp-whoiam {
  position: relative;
  background: var(--hp-cream);
  padding: 6rem 0 7rem;
  overflow: hidden;
}

/* Full-section blurred portrait backdrop — visible (matches Figma), moderate blur. */
.hp-whoiam-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hp-whoiam-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: blur(8px);
  opacity: 1;
  transform: scale(1.05);
}

.hp-whoiam-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: start;
}

.hp-whoiam-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 720px;
}

.hp-whoiam-content .hp-section-label {
  margin: 0;
}

.hp-whoiam-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  color: var(--hp-maroon);
  line-height: 1.18;
  letter-spacing: -0.05em;
  text-shadow: 4px 4px 7px rgba(255, 255, 255, 0.6);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Each heading line gets a light-blue highlighter band that starts just
   above the lowercase letters and ends at the baseline. */
.hp-whoiam-heading span {
  display: block;
  background: linear-gradient(
    to bottom,
    transparent 32%,
    var(--hp-blue) 32%,
    var(--hp-blue) 88%,
    transparent 88%
  );
  padding: 0 0.28em;
  white-space: nowrap;
}

.hp-whoiam-heading em {
  font-style: italic;
  font-weight: 500;
}

/* Bio — each line of every paragraph gets a light-pink marker-style highlight. */
.hp-whoiam-bio {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  line-height: 1.85;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  max-width: 540px;
}

.hp-whoiam-bio p { margin: 0; }

.hp-whoiam-hl {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: var(--hp-pink);
  padding: 0.18em 0.32em;
}

/* Rotated portrait, right column */
.hp-whoiam-photo {
  width: clamp(240px, 28vw, 400px);
  aspect-ratio: 528 / 661;
  border-radius: 8px;
  overflow: hidden;
  transform: rotate(6.52deg);
  transform-origin: center center;
  box-shadow: 0 22px 44px -14px rgba(0, 0, 0, 0.28);
  margin-top: 2rem;
  align-self: start;
}

.hp-whoiam-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 960px) {
  .hp-whoiam {
    padding: 4.5rem 0 5rem;
  }
  .hp-whoiam-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 2rem;
    justify-items: center;
  }
  .hp-whoiam-content {
    order: 2;
    max-width: 640px;
  }
  .hp-whoiam-photo {
    order: 1;
    width: min(70vw, 320px);
    margin-top: 0;
  }
  .hp-whoiam-heading {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .hp-whoiam-heading span {
    white-space: normal;
  }
}


/* =============================================
   HP — SECTION 5: SERVICES
   Stacked expandable pill rows
   ============================================= */

.hp-services {
  background: var(--hp-cream);
  padding: 4rem 0 1.5rem;
}

.hp-services-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.hp-services-title {
  font-family: var(--hp-cursive);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #000;
  text-align: center;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hp-services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Overlap effect: each pill except first slides under the previous */
.hp-service-item {
  position: relative;
}
.hp-service-item:nth-child(1) { z-index: 4; }
.hp-service-item:nth-child(2) { z-index: 3; }
.hp-service-item:nth-child(3) { z-index: 2; }
.hp-service-item:nth-child(4) { z-index: 1; }
.hp-service-item.open          { z-index: 10; }
.hp-svc-overlap { margin-top: -10px; }

/* ---- Pill button ---- */
.hp-service-pill {
  width: 100%;
  height: clamp(52px, 5vw, 70px);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  cursor: pointer;
  border: none;
  text-align: left;
  transition: filter 0.15s var(--ease);
  position: relative;
  z-index: 1;
}

.hp-service-pill:hover {
  filter: brightness(0.96);
}

/* Pill colour themes */
.hp-svc--maroon { background: var(--hp-maroon); }
.hp-svc--pink   { background: var(--hp-pink); }
.hp-svc--blue   { background: var(--hp-blue); }
.hp-svc--navy   { background: var(--hp-navy); }

/* Service name */
.hp-svc-name {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hp-svc--maroon .hp-svc-name { color: var(--hp-pink); }
.hp-svc--pink   .hp-svc-name { color: var(--hp-maroon); }
.hp-svc--blue   .hp-svc-name { color: var(--hp-navy); }
.hp-svc--navy   .hp-svc-name { color: var(--hp-blue); }

/* Right cluster */
.hp-svc-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.hp-svc-badge {
  font-family: var(--font-body);
  font-size: clamp(0.6rem, 1vw, 0.9rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hp-svc--maroon .hp-svc-badge { color: var(--hp-pink); }
.hp-svc--pink   .hp-svc-badge { color: var(--hp-maroon); }
.hp-svc--blue   .hp-svc-badge { color: var(--hp-navy); }
.hp-svc--navy   .hp-svc-badge { color: var(--hp-blue); }

.hp-svc-arrow {
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1;
  transition: transform 0.35s var(--ease-out);
  display: inline-block;
}

.hp-svc--maroon .hp-svc-arrow { color: var(--hp-pink); }
.hp-svc--pink   .hp-svc-arrow { color: var(--hp-maroon); }
.hp-svc--blue   .hp-svc-arrow { color: var(--hp-navy); }
.hp-svc--navy   .hp-svc-arrow { color: var(--hp-blue); }

.hp-service-item.open .hp-svc-arrow {
  transform: rotate(180deg);
}

/* ---- Expand panel ---- */
.hp-service-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.3s ease 0.08s;
  border-radius: 0 0 34px 34px;
}

.hp-service-item.open .hp-service-expand {
  max-height: 1200px;
  opacity: 1;
}

.hp-svc-expand--maroon { background: var(--hp-maroon); }
.hp-svc-expand--pink   { background: var(--hp-pink); }
.hp-svc-expand--blue   { background: var(--hp-blue); }
.hp-svc-expand--navy   { background: var(--hp-navy); }

.hp-service-expand-inner {
  padding: 2.75rem 2rem 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

/* Cursive subtitle eyebrow */
.hp-svc-eyebrow {
  font-family: var(--hp-cursive);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.hp-svc-expand--maroon .hp-svc-eyebrow { color: var(--hp-pink); }
.hp-svc-expand--pink   .hp-svc-eyebrow { color: var(--hp-maroon); }
.hp-svc-expand--blue   .hp-svc-eyebrow { color: var(--hp-navy); }
.hp-svc-expand--navy   .hp-svc-eyebrow { color: #99a7b7; }

/* Lead-in description */
.hp-svc-lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0;
}

/* Bulleted feature list */
.hp-svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.hp-svc-list li {
  position: relative;
  padding-left: 1.25rem;
}

.hp-svc-list li::before {
  content: "•";
  position: absolute;
  left: 0.25rem;
  top: 0;
}

/* Italic closing note */
.hp-svc-note {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
  margin: 0.25rem 0 0;
}

/* Colour-matched body copy for expand panels */
.hp-svc-expand--maroon .hp-svc-lead,
.hp-svc-expand--maroon .hp-svc-list,
.hp-svc-expand--maroon .hp-svc-note { color: var(--hp-cream); }

.hp-svc-expand--pink .hp-svc-lead,
.hp-svc-expand--pink .hp-svc-list,
.hp-svc-expand--pink .hp-svc-note { color: #000; }

.hp-svc-expand--blue .hp-svc-lead,
.hp-svc-expand--blue .hp-svc-list,
.hp-svc-expand--blue .hp-svc-note { color: #000; }

.hp-svc-expand--navy .hp-svc-lead,
.hp-svc-expand--navy .hp-svc-list,
.hp-svc-expand--navy .hp-svc-note { color: #fff; }

/* CTA buttons inside expand */
.hp-svc-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
button.hp-svc-cta { line-height: 1; }

.hp-svc-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.hp-svc-cta--blue   { background: var(--hp-blue);   color: var(--hp-navy);   border-color: var(--hp-navy); }
.hp-svc-cta--pink   { background: var(--hp-pink);   color: var(--hp-maroon); border-color: var(--hp-maroon); }
.hp-svc-cta--maroon { background: var(--hp-maroon); color: var(--hp-pink);   border-color: var(--hp-maroon); }
.hp-svc-cta--navy   { background: var(--hp-navy);   color: var(--hp-blue);   border-color: var(--hp-navy); }
.hp-svc-cta--cream  { background: var(--hp-cream);  color: var(--hp-navy);   border-color: var(--hp-navy); }

/* Responsive */
@media (max-width: 960px) {
  .hp-services-inner {
    padding: 0 2rem;
  }

  .hp-service-expand-inner {
    padding: 2rem 1.5rem 2.25rem;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .hp-services {
    padding: 4rem 0 1.5rem;
  }

  .hp-service-pill {
    padding: 0 1.25rem;
    height: clamp(58px, 14vw, 72px);
  }

  .hp-svc-badge {
    display: none;
  }
}

/* ============================================================
   SECTION 6 — WHO IS THIS WORK FOR
   ============================================================ */
.hp-whofor {
  background: var(--hp-cream);
  padding: 1.5rem 0 4rem;
}
.hp-whofor-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hp-whofor-heading {
  font-family: 'Cormorant', 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  color: var(--hp-maroon);
  letter-spacing: -0.05em;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 1.5rem;
  width: 100%;
}

.hp-whofor-sub {
  font-family: var(--hp-cursive);
  font-style: normal;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  color: var(--hp-maroon);
  text-align: center;
  letter-spacing: -0.04em;
  line-height: 1.4;
  margin: 0 0 1rem;
  width: 100%;
}

.hp-whofor-tagline {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-align: center;
  letter-spacing: -0.03em;
  margin: 0 0 1.75rem;
  width: 100%;
}

.hp-whofor-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 3rem;
  border-top: 1px solid var(--hp-blue);
  width: 100%;
  max-width: 800px;
}
.hp-whofor-list li {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: -0.03em;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--hp-blue);
}

/* Pink background prose block */
.hp-whofor-prose-wrap {
  background: var(--hp-pink);
  margin: 0 -2rem;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  width: calc(100% + 4rem);
  display: flex;
  justify-content: center;
  text-align: center;
}

.hp-whofor-prose {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.65;
}
.hp-whofor-prose p { margin: 0 0 1em; }
.hp-whofor-prose p:last-child { margin-bottom: 0; }
.hp-whofor-prose em { font-style: italic; }
.hp-whofor-prose strong { font-weight: 600; }

/* ============================================================
   SECTION 2b — THE 64 BRAND PATTERNS FRAMEWORK (intro header)
   Sits on the cream page background, above the Interference Map.
   Centered title + two-line uppercase subtitle, with light-blue
   highlights behind "Framework" and "brand interference into
   brand magnetism".
   ============================================================ */
.hp-framework {
  background: var(--hp-cream);
  padding: 4.5rem 2rem 2.25rem;
}

.hp-framework-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hp-framework-title {
  font-family: 'Cormorant', 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--hp-navy);
  margin: 0 0 1.5rem;
}

.hp-framework-title-hl {
  background-image: linear-gradient(var(--hp-blue), var(--hp-blue));
  background-repeat: no-repeat;
  background-size: 100% 0.42em;
  background-position: 0 78%;
  padding: 0 0.12em;
}

.hp-framework-sub {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--hp-navy);
  max-width: 1100px;
  margin: 0 auto;
}

.hp-framework-sub-line {
  display: block;
}

.hp-framework-sub-hl {
  background-image: linear-gradient(var(--hp-blue), var(--hp-blue));
  background-repeat: no-repeat;
  background-size: 100% 0.85em;
  background-position: 0 78%;
  padding: 0.08em 0.25em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media (max-width: 700px) {
  .hp-framework {
    padding: 3rem 1.25rem;
  }
  .hp-framework-title {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }
  .hp-framework-sub {
    font-size: 0.95rem;
  }
}

/* ============================================================
   SECTION 2c — THE INTERFERENCE MAP (64 BRAND PATTERNS)
   ============================================================ */
.hp-imap {
  background: var(--hp-cream);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.hp-imap-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px minmax(0, 560px);
  justify-content: center;
  gap: 3rem;
  align-items: start;
}

/* Grid card */
.hp-imap-card {
  background: var(--hp-cream);
  border: 3px solid var(--hp-blue);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 5px 6px 7px rgba(0,0,0,0.25);
}
.hp-imap-card-title {
  font-family: var(--hp-cursive);
  font-size: 1.25rem;
  letter-spacing: -0.05em;
  text-align: center;
  margin: 0 0 1rem;
}
.hp-imap-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
}
.hp-pattern-sq {
  background: var(--hp-blue);
  border: none;
  border-radius: 2px;
  aspect-ratio: 1;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  color: var(--hp-navy);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.12s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}
.hp-pattern-sq:hover {
  background: var(--hp-maroon);
  color: var(--hp-cream);
  transform: scale(1.12);
}
.hp-pattern-sq.active {
  background: var(--hp-navy);
  color: var(--hp-cream);
  outline: 2px solid var(--hp-blue);
}

/* Right text */
.hp-imap-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--hp-maroon);
  margin: 0 0 1rem;
}
.hp-imap-heading {
  font-family: 'Cormorant', 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--hp-navy);
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin: 0 0 2rem;
}
.hp-imap-body {
  color: var(--hp-navy);
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: -0.03em;
}
.hp-imap-body p { margin: 0 0 1.25em; }
.hp-imap-body p:last-child { margin-bottom: 0; }

/* Right column — stacks text + detail in same grid cell so the cell
   sizes to fit whichever is taller (no clipped copy). */
.hp-imap-right {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  padding-left: 0;
}
.hp-imap-text,
.hp-imap-detail {
  grid-column: 1;
  grid-row: 1;
  transition: opacity 0.38s;
}
.hp-imap-text {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

/* Pattern detail overlay — soft white-grey card */
.hp-imap-detail {
  background: #ececea;
  border: 2px solid var(--hp-blue);
  border-radius: 16px;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  position: relative;
  z-index: 2;
  align-self: start;
  min-height: 100%;
}
.hp-imap-detail.open {
  opacity: 1;
  pointer-events: auto;
}
.hp-imap-right:has(.hp-imap-detail.open) .hp-imap-text {
  opacity: 0;
  pointer-events: none;
}
.hp-imap-detail-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: auto;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--hp-maroon);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.hp-imap-detail-close:hover { background: var(--hp-pink); }
.hp-imap-detail-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-maroon);
  margin: 0 0 0.5rem;
}
.hp-imap-detail-name {
  font-family: 'Cormorant', 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--hp-maroon);
  letter-spacing: -0.04em;
  margin: 0 0 1.5rem;
}
.hp-imap-detail-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
  margin: 0;
}

@media (max-width: 900px) {
  .hp-imap-inner { grid-template-columns: 1fr; }
  .hp-imap-right { padding-left: 0; }
}

/* ============================================================
   SECTION 8 — CLARITY PROMISE
   ============================================================ */
.hp-clarity {
  background: var(--hp-maroon);
  padding: 4rem 2rem;
}
.hp-clarity-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 3rem;
  align-items: start;
}
.hp-clarity-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-cream);
  margin: 0 0 1.25rem;
}
.hp-clarity-heading {
  font-family: 'Cormorant', 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 400;
  color: var(--hp-blue);
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin: 0 0 1.25rem;
}
.hp-clarity-heading em {
  font-style: italic;
  font-weight: 550;
}
.hp-clarity-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--hp-cream);
  letter-spacing: -0.03em;
  margin: 0 0 1em;
}
.hp-clarity-body em { font-style: italic; }
.hp-clarity-body:last-child { margin-bottom: 0; }

/* Clarity card — mirrors the "What hasn't worked" card styling */
.hp-clarity-card {
  background: var(--hp-cream);
  border: 4px solid var(--hp-blue);
  border-radius: 20px;
  box-shadow: 5px 6px 7px rgba(0, 0, 0, 0.25);
  padding: 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hp-clarity-card-label {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-maroon);
  margin: 0 0 1.5rem;
}
.hp-clarity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.hp-clarity-list li {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--hp-maroon);
  letter-spacing: -0.02em;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(100, 10, 34, 0.18);
  line-height: 1.4;
}
.hp-clarity-list li:first-child { padding-top: 0; }
.hp-clarity-list li strong { font-weight: 600; }

@media (max-width: 860px) {
  .hp-clarity-inner { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .hp-clarity-heading {
    font-size: clamp(2.25rem, 7.5vw, 3.25rem);
  }
}

/* ============================================================
   SECTION 8b — WAITLIST POSTCARD
   ============================================================ */
.hp-waitlist {
  background: var(--hp-cream);
  padding: 4rem 2rem 6rem;
}
.hp-waitlist-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--hp-pink);
  border: 2px solid var(--hp-maroon);
  border-radius: 20px;
  box-shadow: 4px 4px 4px rgba(0,0,0,0.25);
  overflow: hidden;
}

/* Header bar */
.hp-waitlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.75rem;
}
.hp-waitlist-beta,
.hp-waitlist-location {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}
.hp-waitlist-badge {
  background: var(--hp-navy);
  color: var(--hp-pink);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  transform: rotate(5.44deg);
}
.hp-waitlist-rule-h {
  border: none;
  border-top: 2px solid var(--hp-maroon);
  margin: 0;
}

/* Body */
.hp-waitlist-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  min-height: 420px;
}
.hp-waitlist-divider-v {
  width: 2px;
  background: var(--hp-maroon);
  margin: 2rem 0;
}
.hp-waitlist-left,
.hp-waitlist-right {
  padding: 3rem 2.5rem;
}
.hp-waitlist-heading {
  font-family: 'Cormorant', 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--hp-navy);
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin: 0 0 1rem;
}
.hp-waitlist-heading em {
  font-style: italic;
  font-weight: 600;
}
.hp-waitlist-priority {
  font-family: var(--hp-cursive);
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  transform: rotate(-5.05deg);
  display: inline-block;
  margin: 0 0 2rem;
}
.hp-waitlist-copy {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.03em;
  margin: 0;
}
.hp-waitlist-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 480px;
}
.hp-waitlist-input {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 8px;
  padding: 0.9rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: rgba(255,255,255,0.6);
  color: #000;
  letter-spacing: -0.03em;
  box-sizing: border-box;
}
.hp-waitlist-input::placeholder { opacity: 0.45; }
.hp-waitlist-input:focus { outline: 2px solid var(--hp-maroon); background: #fff; }
.hp-waitlist-submit {
  background: var(--hp-navy);
  border: 4px solid var(--hp-blue);
  border-radius: 100px;
  color: var(--hp-blue);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
  padding: 1rem 1.5rem;
  cursor: pointer;
  box-shadow: 4px 4px 4px rgba(0,0,0,0.25);
  transition: opacity 0.18s;
}
.hp-waitlist-submit:hover { opacity: 0.85; }

@media (max-width: 860px) {
  .hp-waitlist-body { grid-template-columns: 1fr; }
  .hp-waitlist-divider-v { width: 100%; height: 2px; margin: 0 2rem; }
}

/* ============================================================
   SECTION 9 — FOOTER
   ============================================================ */
.hp-footer {
  background: var(--hp-blue);
  padding: 4rem 2rem 2rem;
  color: #000;
}
.hp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo + tagline + newsletter block */
.hp-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2rem;
}
.hp-footer-brand { max-width: 560px; }

/* Newsletter signup */
.hp-newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}
.hp-newsletter-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-maroon);
}
.hp-newsletter-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.hp-newsletter-input {
  flex: 1 1 auto;
  min-width: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  color: #000;
  background: var(--hp-cream);
  border: 1.5px solid var(--hp-maroon);
  border-radius: 100px;
  padding: 0.7rem 1.1rem;
  outline: none;
}
.hp-newsletter-input::placeholder { color: rgba(0,0,0,0.45); }
.hp-newsletter-input:focus { border-color: var(--hp-navy); }
.hp-newsletter-btn {
  flex: 0 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hp-blue);
  background: var(--hp-maroon);
  border: 1.5px solid var(--hp-maroon);
  border-radius: 100px;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.hp-newsletter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  background: var(--hp-navy);
  border-color: var(--hp-navy);
}
.hp-footer-logo {
  width: 80px;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
  color: var(--hp-maroon);
}
.hp-footer-category {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-maroon);
  margin: 0 0 0.5rem;
}
.hp-footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 480px;
}

/* Rules */
.hp-footer-rule {
  border: none;
  border-top: 2px solid var(--hp-maroon);
  margin: 0 0 2.5rem;
}
.hp-footer-rule--bottom {
  margin: 2.5rem 0 1rem;
}

/* Columns */
.hp-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.hp-footer-col-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-maroon);
  margin: 0 0 0.75rem;
}
.hp-footer-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #000;
  text-decoration: none;
  margin-bottom: 0.4rem;
}
.hp-footer-link:hover { color: var(--hp-maroon); }
.hp-footer-philosophy {
  font-family: var(--hp-cursive);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 0.25rem;
}

/* Copyright */
.hp-footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: -0.01em;
  color: rgba(0,0,0,0.5);
  margin: 0;
}

@media (max-width: 900px) {
  .hp-footer-top {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .hp-footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   WAITLIST POPUP
   ============================================================ */
body.popup-open { overflow: hidden; }

.hp-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(38, 24, 52, 0.55);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1.25rem;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.hp-popup-overlay.open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.hp-popup-card {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  background: var(--hp-pink);
  border: 2px solid var(--hp-maroon);
  border-radius: 20px;
  box-shadow: 4px 4px 4px rgba(0,0,0,0.25);
  overflow: hidden;
  transform: translateY(-12px);
  transition: transform 0.28s ease;
}
.hp-popup-card--beta { background: var(--hp-blue); }
.hp-popup-overlay.open .hp-popup-card { transform: translateY(0); }

.hp-popup-close {
  position: absolute;
  top: 0.4rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--hp-maroon);
  cursor: pointer;
  z-index: 2;
}
.hp-popup-close:hover { opacity: 0.65; }

.hp-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 3rem 0.75rem 1.75rem;
  gap: 1rem;
}

.hp-popup-body {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  gap: 0;
}
.hp-popup-divider {
  margin: 2rem 0;
}
.hp-popup-left,
.hp-popup-right {
  padding: 2.5rem;
}
.hp-popup-right {
  max-height: 70vh;
  overflow-y: auto;
}

@media (max-width: 860px) {
  .hp-popup-body { grid-template-columns: 1fr; }
  .hp-popup-divider { width: auto; height: 2px; margin: 0 2rem; }
  .hp-popup-left,
  .hp-popup-right { padding: 1.75rem; }
  .hp-popup-right { max-height: none; }
}

/* ---- Mailchimp form theming inside popup ---- */
.mc_embed_signup,
.mc_embed_signup form {
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #000;
  width: 100%;
  margin: 0;
  padding: 0;
}
.mc_embed_signup .indicates-required {
  font-size: 0.78rem;
  letter-spacing: -0.02em;
  text-align: right;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}
.mc_embed_signup .asterisk { color: var(--hp-maroon); }
.mc_embed_signup .mc-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.mc_embed_signup .mc-field-group > label,
.mc_embed_signup .mc-field-group > strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--hp-maroon);
  text-transform: uppercase;
}
.mc_embed_signup .mc-field-group input[type="text"],
.mc_embed_signup .mc-field-group input[type="email"],
.mc_embed_signup .mc-field-group select {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: rgba(255,255,255,0.6);
  color: #000;
  letter-spacing: -0.03em;
  box-sizing: border-box;
}
.mc_embed_signup .mc-field-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23640a22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  cursor: pointer;
}
.mc_embed_signup .mc-field-group input[type="text"]:focus,
.mc_embed_signup .mc-field-group input[type="email"]:focus,
.mc_embed_signup .mc-field-group select:focus {
  outline: 2px solid var(--hp-maroon);
  background-color: #fff;
}
.mc_embed_signup .gdpr-mergeRow .content__gdpr > label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--hp-maroon);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.mc_embed_signup .gdprRequired {
  border: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mc_embed_signup .checkbox.subfield {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: none;
  color: #000;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.mc_embed_signup .content__gdpr p,
.mc_embed_signup .content__gdprLegal p {
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0.5rem 0;
  color: rgba(0,0,0,0.75);
  letter-spacing: -0.01em;
}
.mc_embed_signup .content__gdprLegal a {
  color: var(--hp-maroon);
  text-decoration: underline;
}
.mc_embed_signup #mce-responses .response {
  margin: 0.75rem 0;
  font-size: 0.9rem;
}
.mc_embed_signup input[type="submit"].button {
  width: 100%;
  background: var(--hp-navy);
  border: 4px solid var(--hp-blue);
  border-radius: 100px;
  color: var(--hp-blue);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
  padding: 1rem 1.5rem;
  cursor: pointer;
  box-shadow: 4px 4px 4px rgba(0,0,0,0.25);
  transition: opacity 0.18s;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.mc_embed_signup input[type="submit"].button:hover { opacity: 0.85; }
