  @font-face {
    font-family: 'Tokyo Dreams';
    src: url('assets/fonts/TokyoDreamsPlain-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  :root {
    /* Variation 1 — Blanc & Rose poudré */
    --bg: #ffffff;
    --bg-deep: #f7e8e4;
    --paper: #ffffff;
    --ink: #2a1d1a;
    --ink-soft: #6b4e4a;
    --ink-faded: #a8908c;
    --accent: #8a5748;
    --accent-deep: #6a3e33;
    --line: #e2c8c0;
    --line-soft: #eddcd6;
    --rose: #d8a69a;

    --serif-display: 'Italiana', 'Cormorant Upright', serif;
    --serif-body: 'Cormorant Garamond', 'Cormorant Upright', Georgia, serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;
  }

  html[data-variation="2"] {
    /* Variation 2 — Rose profond / soir */
    --bg: #f7e8e4;
    --bg-deep: #f0d8d1;
    --paper: #fffaf8;
    --ink: #3a2420;
    --ink-soft: #7a5650;
    --ink-faded: #b49891;
    --accent: #a06050;
    --accent-deep: #7a4438;
    --line: #d8b8af;
    --line-soft: #e8cfc8;
    --rose: #c88878;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html,
  body {
    scroll-behavior: smooth;
  }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--serif-body);
    font-size: 18px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    transition: background 0.6s ease, color 0.6s ease;
    min-height: 100vh;
  }

  /* Parchment texture */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  html[data-variation="2"] body::before {
    background-image:
      radial-gradient(circle at 20% 10%, rgba(212, 163, 98, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 90%, rgba(212, 163, 98, 0.04) 0%, transparent 50%);
  }

  main {
    position: relative;
    z-index: 1;
  }

  /* ——— Type scales ——— */
  .display {
    font-family: var(--serif-display);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 0.95;
  }

  .eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 400;
  }

  .script {
    font-family: var(--serif-body);
    font-style: italic;
    font-weight: 300;
  }

  /* ——— HERO ——— */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(20px + 13.333vw) 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .hero > *:not(.hero-angle) {
    position: relative;
    z-index: 1;
  }

  .hero-angle {
    position: absolute;
    width: 40vw;
    height: 40vw;
    max-width: 640px;
    max-height: 640px;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    mix-blend-mode: multiply;
    z-index: 0;
  }

  .hero-angle--tr {
    top: 20px;
    right: 20px;
    background-image: url('assets/angle-top-right.png');
    background-position: top right;
  }

  .hero-angle--bl {
    bottom: 20px;
    left: 20px;
    background-image: url('assets/angle-bottom-left.png');
    background-position: bottom left;
  }

  .hero-angle--tl {
    top: 20px;
    left: 20px;
    background-image: url('assets/angle-top-left.png');
    background-position: top left;
  }

  .hero-angle--br {
    bottom: 20px;
    right: 20px;
    background-image: url('assets/angle-bottom-right.png');
    background-position: bottom right;
  }

  @media (min-width: 1600px) {
    .hero {
      padding-top: calc(20px + 10vw);
      padding-bottom: calc(20px + 10vw);
    }

    .hero-angle {
      width: 30vw;
      height: 30vw;
    }
  }

  @media (max-width: 600px) {
    .hero {
      justify-content: flex-start;
    }

    .hero-angle--tl,
    .hero-angle--br {
      display: none;
    }

    .hero-angle {
      position: static;
      width: 90vw;
      height: 90vw;
      max-width: none;
      max-height: none;
      margin: 0 auto;
      flex-shrink: 0;
    }

    .hero-angle--tr {
      margin-bottom: -50vw;
    }

    .hero-angle--bl {
      margin-top: -50vw;
    }
  }

  .hero-eyebrow {
    margin-bottom: 40px;
  }

  .hero-eyebrow .dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 14px;
    vertical-align: middle;
  }

  .monogram {
    font-family: 'Tokyo Dreams', var(--serif-display);
    font-size: clamp(80px, 16vw, 200px);
    line-height: 1;
    color: var(--ink);
    margin-bottom: 30px;
  }

  .monogram .amp {
    font-style: italic;
    font-family: var(--serif-body);
    font-weight: 300;
    color: var(--accent);
    margin: 0 0.1em;
    font-size: 0.8em;
    vertical-align: 0.08em;
  }

  .hero-names {
    font-family: 'Tokyo Dreams', var(--serif-display);
    font-size: clamp(56px, 9vw, 116px);
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    font-weight: 400;
  }

  .hero-date {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
  }

  .hero-venue {
    font-family: var(--serif-body);
    font-style: italic;
    font-size: 20px;
    color: var(--ink-soft);
    font-weight: 300;
  }

  .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 50px;
    gap: 16px;
  }

  .divider-line {
    width: 60px;
    height: 1px;
    background: var(--line);
  }

  .divider-ornament {
    font-family: var(--serif-display);
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 0.3em;
  }

  /* ——— Countdown ——— */
  .countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line-soft);
    border: 1px solid var(--line-soft);
    max-width: 560px;
    margin: 0 auto;
  }

  .countdown-cell {
    background: var(--paper);
    padding: 22px 10px;
    text-align: center;
  }

  .countdown-num {
    font-family: var(--serif-display);
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1;
    color: var(--ink);
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
  }

  .countdown-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  /* ——— Sections ——— */
  section {
    padding: 120px 40px;
    position: relative;
  }

  .container {
    max-width: 1080px;
    margin: 0 auto;
  }

  .container-narrow {
    max-width: 720px;
    margin: 0 auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .section-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
  }

  .section-title {
    font-family: var(--serif-display);
    font-size: clamp(38px, 5.5vw, 64px);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
  }

  .section-sub {
    font-family: var(--serif-body);
    font-style: italic;
    font-size: 20px;
    color: var(--ink-soft);
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.5;
  }

  /* ——— Galerie ——— */
  .gallery-section {
    height: 100vh;
    overflow: hidden;
    position: relative;
    padding: 0;
    margin: 0;
  }

  .gallery-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 110vw;
    margin-left: -5vw;
    height: 100%;
  }

  .gallery-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    will-change: transform;
    min-height: calc(100% + 280px);
    margin-top: -140px;
  }

  .gallery-col img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: saturate(0.92);
    border: 1px solid var(--line-soft);
  }

  @media (max-width: 768px) {
    .gallery-section {
      height: 100svh;
    }
    .gallery-cols {
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }
    .gallery-col {
      gap: 8px;
    }
    .gallery-col:nth-child(n+3) {
      display: none;
    }
  }

  /* ——— Programme ——— */
  .programme-section {
    background: var(--bg-deep);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }

  .timeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
  }

  .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
    transform: translateX(-0.5px);
  }

  .time-row {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
  }

  .time-row:last-child {
    margin-bottom: 0;
  }

  .time-side {
    padding: 0 32px;
  }

  .time-row.left .time-side.right-side {
    visibility: hidden;
  }

  .time-row.right .time-side.left-side {
    visibility: hidden;
  }

  .time-row.left .time-side.left-side {
    text-align: right;
  }

  .time-row.right .time-side.right-side {
    text-align: left;
  }

  .time-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
  }

  .time-title {
    font-family: var(--serif-display);
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .time-desc {
    font-family: var(--serif-body);
    font-style: italic;
    color: var(--ink-soft);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.5;
  }

  .time-center {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .time-hour {
    font-family: var(--serif-display);
    font-size: 22px;
    color: var(--accent);
    line-height: 1;
    background: var(--bg);
    padding: 4px 10px;
    position: relative;
    z-index: 2;
  }

  .programme-section .time-hour {
    background: var(--bg-deep);
  }

  .time-dot {
    width: 12px;
    height: 12px;
    background: var(--bg);
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: relative;
    z-index: 2;
  }

  .programme-section .time-dot {
    background: var(--bg-deep);
  }

  .time-dot::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: var(--accent);
    border-radius: 50%;
  }

  @media (max-width: 720px) {
    .timeline::before {
      left: 18px;
      transform: none;
    }

    .time-row {
      grid-template-columns: 38px 1fr !important;
      align-items: start;
    }

    .time-side {
      grid-column: 2 !important;
      grid-row: 1 !important;
      text-align: left !important;
      visibility: visible !important;
      padding: 0 0 0 20px !important;
    }

    .time-row.left .time-side.right-side,
    .time-row.right .time-side.left-side {
      display: none !important;
    }

    .time-center {
      grid-column: 1 !important;
      grid-row: 1 !important;
      flex-direction: row;
      gap: 0;
      padding-top: 4px;
    }

    .time-hour {
      position: absolute;
      left: -4px;
      top: 46px;
      font-size: 13px;
      writing-mode: vertical-rl;
      padding: 6px 2px;
    }
  }

  /* ——— Lieu ——— */
  .venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .venue-map {
    aspect-ratio: 4 / 5;
    background: var(--paper);
    border: 1px solid var(--line-soft);
    position: relative;
    overflow: hidden;
  }

  .venue-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.2) sepia(0.08);
  }

  .venue-map-inner {
    position: absolute;
    inset: 12px;
    background:
      repeating-linear-gradient(45deg,
        transparent,
        transparent 11px,
        var(--line-soft) 11px,
        var(--line-soft) 12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .map-pin {
    width: 24px;
    height: 24px;
    border: 1px solid var(--accent);
    background: var(--paper);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
  }

  .map-pin::after {
    content: "";
    position: absolute;
    inset: 6px;
    background: var(--accent);
    border-radius: 50%;
  }

  .map-caption {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: var(--paper);
    padding: 6px 14px;
  }

  .venue-info h3 {
    font-family: var(--serif-display);
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 400;
  }

  .venue-info .venue-sub {
    font-family: var(--serif-body);
    font-style: italic;
    font-size: 18px;
    color: var(--ink-soft);
    margin-bottom: 32px;
    font-weight: 300;
  }

  .info-list {
    list-style: none;
  }

  .info-list li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 18px 0;
    border-top: 1px solid var(--line-soft);
    align-items: baseline;
  }

  .info-list li:last-child {
    border-bottom: 1px solid var(--line-soft);
  }

  .info-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-faded);
    padding-top: 3px;
  }

  .info-value {
    font-family: var(--serif-body);
    font-size: 17px;
    line-height: 1.45;
  }

  .info-value a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1px;
  }

  .info-value a:hover {
    color: var(--accent-deep);
    border-bottom-color: var(--accent);
  }

  @media (max-width: 840px) {
    .venue-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  /* ——— Cadeau ——— */
  .gift-section {
    background: var(--bg-deep);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }

  .gift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .gift-header {
    text-align: left;
  }

  .gift-header .section-title {
    margin-bottom: 20px;
  }

  .gift-banner {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line-soft);
    padding: 52px 44px 44px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .gift-banner::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid var(--line-soft);
    pointer-events: none;
  }

  .gift-banner > * {
    position: relative;
  }

  .gift-banner-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
  }

  .gift-banner-divider .divider-line {
    width: 44px;
    height: 1px;
    background: var(--line);
  }

  .gift-banner-divider .divider-ornament {
    font-family: var(--serif-display);
    color: var(--accent);
    font-size: 16px;
  }

  .gift-banner-message {
    font-family: var(--serif-body);
    font-size: 19px;
    color: var(--ink-soft);
    font-style: italic;
    font-weight: 300;
    line-height: 1.55;
    margin: 0 auto 30px;
    max-width: 360px;
  }

  .gift-banner-message .script {
    display: inline-block;
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 8px;
    font-style: italic;
  }

  .gift-banner-cta {
    padding: 18px 40px;
  }

  .gift-banner-note {
    margin-top: 22px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-faded);
    line-height: 1.7;
  }

  @media (max-width: 880px) {
    .gift-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .gift-header {
      text-align: center;
    }
    .gift-banner {
      padding: 44px 22px 36px;
    }
    .gift-banner-message {
      font-size: 17px;
    }
    .gift-banner-message .script {
      font-size: 30px;
    }
    .gift-banner-cta {
      padding: 16px 32px;
    }
  }

  .palette-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 40px 0 28px;
    flex-wrap: wrap;
  }

  .swatch {
    width: 68px;
    height: 92px;
    border: 1px solid var(--line-soft);
    position: relative;
  }

  .swatch::after {
    content: attr(data-name);
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faded);
    white-space: nowrap;
  }

  .dress-text {
    text-align: center;
    font-family: var(--serif-body);
    font-size: 18px;
    font-style: italic;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 40px auto 0;
    line-height: 1.6;
    font-weight: 300;
  }

  /* ——— FAQ & Extras ——— */
  .faq-item {
    border-top: 1px solid var(--line-soft);
    padding: 0;
  }

  .faq-item:last-child {
    border-bottom: 1px solid var(--line-soft);
  }

  .faq-q {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--serif-display);
    font-size: 22px;
    color: var(--ink);
    font-weight: 400;
  }

  .faq-q:hover {
    color: var(--accent);
  }

  .faq-toggle {
    font-family: var(--serif-display);
    font-size: 26px;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .faq-item.open .faq-toggle {
    transform: rotate(45deg);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .faq-a-inner {
    padding: 0 0 24px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 640px;
  }

  /* ——— Cagnotte & playlist ——— */
  .cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .card {
    background: var(--paper);
    border: 1px solid var(--line-soft);
    padding: 48px 40px;
    text-align: center;
  }

  .card-icon {
    font-family: var(--serif-display);
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1;
  }

  .card-title {
    font-family: var(--serif-display);
    font-size: 28px;
    margin-bottom: 14px;
    line-height: 1.1;
  }

  .card-text {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 28px;
    font-style: italic;
    font-weight: 300;
  }

  @media (max-width: 720px) {
    .cards-row {
      grid-template-columns: 1fr;
    }
  }

  /* ——— Buttons ——— */
  .btn {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 16px 32px;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    font-weight: 400;
  }

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

  .btn-primary {
    background: var(--accent-deep);
    color: #fff;
    border-color: var(--accent-deep);
  }

  html[data-variation="2"] .btn-primary {
    color: var(--bg);
  }

  .btn-primary:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
  }

  .btn-ghost {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink-soft);
  }

  .btn-ghost:hover {
    color: var(--ink);
    border-color: var(--ink);
  }

  /* ——— RSVP Form ——— */
  .rsvp-section {
    background: var(--bg-deep);
    border-top: 1px solid var(--line-soft);
  }

  .rsvp-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 64px 64px 56px;
    position: relative;
  }

  .rsvp-wrap::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid var(--line-soft);
    pointer-events: none;
  }

  .form-group {
    margin-bottom: 32px;
    position: relative;
  }

  .form-group.conditional {
    max-height: 0;
    overflow: hidden;
    margin-bottom: 0;
    transition: max-height 0.4s ease, margin-bottom 0.4s ease;
  }

  .form-group.conditional.show {
    max-height: 600px;
    margin-bottom: 32px;
  }

  .form-label {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 12px;
  }

  .form-label .req {
    color: var(--accent);
  }

  .form-hint {
    font-family: var(--serif-body);
    font-style: italic;
    font-size: 14px;
    color: var(--ink-faded);
    margin-top: 6px;
    font-weight: 300;
  }

  .form-input,
  .form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 10px 0 12px;
    font-family: var(--serif-body);
    font-size: 19px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease;
  }

  .form-input::placeholder,
  .form-textarea::placeholder {
    color: var(--ink-faded);
    font-style: italic;
    font-weight: 300;
  }

  .form-input:focus,
  .form-textarea:focus {
    border-bottom-color: var(--accent);
  }

  .form-textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  @media (max-width: 600px) {
    .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .form-row .form-group {
      margin-bottom: 32px;
    }

    .rsvp-wrap {
      padding: 40px 28px;
    }
  }

  .choice-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .choice {
    position: relative;
    cursor: pointer;
  }

  .choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .choice-box {
    border: 1px solid var(--line);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.2s ease;
    background: transparent;
  }

  .choice-box .big {
    font-family: var(--serif-display);
    font-size: 26px;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 6px;
  }

  .choice-box .small {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-faded);
  }

  .choice:hover .choice-box {
    border-color: var(--accent);
  }

  .choice input:checked+.choice-box {
    background: var(--accent-deep);
    border-color: var(--accent-deep);
  }

  .choice input:checked+.choice-box .big,
  .choice input:checked+.choice-box .small {
    color: #fff;
  }

  html[data-variation="2"] .choice input:checked+.choice-box .big,
  html[data-variation="2"] .choice input:checked+.choice-box .small {
    color: var(--bg);
  }

  /* Checkbox grid for régime */
  .chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .chip {
    position: relative;
    cursor: pointer;
  }

  .chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .chip-label {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--line);
    font-family: var(--serif-body);
    font-size: 16px;
    color: var(--ink-soft);
    transition: all 0.2s ease;
  }

  .chip:hover .chip-label {
    color: var(--ink);
    border-color: var(--ink-soft);
  }

  .chip input:checked+.chip-label {
    background: var(--accent-deep);
    color: #fff;
    border-color: var(--accent-deep);
  }

  html[data-variation="2"] .chip input:checked+.chip-label {
    color: var(--bg);
  }

  .form-submit {
    display: flex;
    justify-content: center;
    margin-top: 48px;
  }

  .form-submit .btn {
    padding: 20px 56px;
    font-size: 12px;
  }

  .form-error {
    color: #a33;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 8px;
    display: none;
  }

  .form-error.show {
    display: block;
  }

  html[data-variation="2"] .form-error {
    color: #d88;
  }

  .g-recaptcha {
    display: flex;
    justify-content: center;
  }

  .form-status {
    display: none;
    padding: 12px 16px;
    margin-top: 16px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1.5;
    text-align: center;
  }

  .form-status.success {
    display: block;
    background: rgba(34, 139, 34, 0.08);
    color: #1a6b1a;
  }

  .form-status.error {
    display: block;
    background: rgba(200, 40, 40, 0.08);
    color: #a02020;
  }

  /* ——— Thank you state ——— */
  .thankyou {
    display: none;
    text-align: center;
    padding: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .thankyou.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .thankyou-seal {
    width: 96px;
    height: 96px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Tokyo Dreams', var(--serif-display);
    font-size: 48px;
    color: var(--accent);
    position: relative;
    animation: sealIn 0.9s cubic-bezier(.2, .8, .2, 1) 0.2s both;
  }

  .thankyou-seal::before {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px dashed var(--line);
    border-radius: 50%;
    animation: spin 22s linear infinite;
  }

  @keyframes sealIn {
    from {
      transform: scale(0.6) rotate(-15deg);
      opacity: 0;
    }

    to {
      transform: scale(1) rotate(0);
      opacity: 1;
    }
  }

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

  .thankyou h3 {
    font-family: var(--serif-display);
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 400;
  }

  .thankyou p {
    font-family: var(--serif-body);
    font-style: italic;
    font-size: 20px;
    color: var(--ink-soft);
    max-width: 440px;
    margin: 0 auto 32px;
    font-weight: 300;
    line-height: 1.5;
  }

  .thankyou-signature {
    font-family: var(--serif-display);
    font-size: 24px;
    color: var(--accent);
    letter-spacing: 0.05em;
    font-style: italic;
  }

  /* Petals */
  .petal {
    position: absolute;
    width: 10px;
    height: 14px;
    background: var(--rose);
    border-radius: 100% 0 100% 0;
    opacity: 0;
    pointer-events: none;
  }

  /* ——— Footer ——— */
  footer {
    text-align: center;
    padding: 80px 40px 60px;
    border-top: 1px solid var(--line-soft);
    background: var(--bg);
  }

  .footer-mono {
    font-family: 'Tokyo Dreams', var(--serif-display);
    font-size: 48px;
    color: var(--ink);
    margin-bottom: 16px;
  }

  .footer-mono .amp {
    font-style: italic;
    color: var(--accent);
    font-family: var(--serif-body);
    font-weight: 300;
  }

  .footer-meta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-faded);
  }

  /* ——— Tweaks panel ——— */
  .tweaks-panel {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 20px;
    width: 260px;
    z-index: 100;
    font-family: var(--serif-body);
    display: none;
    box-shadow: 0 12px 40px rgba(58, 42, 26, 0.15);
  }

  html[data-variation="2"] .tweaks-panel {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  }

  .tweaks-panel.show {
    display: block;
  }

  .tweaks-title {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line-soft);
  }

  .tweak-row {
    margin-bottom: 14px;
  }

  .tweak-row:last-child {
    margin-bottom: 0;
  }

  .tweak-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-faded);
    margin-bottom: 6px;
    display: block;
  }

  .tweak-btns {
    display: flex;
    gap: 6px;
  }

  .tweak-btn {
    flex: 1;
    background: transparent;
    border: 1px solid var(--line);
    padding: 8px 6px;
    font-family: var(--serif-body);
    font-size: 13px;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.2s;
  }

  .tweak-btn.active {
    background: var(--accent-deep);
    color: #fff;
    border-color: var(--accent-deep);
  }

  html[data-variation="2"] .tweak-btn.active {
    color: var(--bg);
  }

  /* Nav */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    pointer-events: none;
  }

  .nav>* {
    pointer-events: auto;
  }

  .nav-monogram {
    font-family: 'Tokyo Dreams', var(--serif-display);
    font-size: 20px;
    color: var(--ink);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-monogram .amp {
    font-family: var(--serif-body);
    font-style: italic;
    color: var(--accent);
  }

  .nav.scrolled .nav-monogram {
    opacity: 1;
  }

  .nav-cta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid var(--ink);
    background: var(--paper);
    transition: all 0.2s;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav.scrolled .nav-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-cta:hover {
    background: var(--ink);
    color: var(--paper);
  }

  @media (max-width: 600px) {
    .nav {
      padding: 16px 20px;
    }

    section {
      padding: 80px 24px;
    }

    .hero {
      padding: 60px 24px;
    }
  }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }

  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }