/* ============================================================
   NUANCE. — Système de design partagé
   Charte 2026 · Paper / Ink / Or · zéro border-radius
   Cormorant Garamond · Josefin Sans · DM Mono
   ============================================================ */

:root {
  /* Fondations */
  --paper:  #faf8f5;
  --ink:    #1a1614;
  --gold:   #c8a882;
  --bronze: #9a7a52;
  --rule:   #d4c9bc;
  --muted:  #9b8e84;
  --cream:  #f0e8dc;
  --cream-2:#f5f0e8;

  /* Saisons — fonds */
  --spring-bg: #fffbf3;
  --summer-bg: #f0f5f8;
  --autumn-bg: #faf2e8;
  --winter-bg: #eeeef5;

  /* Saisons — couleurs foncées (texte/accents) */
  --spring-dk: #b5732a;
  --summer-dk: #3f6f8c;
  --autumn-dk: #7a3a10;
  --winter-dk: #4a4a7a;

  /* Saisons — accents vifs */
  --spring:  #e8b87a;
  --summer:  #7aadcf;
  --autumn:  #c8723a;
  --winter:  #7878b8;

  /* Type scale */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Josefin Sans', sans-serif;
  --mono:  'DM Mono', monospace;

  --maxw: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ─────────────────────────────────────────────
   TYPO UTILITAIRES
   ───────────────────────────────────────────── */
.label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─────────────────────────────────────────────
   CTA FINAL (pied de page public : accueil, offres, à propos)
   ───────────────────────────────────────────── */
.cta-final { background: var(--ink); color: var(--paper); text-align: center; padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 64px); }
.cta-final h2 { font-size: clamp(34px, 5vw, 60px); }
.cta-final h2 em { color: var(--gold); font-style: italic; }
.cta-final p { color: #c9bfb4; font-style: italic; font-size: 19px; margin: 24px auto 44px; max-width: 44ch; }

/* ─────────────────────────────────────────────
   OFFRES — visuel et note astérisque (page Offres)
   ───────────────────────────────────────────── */
.offer-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; margin-top: 30px; }
.offer-note { font-family: var(--mono); font-size: 10.5px; line-height: 1.85; color: var(--muted); margin-top: 22px; }

.sans-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}
.serif-it { font-style: italic; }
.gold-word { color: var(--bronze); font-style: italic; }

h1, h2, h3, h4 { font-weight: 300; line-height: 1.12; }

/* ─────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--rule);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 40px);
  list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}
.nav-lang a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-lang a:hover,
.nav-lang a.active { color: var(--ink); }
.nav-lang-sep { color: var(--rule); }
.nav-cta {
  font-family: var(--sans) !important;
  font-size: 11px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink) !important;
  padding: 13px 24px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--ink); color: var(--paper) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-burger span { width: 24px; height: 1px; background: var(--ink); display: block; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ─────────────────────────────────────────────
   BOUTONS
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 18px 38px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--bronze); color: var(--paper); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--bronze); }
.btn-outline { background: transparent; color: var(--ink); border: 0.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-sm { padding: 13px 26px; font-size: 10px; }

/* ─────────────────────────────────────────────
   FILETS & SAISONS
   ───────────────────────────────────────────── */
.rule-gold { height: 1px; background: var(--gold); border: none; }
.rule-thin { height: 0.5px; background: var(--rule); border: none; }

/* barre signature : 12 segments = 4 saisons × 3 couleurs */
.season-bar {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  height: 8px;
  width: 100%;
}
.season-bar span { display: block; }
.season-bar .s1 { background: #f0c896; } .season-bar .s2 { background: #e8b87a; } .season-bar .s3 { background: #d99b52; }
.season-bar .e1 { background: #a8cfe0; } .season-bar .e2 { background: #7aadcf; } .season-bar .e3 { background: #5c8fb0; }
.season-bar .a1 { background: #e0a878; } .season-bar .a2 { background: #c8723a; } .season-bar .a3 { background: #9a4f1e; }
.season-bar .h1 { background: #a8a8d0; } .season-bar .h2 { background: #7878b8; } .season-bar .h3 { background: #565690; }

/* ─────────────────────────────────────────────
   SECTION SHELL
   ───────────────────────────────────────────── */
.section { padding: clamp(56px, 9vw, 130px) clamp(20px, 5vw, 64px); }
.section-ink { background: var(--ink); color: var(--paper); }
.section-cream { background: var(--cream); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.wrap-narrow { max-width: 820px; margin: 0 auto; }

.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-title { font-size: clamp(30px, 4vw, 48px); }
.section-sub { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }

/* ─────────────────────────────────────────────
   CARTES SERVICES
   ───────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.card-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; margin-bottom: 26px; }
.card {
  background: var(--paper);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.card-featured { background: var(--ink); color: var(--paper); }
.card-label { font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; }
.card-label::before { content: ''; width: 7px; height: 7px; background: var(--gold); display: inline-block; }
.card-name { font-size: 26px; margin: 22px 0 6px; }
.card-tagline { font-size: 15px; color: var(--muted); font-style: italic; min-height: 48px; }
.card-featured .card-tagline { color: #c9bfb4; }
.card-price { font-family: var(--mono); font-size: 22px; margin: 18px 0; letter-spacing: 0.02em; }
.card-featured .card-price { color: var(--gold); }
.card-list { list-style: none; margin: 8px 0 26px; flex: 1; }
.card-list li { font-size: 14.5px; color: var(--ink); padding: 10px 0; border-top: 0.5px solid var(--rule); display: flex; gap: 9px; line-height: 1.4; }
.card-featured .card-list li { color: #d8cfc4; border-top-color: #353029; }
.card-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────
   PLACEHOLDER IMAGE (zones rayées + légende)
   ───────────────────────────────────────────── */
.ph {
  position: relative;
  background-color: var(--cream);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 9px,
    rgba(154,122,82,0.10) 9px, rgba(154,122,82,0.10) 10px
  );
  border: 0.5px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  padding: 8px 12px;
  background: rgba(250,248,245,0.7);
}
.ph-1x1 { aspect-ratio: 1 / 1; }
.ph-4x3 { aspect-ratio: 4 / 3; }
.ph-3x4 { aspect-ratio: 3 / 4; }
.ph-16x9 { aspect-ratio: 16 / 9; }

/* ─────────────────────────────────────────────
   SWATCHES
   ───────────────────────────────────────────── */
.swatch-row { display: flex; flex-wrap: wrap; gap: 6px; }
.swatch { width: 30px; height: 30px; display: block; }
.swatch-lg { width: 38px; height: 38px; }
.swatch-round { border-radius: 50%; }
.swatch-faded { opacity: 0.4; position: relative; }
.swatch-name { font-family: var(--mono); font-size: 8px; letter-spacing: 0.04em; color: var(--muted); margin-top: 5px; text-align: center; }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.footer { background: var(--ink); color: var(--paper); }
.footer-top { padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 64px); }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { font-family: var(--serif); font-size: 30px; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-tag { font-family: var(--sans); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: #c9bfb4; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { border-top: 0.5px solid #2c2823; padding: 20px clamp(20px, 5vw, 64px); display: flex; justify-content: space-between; max-width: var(--maxw); margin: 0 auto; }
.footer-copy { font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; color: #6a635c; }

@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-bottom { flex-direction: column; gap: 10px; } }

.legal-bar { border-top: 0.5px solid #2c2823; padding: 22px clamp(20px, 5vw, 64px); max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 18px; }
.legal-info p { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.03em; color: #6a635c; line-height: 1.7; }
.legal-info a { color: #6a635c; text-decoration: none; }
.legal-info a:hover { color: var(--paper); }
.legal-pay { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.pay-caption { font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; color: #7a716a; }
.pay-logos { display: flex; gap: 8px; align-items: center; }
.pay-logo { height: 24px; width: auto; display: block; border-radius: 2px; }

@media (max-width: 760px) { .legal-bar { flex-direction: column; align-items: flex-start; } .legal-pay { align-items: flex-start; } }

/* ─────────────────────────────────────────────
   RÉASSURANCE (3 lignes ✦)
   ───────────────────────────────────────────── */
.reassure { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.reassure span { display: flex; align-items: center; gap: 9px; }
.reassure span::before { content: '✦'; color: var(--gold); }

/* utilité */
.hidden { display: none !important; }
.center { text-align: center; }
.mono { font-family: var(--mono); }

/* ─────────────────────────────────────────────
   QUESTIONNAIRE (diagnostic public)
   ───────────────────────────────────────────── */
.page-header { margin-top: 60px; padding: 6rem 5vw; text-align: center; border-bottom: 0.5px solid var(--rule); }
.page-label { font-family: var(--mono); font-size: 8px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 1rem; }
.page-title { font-size: clamp(36px, 5vw, 56px); font-weight: 300; line-height: 1.2; margin-bottom: 1rem; font-family: var(--serif); }
.page-subtitle { font-size: 16px; color: var(--muted); font-style: italic; max-width: 480px; margin: 0 auto; }

.form-container { max-width: 780px; margin: 4rem auto; padding: 0 5vw; }
.form-section { margin-bottom: 4rem; }
.form-section-title { font-family: var(--sans); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 0.5px solid var(--rule); }

.form-group { margin-bottom: 2rem; }
.form-group label { display: block; font-size: 13px; margin-bottom: 0.5rem; color: var(--ink); font-weight: 400; }
.form-group.required label::after { content: ' *'; color: var(--gold); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 0.5px solid var(--rule); background: var(--paper);
  color: var(--ink); font-family: var(--serif); font-size: 14px; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.field-hint { font-size: 13.5px; line-height: 1.7; color: var(--muted); margin: -0.35rem 0 0.75rem; max-width: 62ch; }

.form-options { display: flex; flex-direction: column; gap: 1rem; }
.form-option { display: flex; align-items: flex-start; gap: 0.75rem; }
.form-option input[type="radio"], .form-option input[type="checkbox"] { width: auto; margin: 3px 0 0 0; padding: 0; cursor: pointer; flex-shrink: 0; }
.form-option label { margin: 0; font-size: 14px; cursor: pointer; line-height: 1.5; }

.disclaimer { background: var(--cream); border-left: 3px solid var(--gold); padding: 1.5rem; margin-bottom: 2rem; font-size: 12px; line-height: 1.6; color: var(--ink); }
.disclaimer strong { color: var(--gold); }
.disclaimer-premium { background: var(--cream-2); border-left-color: var(--bronze); }

.subsection-title { font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 2rem; margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 0.5px solid var(--rule); }

.photo-section { background: var(--cream); border: 0.5px solid var(--rule); padding: 1.5rem; margin-bottom: 1.5rem; border-radius: 2px; }
.photo-title { font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.photo-importance { font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--autumn); margin-left: auto; }
.photo-instruction { font-size: 12px; color: var(--ink); line-height: 1.5; margin-bottom: 1rem; margin-top: 0.75rem; }

.file-upload { border: 0.5px dashed var(--rule); padding: 1.5rem; text-align: center; background: #fff; cursor: pointer; transition: all 0.2s; margin-bottom: 1rem; }
.file-upload:hover { border-color: var(--gold); background: var(--paper); }
.file-upload.active { border-color: var(--gold); background: var(--cream-2); }
.file-upload-icon { font-size: 32px; margin-bottom: 0.5rem; }
.file-upload-text { font-size: 13px; color: var(--muted); }
.file-upload-subtext { font-size: 11px; color: #b9a89a; margin-top: 0.5rem; }
.file-list { margin-top: 0.5rem; border-top: 0.5px solid var(--rule); padding-top: 0.75rem; }
.file-item { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; font-size: 12px; }

.ref-cap { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 1rem 0 0.6rem; }
.ref-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(104px, 1fr)); gap: 8px; margin-bottom: 1.75rem; }
.ref-tile { position: relative; margin: 0; aspect-ratio: 1 / 1; background-color: var(--cream); border: 0.5px solid var(--rule); display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.ref-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ref-tile span, .ref-tile figcaption { position: relative; z-index: 1; width: 100%; font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); background: rgba(250,248,245,0.88); padding: 5px 6px; text-align: center; line-height: 1.3; }
.ref-grid--eye { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px 12px; align-items: start; justify-items: center; }
@media (max-width: 600px) { .ref-grid--eye { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.ref-grid--eye .ref-tile { width: 100%; aspect-ratio: auto; background: none; border: none; flex-direction: column; align-items: center; overflow: visible; }
.ref-grid--eye .ref-tile img { position: static; width: 54px; height: 54px; flex: 0 0 auto; object-fit: cover; border-radius: 50%; }
.ref-grid--eye .ref-tile figcaption { background: none; padding: 8px 0 0; color: var(--muted); min-height: 2.9em; display: flex; align-items: flex-start; justify-content: center; }

.form-actions { display: flex; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: 0.5px solid var(--rule); }
.btn-submit { background: var(--gold); color: var(--ink); padding: 16px 36px; font-family: var(--sans); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; flex: 1; }
.btn-submit:hover { background: var(--bronze); color: var(--paper); }
.btn-submit:disabled { background: var(--muted); cursor: not-allowed; }
.btn-reset { background: none; border: 0.5px solid var(--ink); color: var(--ink); padding: 16px 36px; font-family: var(--sans); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; flex: 1; text-decoration: none; display: inline-block; text-align: center; }
.btn-reset:hover { background: var(--ink); color: var(--paper); }

.field-errors { background: var(--cream-2); border-left: 3px solid var(--autumn); padding: 1.25rem 1.5rem; margin-bottom: 2rem; font-size: 13px; }
.field-errors p { font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; }
.field-errors ul { padding-left: 1.2rem; }

/* ─────────────────────────────────────────────
   CONFIRMATION (diagnostic public)
   ───────────────────────────────────────────── */
.success-screen { text-align: center; padding: 4rem 5vw; max-width: 600px; margin: 4rem auto; }
.success-icon { font-size: 72px; margin-bottom: 2rem; }
.success-title { font-size: 36px; font-weight: 300; margin-bottom: 1rem; font-family: var(--serif); }
.success-message { font-size: 16px; color: var(--muted); margin-bottom: 2rem; line-height: 1.6; }
.consultation-id { background: var(--cream); padding: 1rem; margin: 1.5rem 0; border-left: 3px solid var(--gold); text-align: left; }
.consultation-id-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; display: block; margin-bottom: 0.5rem; }
.consultation-id-value { font-family: var(--mono); font-size: 18px; letter-spacing: 0.1em; color: var(--ink); word-break: break-all; }
.closing { background: var(--cream); border-left: 3px solid var(--gold); }
.closing h3 { font-family: var(--serif); font-size: 26px; font-weight: 300; margin-bottom: 1rem; }
.closing p { font-size: 15px; line-height: 1.75; margin-bottom: 1rem; max-width: 60ch; }
.closing a.btn-offers { display: inline-block; margin-top: 0.5rem; background: var(--ink); color: var(--paper); font-family: var(--sans); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; padding: 16px 30px; text-decoration: none; transition: background 0.2s; }
.closing a.btn-offers:hover { background: var(--bronze); }
.next-steps { background: var(--paper); border: 0.5px solid var(--rule); padding: 2rem; margin-top: 2rem; text-align: left; }
.next-steps-title { font-size: 13px; font-weight: 400; margin-bottom: 1rem; color: var(--ink); }
.next-steps-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.next-steps-list li { font-size: 13px; color: var(--muted); padding-left: 1.5rem; position: relative; }
.next-steps-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }

@media (max-width: 768px) {
  .form-actions { flex-direction: column; }
  .page-header { padding: 3rem 5vw; }
  .photo-title { flex-direction: column; align-items: flex-start; }
  .photo-importance { margin-left: 0; }
}

/* ── Paiement & confirmation ── */
a { color: var(--bronze); }
a:hover { color: var(--ink); }
.pay-wrap { max-width: 900px; margin: 0 auto; padding: clamp(48px,7vw,96px) clamp(20px,5vw,64px); }
.pay-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2px; background: var(--rule); border: 1px solid var(--rule); margin-top: clamp(28px,4vw,48px); }
.pay-cell { background: var(--paper); padding: clamp(26px,3vw,40px); }
.pay-cell.ink { background: var(--ink); color: var(--paper); }
.pay-line { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: .5px solid var(--rule); font-size: 16px; }
.pay-cell.ink .pay-line { border-bottom-color: #2c2823; }
.pay-total { font-family: var(--mono); font-size: 24px; color: var(--gold); display: flex; justify-content: space-between; padding-top: 22px; }
.pay-method { display: flex; align-items: center; gap: 14px; border: .5px solid var(--rule); padding: 18px 20px; margin-top: 8px; }
.pay-method img { height: 26px; width: auto; }
.pay-note { font-family: var(--mono); font-size: 10px; line-height: 1.9; letter-spacing: .04em; color: var(--muted); margin-top: 22px; }
.pay-steps { display: flex; gap: 10px; flex-wrap: wrap; font-family: var(--mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.pay-steps b { color: var(--ink); font-weight: 400; }
@media (max-width: 820px) { .pay-grid { grid-template-columns: 1fr; } }
.conf-wrap { max-width: 720px; margin: 0 auto; padding: clamp(56px,9vw,120px) clamp(20px,5vw,64px); text-align: center; }
.conf-wrap h1 { font-size: clamp(34px,5vw,58px); margin-top: 20px; }
.conf-wrap h1 em { color: var(--bronze); font-style: italic; }
.conf-lead { font-size: 19px; line-height: 1.75; color: var(--ink); margin: 28px auto 0; max-width: 46ch; }
.conf-box { background: var(--cream); border-left: 2px solid var(--gold); text-align: left; padding: 26px 30px; margin: 36px 0; font-size: 17px; line-height: 1.75; }
.conf-ref { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 30px; }
