/* ============================================
   IMMERSION 48H — Variante landing
   Brand-aligned · Darons du Biz design tokens
   ============================================ */

:root {
  /* ── Darons du Biz palette ── */
  --oxford-navy: #0E3257;
  --navy: #143257;
  --navy-dark: #070613;
  --navy-medium: #0E3257;
  --navy-muted: #57728E;
  --sidebar-bg: #0E2440;

  --accent: #FFD7AA;        /* Sandy Brown */
  --accent-light: #FFE9D2;  /* Peachy Beige */
  --accent-tan: #D7A77F;    /* Light Tan */

  --brand-bg: #E9F2FB;      /* Page bg */
  --white: #FFFFFF;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --blue-100: #DBE7F2;
  --blue-50: #EAF2FB;

  --font-display: 'Fraunces', 'Fliper', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-card: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-navy: 0 4px 14px 0 rgba(20, 50, 87, 0.25);
  --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--brand-bg);
  color: var(--slate-700);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--oxford-navy);
  margin: 0;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* ============================================
   HEADER (sticky)
   ============================================ */
.site-header {
  background: var(--oxford-navy);
  color: white;
  border-bottom: 1px solid rgba(255, 215, 170, 0.18);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.site-header .brand {
  display: inline-flex;
  align-items: center;
  height: 56px;
}
.site-header .brand img {
  height: 52px;
  width: auto;
  display: block;
}
.site-header .nav-meta {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.site-header .nav-meta .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-header .nav-meta .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,215,170,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255,215,170,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,215,170,0); }
}
.site-header .header-cta {
  background: var(--accent);
  color: var(--oxford-navy);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border: none;
  border-radius: 100px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.site-header .header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255, 215, 170, 0.4); }
@media (max-width: 720px) {
  .site-header .nav-meta { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: all 0.15s ease;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--oxford-navy);
  box-shadow: var(--shadow-navy);
}
.btn-primary:hover { background: var(--accent-tan); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: white; }
.btn-full { width: 100%; padding: 18px 32px; font-size: 16px; }

.btn-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--oxford-navy);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex: 0 0 24px;
}

/* ============================================
   PILLS & LABELS
   ============================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.pill-accent {
  background: rgba(255,215,170,0.18);
  border: 1px solid rgba(255,215,170,0.4);
  color: var(--accent);
}
.pill-light {
  background: var(--brand-bg);
  color: var(--oxford-navy);
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--navy-muted);
}

/* ============================================
   HERO COMMON
   ============================================ */
.hero { display: none; }
body[data-hero="cinema"]    .hero[data-variant="cinema"],
body[data-hero="split"]     .hero[data-variant="split"],
body[data-hero="backstage"] .hero[data-variant="backstage"] {
  display: block;
}

/* ============================================
   HERO #1 — CINEMA
   Big sandy headline above, two large portraits below
   forming a "duo" against navy
   ============================================ */
.hero-cinema {
  background: var(--oxford-navy);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
}
.hero-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255,215,170,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(14, 36, 64, 0.6) 0%, transparent 50%);
  pointer-events: none;
}
.hero-cinema .cin-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-cinema .cin-tag {
  margin-bottom: 28px;
}
.hero-cinema h1 {
  color: white;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  max-width: 22ch;
  margin: 0 auto 24px;
  display: block;
}
.hero-cinema h1 .sandy { color: var(--accent); font-style: italic; font-weight: 600; }
.hero-cinema .cin-pitch {
  max-width: 56ch;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0 0 32px 0;
}
.hero-cinema .cin-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}
.hero-cinema .cin-cta-row .cin-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}
.hero-cinema .cin-bullets {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.hero-cinema .cin-bullets .b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: white;
}
.hero-cinema .cin-bullets .b .chk {
  color: var(--accent);
  font-size: 14px;
}

/* Duo portraits */
.hero-cinema .duo {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 56px;
}
.hero-cinema .duo .coach-card {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--sidebar-bg);
  border-radius: 16px;
  overflow: hidden;
}
.hero-cinema .duo .coach-card .photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 18%;
  /* Photos are shot on identical navy bg — blend with the section */
}
.hero-cinema .duo .coach-card .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--oxford-navy) 0%, transparent 38%);
}
.hero-cinema .duo .coach-card .label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  z-index: 2;
}
.hero-cinema .duo .coach-card .label .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.05;
  color: white;
  letter-spacing: -0.02em;
}
.hero-cinema .duo .coach-card .label .role {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-top: 6px;
}
.hero-cinema .duo .vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--oxford-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
@media (max-width: 720px) {
  .hero-cinema .duo .coach-card .label .name { font-size: 22px; }
  .hero-cinema .duo .vs { width: 52px; height: 52px; font-size: 22px; }
}

/* ============================================
   HERO #2 — SPLIT
   Two large portraits FULL-BLEED side-by-side as
   the entire hero, copy laid over center
   ============================================ */
.hero-split {
  background: var(--oxford-navy);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 720px;
}
.hero-split .panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 1;
}
.hero-split .panels .p {
  background-size: cover;
  background-position: center 25%;
  position: relative;
}
.hero-split .panels .p::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(14, 36, 64, 0.55) 0%,
    rgba(14, 36, 64, 0.78) 55%,
    rgba(14, 36, 64, 0.95) 100%);
}
.hero-split .panels .p.left::after {
  background: linear-gradient(135deg,
    rgba(14, 36, 64, 0.45) 0%,
    rgba(14, 36, 64, 0.78) 55%,
    rgba(14, 36, 64, 0.95) 100%);
}
.hero-split .panels .p.right::after {
  background: linear-gradient(-135deg,
    rgba(14, 36, 64, 0.45) 0%,
    rgba(14, 36, 64, 0.78) 55%,
    rgba(14, 36, 64, 0.95) 100%);
}
.hero-split .split-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 88px 0 80px;
}
.hero-split h1 {
  color: white;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 1.02;
  max-width: 18ch;
  margin: 28px auto 24px;
}
.hero-split h1 .sandy { color: var(--accent); font-style: italic; font-weight: 600; }
.hero-split .pitch {
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px 0;
}
.hero-split .name-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 920px;
  margin: 48px auto 0;
  padding: 0 16px;
}
.hero-split .name-row .nm {
  text-align: left;
}
.hero-split .name-row .nm.r { text-align: right; }
.hero-split .name-row .nm .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: white;
  letter-spacing: -0.01em;
}
.hero-split .name-row .nm .role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}
.hero-split .cta-row {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-split .cta-row .meta {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}

/* ============================================
   HERO #3 — BACKSTAGE
   Group photo background, large coach portrait
   "polaroids" overlaid into the layout
   ============================================ */
.hero-backstage {
  background: var(--oxford-navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-backstage .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-backstage .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(14, 36, 64, 0.92) 0%, rgba(14, 36, 64, 0.55) 55%, rgba(14, 36, 64, 0.4) 100%),
    linear-gradient(to bottom, transparent 30%, var(--oxford-navy) 100%);
}
.hero-backstage .bs-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
  min-height: 660px;
}
.hero-backstage h1 {
  color: white;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  max-width: 14ch;
  margin: 24px 0;
}
.hero-backstage h1 .sandy { color: var(--accent); font-style: italic; font-weight: 600; }
.hero-backstage .pitch {
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.hero-backstage .cta-block {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-backstage .cta-block .meta {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}

/* Polaroid stack */
.hero-backstage .polas {
  position: relative;
  width: 100%;
  height: 480px;
}
.hero-backstage .pola {
  position: absolute;
  width: 240px;
  background: white;
  padding: 12px 12px 18px;
  box-shadow: 0 24px 60px -10px rgba(0,0,0,0.5);
  border-radius: 4px;
}
.hero-backstage .pola .ph {
  aspect-ratio: 4 / 5;
  background: var(--sidebar-bg);
  background-size: cover;
  background-position: center 18%;
  border-radius: 2px;
}
.hero-backstage .pola .cap {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--oxford-navy);
  text-align: center;
  margin-top: 10px;
  letter-spacing: -0.01em;
}
.hero-backstage .pola.alex { top: 0; left: 20px; transform: rotate(-6deg); }
.hero-backstage .pola.fabien { top: 80px; left: 160px; transform: rotate(5deg); z-index: 2; }
.hero-backstage .pola .stamp {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--oxford-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  line-height: 1.05;
  transform: rotate(8deg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
  .hero-backstage .bs-inner { grid-template-columns: 1fr; gap: 24px; min-height: auto; }
  .hero-backstage .polas { height: 380px; }
  .hero-backstage .pola { width: 200px; }
  .hero-backstage .pola.alex { left: 0; }
  .hero-backstage .pola.fabien { left: 140px; }
}

/* ============================================
   FOUNDER STRIP (universal — below hero)
   ============================================ */
.founder-strip {
  background: var(--oxford-navy);
  color: white;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.founder-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-wrap: wrap;
}
.founder-strip .duo-mini {
  display: flex;
  align-items: center;
  gap: 14px;
}
.founder-strip .duo-mini .stack {
  display: flex;
}
.founder-strip .duo-mini .stack img {
  width: 44px; height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--oxford-navy);
  background: var(--sidebar-bg);
}
.founder-strip .duo-mini .stack img + img { margin-left: -10px; }
.founder-strip .duo-mini .txt {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255,255,255,0.85);
}
.founder-strip .duo-mini .txt b { color: var(--accent); }
.founder-strip .signals {
  display: flex;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
}
.founder-strip .signals span { display: inline-flex; align-items: center; gap: 6px; }
.founder-strip .signals .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

@media (max-width: 720px) {
  .founder-strip .signals { display: none; }
}

/* ============================================
   PROOF BAR
   ============================================ */
.proof {
  background: white;
  border-bottom: 1px solid var(--blue-100);
  padding: 40px 0;
}
.proof-eyebrow {
  text-align: center;
  margin-bottom: 24px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.proof-grid .stat .val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--oxford-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.proof-grid .stat .lbl {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate-600);
}
@media (max-width: 720px) {
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ============================================
   SECTION
   ============================================ */
.section { padding: 80px 0; }
.section-dark { background: var(--oxford-navy); color: white; }
.section-light { background: white; }
.section-soft { background: var(--brand-bg); }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.section-dark .eyebrow { color: var(--accent); }
.section-head h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-dark h2 { color: white; }
.section-head p {
  margin: 28px auto 0;
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate-600);
}
.section-dark .section-head p { color: rgba(255,255,255,0.75); }

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }
}

/* ============================================
   CARDS GRID (3-col / 4-col)
   ============================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) {
  .cards-3, .cards-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cards-3, .cards-2, .cards-4 { grid-template-columns: 1fr; }
}

.card {
  background: white;
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.section-dark .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px 0;
  letter-spacing: -0.015em;
}
.section-dark .card h3 { color: white; }
.card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate-600);
}
.section-dark .card p { color: rgba(255,255,255,0.78); }
.card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-bg);
  color: var(--oxford-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.section-dark .card .icon {
  background: var(--accent);
  color: var(--oxford-navy);
}

/* ============================================
   GUESTS
   ============================================ */
.guest-card {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--blue-100);
  box-shadow: var(--shadow-card);
}
.guest-card .photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center 30%;
  background-color: var(--sidebar-bg);
  position: relative;
}
.guest-card .photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,36,64,0.7) 0%, transparent 45%);
}
.guest-card .photo .badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  background: var(--accent);
  color: var(--oxford-navy);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.guest-card .body { padding: 20px; }
.guest-card .body .slot { display: none; }
.guest-card .body .slot-x {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-muted);
  margin-bottom: 6px;
}
.guest-card .body .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--oxford-navy);
  margin-bottom: 2px;
}
.guest-card .body .niche {
  font-size: 13px;
  color: var(--slate-600);
}

/* Sub-headers in guests section */
.guests-subhead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--oxford-navy);
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.01em;
}
.guests-subhead .bonus-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--oxford-navy);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* Bonus card variant — slightly muted */
.guest-bonus .photo { background-color: var(--brand-bg); }
.badge-bonus {
  background: var(--oxford-navy) !important;
  color: var(--accent) !important;
}

/* No-image card: editorial fallback with initials */
.guest-noimg .photo.photo-empty {
  background-color: var(--oxford-navy);
  background-image: linear-gradient(135deg, var(--oxford-navy) 0%, var(--sidebar-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guest-noimg .photo.photo-empty::after { display: none; }
.guest-noimg .photo.photo-empty .empty-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  color: rgba(255, 215, 170, 0.45);
  letter-spacing: -0.04em;
  line-height: 1;
}
.guest-noimg .photo.photo-empty .badge {
  z-index: 3;
}

/* ============================================
   REVIEWS — unified card design
   ============================================ */
.reviews-section .reviews-link {
  color: var(--oxford-navy);
  border-bottom: 1.5px solid var(--accent);
  font-weight: 700;
}
.reviews-section .reviews-link:hover { color: var(--accent-tan); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1080px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
  background: white;
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  height: 100%;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -10px rgba(14, 36, 64, 0.22);
}

/* Header — avatar + identity */
.rv-head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--blue-100);
}
.rv-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  border: 2px solid var(--accent);
  background: var(--brand-bg);
  display: block;
}
.rv-id {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rv-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.15;
  color: var(--oxford-navy);
  letter-spacing: -0.01em;
}
.rv-ctx {
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--navy-muted);
  font-weight: 500;
}
.rv-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
  margin-top: 4px;
}

/* Quote — uniform body size */
.rv-quote {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate-700);
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
  letter-spacing: -0.003em;
  flex: 1;
}
.rv-quote::before {
  content: "“";
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  line-height: 0;
  vertical-align: -18px;
  margin-right: 6px;
}
.rv-quote::after {
  content: "”";
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  line-height: 0;
  vertical-align: -18px;
  margin-left: 4px;
}

/* Avis Vérifiés badge (unchanged) */
.av-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 14px;
  background: white;
  border: 1px solid var(--blue-100);
  border-radius: 100px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--oxford-navy);
  transition: transform 0.15s, box-shadow 0.15s;
}
.av-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(14, 36, 64, 0.18);
}
.av-badge .av-mark {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}
.av-badge .av-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.av-badge .av-body {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.av-badge .av-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--oxford-navy);
  letter-spacing: -0.01em;
}
.av-badge .av-sub {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy-muted);
  margin-top: 2px;
}
.av-badge .av-divider {
  width: 1px;
  height: 32px;
  background: var(--blue-100);
}
.av-badge .av-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.av-badge .av-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}
.av-badge .av-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--oxford-navy);
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.av-badge .av-score .av-of {
  font-size: 13px;
  color: var(--navy-muted);
  font-weight: 600;
  margin-left: 1px;
}

@media (max-width: 480px) {
  .av-badge { padding: 10px 16px 10px 10px; gap: 10px; }
  .av-badge .av-sub { display: none; }
}

.reviews-fineprint {
  text-align: center;
  margin: 40px auto 0;
  max-width: 60ch;
  font-size: 12px;
  color: var(--navy-muted);
  line-height: 1.5;
}

/* ============================================
   METHOD — flow / vie
   ============================================ */
.method-section {
  background: var(--oxford-navy);
  color: white;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.method-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 800px 400px at 80% 0%, rgba(255,215,170,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 600px 300px at 0% 100%, rgba(255,215,170,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.method-container { position: relative; z-index: 1; }

.method-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.method-head .eyebrow {
  color: var(--accent);
  display: inline-block;
  margin-bottom: 16px;
}
.method-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: white;
  margin: 0 0 16px 0;
}
.method-head h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}
.method-head p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

/* Flow */
.method-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 1080px) {
  .method-flow { grid-template-columns: 1fr 1fr; gap: 16px; }
  .method-flow .mm-connector { display: none; }
}
@media (max-width: 600px) {
  .method-flow { grid-template-columns: 1fr; }
}

.mm-pillar {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.mm-pillar::before {
  content: attr(data-step);
  position: absolute;
  bottom: -32px;
  right: -12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 180px;
  line-height: 1;
  color: rgba(255, 215, 170, 0.06);
  letter-spacing: -0.05em;
  pointer-events: none;
}
.mm-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(255,215,170,0.4);
  box-shadow: 0 20px 40px -20px rgba(255, 215, 170, 0.25);
}
.mm-pillar .mm-num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.mm-pillar .mm-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,215,170,0.12);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,215,170,0.25);
}
.mm-pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
  margin: 4px 0 6px 0;
}
.mm-pillar h3 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}
.mm-pillar p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
  flex: 1;
}
.mm-pillar .mm-takeaway {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.15);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.005em;
}

/* Connector arrows between pillars (desktop only) */
.mm-connector {
  align-self: center;
  color: rgba(255, 215, 170, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Result strip */
.method-result {
  margin-top: 64px;
  background: var(--accent);
  color: var(--oxford-navy);
  border-radius: 18px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
}
.method-result .mr-pulse {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--oxford-navy);
  position: relative;
}
.method-result .mr-pulse::before, .method-result .mr-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--oxford-navy);
  animation: mr-pulse 2.4s ease-out infinite;
}
.method-result .mr-pulse::after { animation-delay: 1.2s; }
@keyframes mr-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.method-result .mr-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxford-navy);
  opacity: 0.7;
  margin-bottom: 8px;
}
.method-result p {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--oxford-navy);
}
.method-result p b { font-style: normal; font-weight: 700; }
@media (max-width: 720px) {
  .method-result { grid-template-columns: 1fr; padding: 24px; gap: 16px; }
}

/* ============================================
   PRESS — magazine wall, visual
   ============================================ */
.press-section {
  background: var(--oxford-navy);
  color: white;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.press-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 600px at 90% 20%, rgba(255,215,170,0.10) 0%, transparent 60%),
    radial-gradient(circle 500px at 5% 80%, rgba(255,215,170,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.press-section .container { position: relative; }

.press-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.press-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,215,170,0.12);
  border: 1px solid rgba(255,215,170,0.28);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 24px;
}
.press-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 16px 0;
  color: white;
}
.press-head h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}
.press-head p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 auto;
  max-width: 60ch;
}

/* Magazine wall layout */
.press-wall {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .press-wall { grid-template-columns: 1fr; gap: 28px; }
}

/* Featured: big magazine cover with stamp */
.pw-feature {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pw-feature-img {
  aspect-ratio: 9 / 13;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  border: 8px solid white;
  box-shadow: 0 32px 80px -28px rgba(0,0,0,0.6), 0 6px 20px -8px rgba(0,0,0,0.3);
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
}
.pw-feature:hover .pw-feature-img { transform: rotate(0deg) scale(1.01); }

.pw-feature-stamp {
  position: absolute;
  top: 22px;
  left: -14px;
  z-index: 5;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--oxford-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-12deg);
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.55), inset 0 0 0 3px rgba(14, 50, 87, 0.15);
  font-family: var(--font-display);
  line-height: 1;
}
.pw-feature-stamp .pw-feature-stamp-line {
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.pw-feature-stamp .pw-feature-stamp-big {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.pw-feature figcaption {
  text-align: center;
  padding: 0 12px;
}
.pw-feature .pw-feature-media {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.pw-feature figcaption p {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(255,255,255,0.88);
  margin: 0;
  letter-spacing: -0.01em;
}

/* 2x2 secondary grid */
.pw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .pw-grid { grid-template-columns: 1fr; }
}

.pw-card {
  background: white;
  color: var(--oxford-navy);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 36px -16px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.55);
}
.pw-card .pw-card-img {
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
  background-color: var(--sidebar-bg);
  position: relative;
}
.pw-card .pw-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 36, 64, 0.25) 100%);
}
.pw-card .pw-card-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pw-card .pw-media {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-tan);
}
.pw-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--oxford-navy);
  flex: 1;
}
.pw-card .pw-date {
  font-size: 11px;
  color: var(--navy-muted);
  font-weight: 600;
}

/* Press ticker (marquee) */
.press-ticker {
  margin-top: 56px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.press-ticker::before,
.press-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.press-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--oxford-navy), transparent);
}
.press-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--oxford-navy), transparent);
}
.press-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: ptScroll 36s linear infinite;
  will-change: transform;
}
.press-ticker-track .pt-item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.01em;
}
.press-ticker-track .pt-sep {
  color: var(--accent);
  font-size: 16px;
}
@keyframes ptScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   MANIFESTO — bold editorial
   ============================================ */
.manifesto-section {
  background: #f4ede2;
  color: var(--oxford-navy);
  position: relative;
  overflow: hidden;
}
.manifesto-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
}
.manifesto-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.1);
}
.manifesto-container { position: relative; z-index: 1; }

/* Head: stamp + title side by side */
.manifesto-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.manifesto-stamp {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: #b73a3a;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  transform: rotate(-8deg);
  box-shadow: 0 10px 30px -10px rgba(183, 58, 58, 0.6), inset 0 0 0 4px rgba(255,255,255,0.18);
  position: relative;
  flex: 0 0 168px;
  gap: 4px;
}
.manifesto-stamp::before, .manifesto-stamp::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: rgba(255,255,255,0.35);
}
.manifesto-stamp::before { top: 24px; }
.manifesto-stamp::after { bottom: 24px; }
.manifesto-stamp .stamp-line {
  display: block;
  font-style: italic;
}
.manifesto-stamp .stamp-line:nth-child(2) {
  font-size: 22px;
  letter-spacing: 0.18em;
  font-style: normal;
}

.manifesto-head-text .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #b73a3a;
}
.manifesto-head-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 16px 0;
  color: var(--oxford-navy);
}
.manifesto-head-text h2 em {
  font-style: italic;
  color: #b73a3a;
  font-weight: 600;
}
.manifesto-head-text p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--slate-700);
  max-width: 60ch;
  margin: 0;
}

@media (max-width: 720px) {
  .manifesto-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .manifesto-stamp { width: 132px; height: 132px; font-size: 22px; flex: 0 0 132px; }
}

/* 3 manifest cards */
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mf-card {
  background: white;
  border: 1px solid rgba(14, 36, 64, 0.08);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 12px 32px -16px rgba(14, 36, 64, 0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mf-card:nth-child(1) { transform: rotate(-1deg); }
.mf-card:nth-child(2) { transform: rotate(0.5deg); margin-top: 16px; }
.mf-card:nth-child(3) { transform: rotate(-0.5deg); }
.mf-card .mf-num {
  position: absolute;
  top: -16px;
  right: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 0 rgba(0,0,0,0.06);
}
.mf-card .mf-stop {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #b73a3a;
  color: white;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mf-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--oxford-navy);
}
.mf-card h3 em {
  font-style: italic;
  color: #b73a3a;
  font-weight: 600;
  background: linear-gradient(180deg, transparent 65%, rgba(183, 58, 58, 0.18) 65%);
  padding: 0 2px;
}
.mf-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate-700);
  margin: 0;
}

@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 20px; }
  .mf-card, .mf-card:nth-child(1), .mf-card:nth-child(2), .mf-card:nth-child(3) {
    transform: none;
    margin-top: 0;
  }
}

/* Counter-statement */
.manifesto-counter {
  margin-top: 64px;
  background: var(--oxford-navy);
  color: white;
  border-radius: 20px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: 0 20px 48px -24px rgba(14, 36, 64, 0.45);
}
.manifesto-counter .mc-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--oxford-navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.manifesto-counter .mc-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.manifesto-counter p {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
  color: white;
}
@media (max-width: 720px) {
  .manifesto-counter { grid-template-columns: 1fr; padding: 28px 24px; gap: 16px; margin-top: 40px; }
}

/* Avis Vérifiés badge */
.av-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 14px;
  background: white;
  border: 1px solid var(--blue-100);
  border-radius: 100px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--oxford-navy);
  transition: transform 0.15s, box-shadow 0.15s;
}
.av-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(14, 36, 64, 0.18);
}
.av-badge .av-mark {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}
.av-badge .av-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.av-badge .av-body {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.av-badge .av-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--oxford-navy);
  letter-spacing: -0.01em;
}
.av-badge .av-sub {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy-muted);
  margin-top: 2px;
}
.av-badge .av-divider {
  width: 1px;
  height: 32px;
  background: var(--blue-100);
}
.av-badge .av-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.av-badge .av-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}
.av-badge .av-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--oxford-navy);
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.av-badge .av-score .av-of {
  font-size: 13px;
  color: var(--navy-muted);
  font-weight: 600;
  margin-left: 1px;
}

@media (max-width: 480px) {
  .av-badge { padding: 10px 16px 10px 10px; gap: 10px; }
  .av-badge .av-sub { display: none; }
}

/* ============================================
   PROGRAMME — timeline, with vie
   ============================================ */
.programme-section {
  background: var(--brand-bg);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.programme-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 10% 0%, rgba(255,215,170,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 90% 100%, rgba(255,215,170,0.16) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.programme-section .container { position: relative; z-index: 1; }
.programme-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.programme-head .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--navy-muted);
}
.programme-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--oxford-navy);
  margin: 0 0 16px 0;
}
.programme-head h2 em {
  font-style: italic;
  color: #b73a3a;
  font-weight: 600;
}
.programme-head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--slate-700);
  margin: 0;
}

/* Tabs */
.programme-tabs {
  display: inline-flex;
  background: white;
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  padding: 6px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-card);
  gap: 4px;
}
.programme-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.programme-section .container > .programme-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.programme-section .programme-tabs {
  display: inline-flex;
  background: white;
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  padding: 6px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-card);
  gap: 4px;
}
.programme-section .programme-tabs-wrap {
  display: flex;
  justify-content: center;
}
.prog-tab {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--slate-600);
  padding: 14px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  transition: background 0.15s, color 0.15s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prog-tab:hover { background: var(--brand-bg); }
.prog-tab.active {
  background: var(--oxford-navy);
  color: white;
}
.prog-tab-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.prog-tab.active .prog-tab-label { color: white; }
.prog-tab-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-muted);
}
.prog-tab.active .prog-tab-date { color: var(--accent); }

/* Days container */
.programme-days { position: relative; }
.prog-day { display: none; }
.prog-day.active { display: block; animation: fadeUp 0.35s ease-out; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Vertical timeline */
.prog-timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 920px;
  position: relative;
}
.prog-timeline::before {
  content: "";
  position: absolute;
  left: 96px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent) 100%);
  opacity: 0.4;
}
@media (max-width: 720px) {
  .prog-timeline::before { left: 30px; }
}

.pt-slot {
  display: grid;
  grid-template-columns: 88px 16px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
  position: relative;
}
@media (max-width: 720px) {
  .pt-slot {
    grid-template-columns: 22px 16px 1fr;
    gap: 12px;
  }
}

.pt-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 26px;
  color: var(--oxford-navy);
  letter-spacing: -0.01em;
  text-align: right;
  padding-top: 14px;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 720px) {
  .pt-time {
    font-size: 14px;
    text-align: left;
    padding-top: 18px;
    writing-mode: horizontal-tb;
  }
}

.pt-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--accent);
  margin-top: 18px;
  z-index: 1;
}
.pt-type-coach .pt-dot { background: var(--oxford-navy); box-shadow: 0 0 0 2px var(--oxford-navy); }
.pt-type-case .pt-dot { background: #b73a3a; box-shadow: 0 0 0 2px #b73a3a; }
.pt-type-break .pt-dot, .pt-type-end .pt-dot {
  background: white;
  box-shadow: 0 0 0 2px rgba(14,36,64,0.25);
}

.pt-card {
  background: white;
  border: 1px solid var(--blue-100);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  position: relative;
}
.pt-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 12px 24px -10px rgba(14,36,64,0.2);
}
.pt-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pt-chip-conf {
  background: rgba(255, 215, 170, 0.25);
  color: var(--oxford-navy);
}
.pt-chip-case {
  background: rgba(183, 58, 58, 0.12);
  color: #b73a3a;
}
.pt-chip-coach {
  background: var(--oxford-navy);
  color: var(--accent);
}
.pt-chip-break {
  background: var(--brand-bg);
  color: var(--navy-muted);
}
.pt-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--oxford-navy);
  margin: 0 0 4px 0;
}
.pt-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate-600);
  margin: 0;
}

/* Break / end card variants */
.pt-card-break {
  background: var(--brand-bg);
  border-style: dashed;
  border-color: rgba(14,36,64,0.15);
  box-shadow: none;
}
.pt-card-break:hover {
  transform: none;
  border-color: rgba(14,36,64,0.15);
  box-shadow: none;
}
.pt-card-end {
  background: transparent;
  border: 1px dashed rgba(14,36,64,0.2);
  box-shadow: none;
}
.pt-card-end:hover {
  transform: none;
  border-color: rgba(14,36,64,0.2);
  box-shadow: none;
}
.pt-card-end h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-muted);
  font-style: italic;
  margin: 0;
}

/* Legend */
.prog-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-muted);
  flex-wrap: wrap;
}
.prog-legend span { display: inline-flex; align-items: center; gap: 8px; }
.prog-legend .lg {
  width: 12px; height: 12px; border-radius: 50%; display: inline-block;
}
.prog-legend .lg-conf { background: var(--accent); }
.prog-legend .lg-case { background: #b73a3a; }
.prog-legend .lg-coach { background: var(--oxford-navy); }

/* Legacy .prog-card kept (only used in older sections if any) */
.prog-card {
  background: white;
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

/* ============================================
   FIT (Oui/Non)
   ============================================ */
.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fit .col {
  background: white;
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.fit .col.yes { border-color: var(--accent); }
.fit .col h3 {
  font-size: 28px;
  margin-bottom: 24px;
}
.fit .col.yes h3 { color: var(--oxford-navy); }
.fit .col.no h3 { color: var(--navy-muted); }
.fit .col ul { list-style: none; padding: 0; margin: 0; }
.fit .col li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate-700);
  border-bottom: 1px dashed var(--blue-100);
}
.fit .col li:last-child { border-bottom: none; }
.fit .col.yes li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  background: var(--accent-light);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.fit .col.no li::before {
  content: "✕";
  color: var(--navy-muted);
  font-weight: 800;
  font-size: 12px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 720px) { .fit { grid-template-columns: 1fr; } }

/* ============================================
   SIGNUP
   ============================================ */
.signup {
  background: var(--accent);
  padding: 80px 0;
}
.signup .signup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.signup .left h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  margin-bottom: 24px;
  color: var(--oxford-navy);
}
.signup .left .label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--oxford-navy);
  opacity: 0.7;
  margin-bottom: 12px;
}
.signup .left ul { list-style: none; padding: 0; margin: 0; }
.signup .left li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(14,50,87,0.15);
  font-size: 14px;
  font-weight: 700;
  color: var(--oxford-navy);
}
.signup .left li::before {
  content: "→";
  color: var(--oxford-navy);
  font-weight: 800;
}
.signup form {
  background: var(--oxford-navy);
  color: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.signup form .step {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.signup form h3 {
  color: white;
  font-size: 26px;
  margin: 0 0 8px 0;
}
.signup form .field { display: flex; flex-direction: column; gap: 6px; }
.signup form label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.signup form input[type="text"],
.signup form input[type="email"],
.signup form input[type="tel"] {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.25);
  color: white;
  padding: 8px 0;
  font: inherit;
  font-size: 16px;
  outline: none;
}
.signup form input::placeholder { color: rgba(255,255,255,0.4); }
.signup form input:focus { border-bottom-color: var(--accent); }
.signup form .consent {
  display: flex;
  gap: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}
.signup form button {
  margin-top: 12px;
  padding: 18px;
  background: var(--accent);
  color: var(--oxford-navy);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
}
@media (max-width: 900px) {
  .signup .signup-inner { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--sidebar-bg);
  color: rgba(255,255,255,0.65);
  padding: 32px 0;
  font-size: 13px;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.footer .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 18px;
}
.footer .footer-logo {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.95;
}
.footer .footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.footer .footer-legal a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,215,170,0.25);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.footer .footer-legal a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.footer .footer-legal span {
  color: rgba(255,255,255,0.3);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: white;
  padding: 96px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}
.faq-head { position: sticky; top: 100px; }
@media (max-width: 900px) { .faq-head { position: static; } }
.faq-head .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--navy-muted);
}
.faq-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--oxford-navy);
  margin: 0 0 16px 0;
}
.faq-head h2 em {
  font-style: italic;
  color: var(--accent-tan);
  font-weight: 600;
}
.faq-head > p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--slate-700);
  margin: 0 0 28px 0;
  max-width: 38ch;
}
.faq-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--brand-bg);
  border-radius: 16px;
}
.faq-trust-duo { display: flex; }
.faq-trust-duo img {
  width: 40px; height: 40px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--brand-bg);
  background: var(--sidebar-bg);
}
.faq-trust-duo img + img { margin-left: -10px; }
.faq-trust-txt {
  font-size: 13px;
  line-height: 1.4;
  color: var(--slate-700);
}
.faq-trust-txt b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--oxford-navy);
  font-size: 15px;
  letter-spacing: -0.01em;
}
.faq-trust-txt span { font-size: 12px; color: var(--navy-muted); }

/* Accordion items */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 12px 30px -16px rgba(14, 36, 64, 0.18);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: background 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255, 215, 170, 0.08); }
.faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--oxford-navy);
  flex: 1;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-bg);
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s, transform 0.3s;
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--oxford-navy);
  transition: transform 0.25s ease;
}
.faq-toggle::before { /* horizontal bar */
  width: 12px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq-toggle::after { /* vertical bar */
  width: 2px; height: 12px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-toggle {
  background: var(--accent);
}
.faq-item[open] .faq-toggle::before { background: var(--oxford-navy); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a {
  padding: 0 24px 24px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-700);
}

/* ============================================
   SIGNUP V2 — Ticket-style
   ============================================ */
.signup-v2 {
  position: relative;
  padding: 96px 0;
  background: var(--brand-bg);
  overflow: hidden;
}
.signup-v2-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 90% 100%, rgba(255,215,170,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 0%, rgba(255,215,170,0.16) 0%, transparent 60%);
  pointer-events: none;
}

.signup-v2-ticket {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 14px 1fr;
  background: var(--accent);
  border-radius: 24px;
  box-shadow: 0 32px 80px -24px rgba(14, 36, 64, 0.35);
  overflow: visible;
  min-height: 600px;
}
@media (max-width: 920px) {
  .signup-v2-ticket {
    grid-template-columns: 1fr;
    grid-template-rows: auto 14px auto;
  }
}

/* Left stub (event details) */
.sv-stub {
  padding: 48px 56px;
  border-radius: 24px 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  background: var(--accent);
  color: var(--oxford-navy);
}
@media (max-width: 920px) {
  .sv-stub { border-radius: 24px 24px 0 0; padding: 36px 32px; }
}

.sv-stub-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1.5px dashed rgba(14, 50, 87, 0.25);
}
.sv-duo { display: flex; }
.sv-duo img {
  width: 44px; height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--accent);
  background: var(--oxford-navy);
}
.sv-duo img + img { margin-left: -10px; }
.sv-stub-meta { display: flex; flex-direction: column; gap: 4px; }
.sv-stub-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxford-navy);
  opacity: 0.7;
}
.sv-stub-host {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--oxford-navy);
}

/* Date display */
.sv-date {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 16px;
  align-items: center;
}
.sv-date-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.sv-date-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 96px;
  line-height: 0.9;
  color: var(--oxford-navy);
  letter-spacing: -0.04em;
}
.sv-date-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxford-navy);
  opacity: 0.7;
  margin-top: 6px;
}
.sv-date-sep {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 48px;
  color: var(--oxford-navy);
  opacity: 0.35;
}
.sv-date-month {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 22px;
  color: var(--oxford-navy);
  align-self: end;
  padding-bottom: 12px;
  line-height: 1.1;
}
.sv-date-month b {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
}

@media (max-width: 600px) {
  .sv-date-num { font-size: 72px; }
}

/* Headline */
.sv-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--oxford-navy);
  margin: 0;
}
.sv-headline em {
  font-style: italic;
  color: var(--oxford-navy);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 50, 87, 0.12) 60%);
  padding: 0 4px;
}

/* Bullets */
.sv-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sv-bullets li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--oxford-navy);
  font-weight: 600;
}
.sv-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--oxford-navy);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Stub foot — price */
.sv-stub-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1.5px dashed rgba(14, 50, 87, 0.25);
  gap: 16px;
}
.sv-price {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.sv-price-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxford-navy);
  opacity: 0.65;
}
.sv-price-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 56px;
  color: var(--oxford-navy);
  letter-spacing: -0.03em;
  margin-top: 4px;
}
.sv-price-note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oxford-navy);
  opacity: 0.7;
  text-align: right;
  line-height: 1.5;
}
.sv-price-note b {
  display: block;
  letter-spacing: 0.16em;
  opacity: 1;
}

/* Perforation — dashed line with notches */
.sv-perforation {
  position: relative;
  background-image: linear-gradient(180deg,
    var(--oxford-navy) 0%, var(--oxford-navy) 50%, transparent 50%);
  background-size: 2px 14px;
  background-repeat: repeat-y;
  background-position: center;
  background-color: transparent;
}
.sv-perforation::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: none;
  background-color: var(--brand-bg);
}
.sv-perf-notch {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--brand-bg);
  border-radius: 50%;
  z-index: 2;
}
.sv-perf-top { top: -14px; }
.sv-perf-bottom { bottom: -14px; }
@media (max-width: 920px) {
  .sv-perforation {
    background-image: linear-gradient(90deg,
      var(--oxford-navy) 0%, var(--oxford-navy) 50%, transparent 50%);
    background-size: 14px 2px;
    background-repeat: repeat-x;
  }
  .sv-perf-notch {
    left: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .sv-perf-top { left: -14px; top: 50%; }
  .sv-perf-bottom { right: -14px; bottom: auto; top: 50%; left: auto; }
}

/* Hide the empty wrapper without disrupting dashes */
.sv-perforation { background: none; }
.sv-perforation::before { display: none; }
.sv-perforation {
  background-image:
    linear-gradient(var(--brand-bg) 0%, var(--brand-bg) 100%),
    radial-gradient(circle at center, transparent 50%, var(--oxford-navy) 50%);
  background-size: calc(100% - 2px) 100%, 2px 14px;
  background-repeat: no-repeat, repeat-y;
  background-position: center, center;
}
@media (max-width: 920px) {
  .sv-perforation {
    background-image:
      linear-gradient(var(--brand-bg) 0%, var(--brand-bg) 100%),
      radial-gradient(circle at center, transparent 50%, var(--oxford-navy) 50%);
    background-size: 100% calc(100% - 2px), 14px 2px;
    background-repeat: no-repeat, repeat-x;
    background-position: center, center;
  }
}

/* Right stub: form */
.sv-form {
  padding: 48px 48px;
  background: var(--oxford-navy);
  color: white;
  border-radius: 0 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 920px) {
  .sv-form { border-radius: 0 0 24px 24px; padding: 36px 32px; }
}
.sv-form-head .sv-form-step {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.sv-form-head h3 {
  margin: 10px 0 6px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
}
.sv-form-head h3 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}
.sv-form-head p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.sv-form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sv-form-fields .field { display: flex; flex-direction: column; gap: 6px; }
.sv-form-fields label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.sv-form-fields input[type="text"],
.sv-form-fields input[type="email"],
.sv-form-fields input[type="tel"] {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  color: white;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.sv-form-fields input::placeholder { color: rgba(255,255,255,0.35); }
.sv-form-fields input:focus {
  border-color: var(--accent);
  background: rgba(255,215,170,0.08);
  box-shadow: 0 0 0 3px rgba(255,215,170,0.18);
}
.sv-form-fields .consent {
  display: flex;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.sv-submit {
  background: var(--accent);
  color: var(--oxford-navy);
  border: none;
  border-radius: 100px;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  box-shadow: 0 12px 30px -10px rgba(255, 215, 170, 0.45);
}
.sv-submit:hover {
  background: var(--accent-tan);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(255, 215, 170, 0.55);
}
.sv-submit .btn-arrow {
  background: var(--oxford-navy);
  color: var(--accent);
}
.sv-fineprint {
  font-size: 11px;
  text-align: center;
  color: rgba(255,255,255,0.45);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================
   SIGNUP MODAL (popup)
   ============================================ */
.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.signup-modal.open { display: flex; animation: modal-fade 0.2s ease-out; }
.signup-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 6, 19, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.signup-modal-card {
  position: relative;
  background: white;
  border-radius: 24px;
  width: 100%;
  max-width: 880px;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  animation: modal-pop 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.signup-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--oxford-navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.signup-modal-close:hover { background: var(--brand-bg); }

.signup-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  width: 100%;
  overflow-y: auto;
}

.signup-modal-aside {
  background: var(--oxford-navy);
  color: white;
  padding: 36px 32px;
}
.signup-modal-mini-duo {
  display: flex;
  margin-bottom: 20px;
}
.signup-modal-mini-duo img {
  width: 48px; height: 48px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid var(--oxford-navy);
  background: var(--sidebar-bg);
}
.signup-modal-mini-duo img + img { margin-left: -12px; }
.signup-modal-aside .step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.signup-modal-aside h3 {
  color: white;
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 16px 0;
  letter-spacing: -0.015em;
}
.signup-modal-aside .aside-pitch {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin: 0 0 24px 0;
}
.signup-modal-aside .aside-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.signup-modal-aside .aside-bullets li {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.signup-modal-aside .aside-bullets li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  flex: 0 0 auto;
}

.signup-modal-form {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
}
.signup-modal-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.signup-modal-form label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy-muted);
}
.signup-modal-form input[type="text"],
.signup-modal-form input[type="email"],
.signup-modal-form input[type="tel"] {
  background: white;
  border: 1.5px solid var(--blue-100);
  border-radius: 10px;
  color: var(--oxford-navy);
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.signup-modal-form input::placeholder { color: var(--navy-muted); opacity: 0.5; }
.signup-modal-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,215,170,0.35);
}
.signup-modal-form .consent {
  display: flex;
  gap: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--slate-600);
  margin-top: 4px;
}
.signup-modal-submit {
  margin-top: 12px;
  padding: 16px 20px;
  background: var(--accent);
  color: var(--oxford-navy);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.15s, transform 0.15s;
}
.signup-modal-submit:hover { background: var(--accent-tan); transform: translateY(-1px); }
.signup-modal-fineprint {
  margin: 4px 0 0 0;
  font-size: 11px;
  color: var(--navy-muted);
  text-align: center;
}

@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modal-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 720px) {
  .signup-modal { padding: 0; }
  .signup-modal-card { border-radius: 0; max-height: 100vh; height: 100%; }
  .signup-modal-grid { grid-template-columns: 1fr; }
  .signup-modal-aside { padding: 28px 24px; }
  .signup-modal-aside h3 { font-size: 24px; }
  .signup-modal-form { padding: 24px; }
}
