/* =========================================================
   Les Vignes de l'Honneur — Design Prestige Blanc
   Cormorant Garamond · DM Sans · Or sobre · Architecture épurée
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&display=swap');

/* ── Tokens ────────────────────────────────────────────── */
:root {
  --wine:       #3D0A14;
  --wine-mid:   #5C1022;
  --gold:       #9C7A3C;
  --gold-light: #C9A96E;
  --gold-pale:  #EAD9B8;
  --white:      #FFFFFF;
  --ivory:      #FAF7F2;
  --ink:        #1A1A1A;
  --muted:      #7A6E68;
  --line:       rgba(156, 122, 60, 0.18);
  --line-dark:  rgba(156, 122, 60, 0.32);
  --shadow-sm:  0 2px 16px rgba(26, 10, 6, 0.06);
  --shadow-md:  0 8px 40px rgba(26, 10, 6, 0.10);
  --shadow-lg:  0 24px 72px rgba(26, 10, 6, 0.14);
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
}

/* ── Reset & base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  /* Subtle grain texture via SVG */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ── Layout ────────────────────────────────────────────── */
.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}
.narrow {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section { padding: 100px 0; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--wine);
  line-height: 1.05;
  margin: 0;
  font-weight: 600;
}
h1 { font-size: clamp(52px, 7vw, 96px); letter-spacing: -0.03em; }
h2 { font-size: clamp(38px, 4.5vw, 64px); letter-spacing: -0.025em; }
h3 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 500; }

.eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

/* ── Divider ornement ──────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--gold-light);
  font-size: 18px;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-dark);
}
.ornament.center { justify-content: center; }

/* ── Header / Nav ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.navbar {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--wine);
  letter-spacing: 0.02em;
}
.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.nav-links a:not(.btn) {
  position: relative;
  transition: color 0.2s;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
  color: var(--wine);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--wine);
  margin: 6px 0;
  transition: all 0.25s;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--wine);
  background: var(--wine);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
  background: var(--wine-mid);
  border-color: var(--wine-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-small { min-height: 40px; padding: 0 18px; font-size: 12px; }
.btn-outline {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn-outline:hover { background: var(--wine); color: #fff; }
.btn-outline.light { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline.light:hover { background: rgba(255,255,255,0.14); }
.btn-block { width: 100%; }
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ── Hero ──────────────────────────────────────────────── */
.hero, .page-hero {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

/* Watermark typographique — signature du design */
.hero::before {
  content: 'VIGNES';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(140px, 20vw, 280px);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-pale);
  opacity: 0.35;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  letter-spacing: -0.05em;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-hero .container { position: relative; z-index: 1; }

.hero-text, .page-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}
.page-hero h1 { margin-bottom: 20px; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 36px 0 32px;
}

.trust-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-row span {
  padding: 8px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Hero card (certificat) ────────────────────────────── */
.hero-card {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.hero-card > img {
  width: 200px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 18px rgba(61, 10, 20, 0.12));
}
.certificate-card {
  background: var(--wine);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.4);
  position: relative;
  overflow: hidden;
}
.certificate-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, transparent 60%);
}
.certificate-card p {
  color: var(--gold-light);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 600;
}
.certificate-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  position: relative;
}
.certificate-card span {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 0.06em;
}

/* ── Section intro (fond ivoire) ───────────────────────── */
.intro {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ── Steps ─────────────────────────────────────────────── */
.steps, .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Numéro en filigrane — signature */
.step::before {
  content: attr(data-num);
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 130px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-pale);
  opacity: 0.5;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.step span {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.step h3 {
  margin-bottom: 12px;
  font-size: 24px;
  position: relative;
}
.step p { color: var(--muted); font-size: 15px; position: relative; }

/* ── Section title (centré) ────────────────────────────── */
.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.section-title p:last-child { color: var(--muted); font-size: 17px; margin-top: 16px; }

/* ── Pricing ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.price-card:hover { box-shadow: var(--shadow-md); }

.price-card.featured {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured h3,
.price-card.featured .price { color: #fff; }
.price-card.featured .desc { color: rgba(255,255,255,0.65); }
.price-card.featured ul { color: rgba(255,255,255,0.8); }
.price-card.featured li::marker { color: var(--gold-light); }
.price-card.featured .btn {
  background: #fff;
  color: var(--wine);
  border-color: #fff;
}
.price-card.featured .btn:hover { background: var(--ivory); }

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: var(--wine);
  line-height: 1;
  margin: 20px 0 4px;
  letter-spacing: -0.02em;
}
.price::after {
  content: ' €';
  font-size: 28px;
}
.desc { color: var(--muted); font-size: 15px; margin-bottom: 0; font-weight: 300; }

ul { padding-left: 18px; margin: 24px 0 32px; color: var(--muted); line-height: 2; }
li { font-size: 14px; }
li::marker { color: var(--gold); }
.price-card .btn { margin-top: auto; }

.legal-note {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Gifts section ─────────────────────────────────────── */
.gifts {
  background: var(--wine);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.gifts::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.gifts h2, .gifts .eyebrow, .gifts p { position: relative; }
.gifts h2 { color: #fff; }
.gifts .eyebrow { color: var(--gold-light); }
.gifts p { color: rgba(255,255,255,0.75); font-weight: 300; }

.gifts-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.gift-list { display: grid; gap: 14px; position: relative; }
.gift-list div {
  padding: 22px 26px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 16px;
  align-items: start;
  transition: background 0.2s;
}
.gift-list div:hover { background: rgba(255,255,255,0.1); }
.gift-list strong {
  display: block;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  grid-column: 1 / -1;
  margin-bottom: 6px;
}
.gift-list span {
  grid-column: 1 / -1;
  opacity: 0.75;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}

/* ── Order / Contact grid ──────────────────────────────── */
.order-grid, .two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.two-col { align-items: center; }

/* ── Info card ─────────────────────────────────────────── */
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.info-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.mini-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 28px;
}
.mini-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--wine);
  margin-bottom: 8px;
}
.mini-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ── Form ──────────────────────────────────────────────── */
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: var(--ivory);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(156, 122, 60, 0.1);
}
select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239C7A3C'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-result {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  min-height: 20px;
}

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
details[open] { box-shadow: var(--shadow-sm); }

summary {
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  color: var(--wine);
  font-size: 22px;
  font-weight: 500;
  padding: 24px 28px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}
details[open] summary::after { transform: rotate(45deg); }
summary:hover { color: var(--gold); }

details p {
  color: var(--muted);
  padding: 0 28px 24px;
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

/* ── Gift occasions (offrir) ───────────────────────────── */
.gift-occasions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 0;
}
.gift-occasions .info-card h3 { border-bottom: none; padding-bottom: 0; }

/* ── Legal pages ───────────────────────────────────────── */
.legal-page { max-width: 860px; }
.legal-page h2 {
  font-size: 28px;
  margin-top: 44px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.legal-page p { color: var(--muted); font-size: 15px; }

/* ── Footer ────────────────────────────────────────────── */
.footer {
  padding: 72px 0 28px;
  background: #1A0408;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 300;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 48px;
}

.footer h3 {
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 20px;
}

.footer a {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  font-size: 13px;
}
.footer a:hover { color: var(--gold-light); }

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  margin-bottom: 20px;
  object-fit: contain;
}

.footer > .container > div > p {
  line-height: 1.7;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.footer-bottom a { display: inline; margin: 0; color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Scroll reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Décalage en cascade sur les grilles */
.steps .step:nth-child(2),
.pricing-grid .price-card:nth-child(2),
.gift-occasions .info-card:nth-child(2) { transition-delay: 0.08s; }
.steps .step:nth-child(3),
.pricing-grid .price-card:nth-child(3),
.gift-occasions .info-card:nth-child(3) { transition-delay: 0.16s; }
.gift-occasions .info-card:nth-child(4) { transition-delay: 0.24s; }

/* ── Responsive 1040 ───────────────────────────────────── */
@media (max-width: 1040px) {
  .nav-links { gap: 16px; font-size: 13px; }
  .brand span { font-size: 15px; }
}

/* ── Responsive 920 ────────────────────────────────────── */
@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-lg);
    gap: 6px;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 8px 0; width: 100%; }
  .nav-links .btn { margin-top: 10px; width: 100%; }

  .hero-grid,
  .steps,
  .values-grid,
  .pricing-grid,
  .gifts-grid,
  .order-grid,
  .two-col,
  .footer-grid,
  .gift-occasions {
    grid-template-columns: 1fr;
  }
  .price-card.featured { transform: none; }
  .section { padding: 72px 0; }
  .hero { padding-top: 72px; }
  .hero::before { font-size: 120px; }
  .footer-grid { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
}

/* ── Responsive 560 ────────────────────────────────────── */
@media (max-width: 560px) {
  .container { width: calc(100% - 28px); }
  .brand span { display: none; }
  h1 { font-size: 46px; }
  h2 { font-size: 36px; }
  .hero { padding-top: 56px; }
  .hero::before { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-card { padding: 24px 20px; border-radius: var(--radius-lg); }
  .hero-card > img { width: 140px; }
  .price-card, .form { padding: 28px 22px; }
  .section { padding: 56px 0; }
  .step { padding: 28px 22px; }
  .step::before { font-size: 90px; right: -4px; top: -12px; }
  .form { padding: 28px 20px; }
  .pricing-grid { gap: 14px; }
  .price { font-size: 48px; }
}

/* ── Reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .step, .gift-list div, details { transition: none; }
}

/* ── Lang switcher ─────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--ivory);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 3px;
}
.lang-option {
  background: none;
  border: none;
  border-radius: 4px;
  padding: 5px 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  line-height: 1;
}
.lang-option:hover { background: var(--white); color: var(--wine); }
.lang-option.active {
  background: var(--wine);
  color: #fff;
}
@media (max-width: 920px) {
  .lang-switcher {
    align-self: flex-start;
    margin-top: 4px;
  }
}
