/* ═══════════════════════════════════════════════
   GO PETRANELLE — CARNIVAL COST CALCULATOR
   Theme: Carnival Vivid · Mas Colors · Roboto
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,300;1,400&display=swap');

/* ── TOKENS ── */
:root {
  /* Carnival palette — neutral base, bold accents */
  --gold:        #B07A00;      /* mas costume gold — primary accent */
  --gold-bright: #C98F00;      /* hover/highlight gold */
  --gold-pale:   #FDF3D0;
  --gold-border: rgba(176, 122, 0, 0.25);

  --teal:        #006670;      /* deep carnival teal — secondary accent */
  --teal-mid:    #00535C;
  --teal-pale:   #E0F4F6;
  --teal-border: rgba(0, 102, 112, 0.2);

  --ember:       #B84A00;      /* burnt orange-red from feather roots */
  --ember-pale:  #FDF0E8;

  --slate:       #2C3440;      /* neutral dark for headers/text */
  --charcoal:    #1A2028;      /* deepest text */

  /* Backgrounds — white/pearl/warm sand */
  --bg:          #F9F8F6;
  --bg-warm:     #F4F1EC;
  --bg-card:     #FFFFFF;
  --bg-subtle:   #EEEAE4;

  /* Text — warm neutrals, strong contrast */
  --text:        #0F1318;
  --text-mid:    #232B35;
  --text-muted:  #384250;
  --text-dim:    #5A6470;

  /* Borders / surfaces — darkened for visibility */
  --border:      rgba(26, 30, 34, 0.18);
  --border-2:    rgba(26, 30, 34, 0.28);
  --surface:     rgba(176, 122, 0, 0.04);
  --surface-2:   rgba(0, 102, 112, 0.05);

  /* Legacy aliases — keep JS working */
  --magenta:     var(--ember);
  --magenta-pale:var(--ember-pale);
  --cyan:        var(--teal);
  --cyan-pale:   var(--teal-pale);
  --gold-warm:   var(--gold-bright);
  --red:         #A03020;
  --purple:      var(--slate);
  --orange:      var(--ember);
  --teal-light:  var(--teal-pale);
  --teal-glow:   rgba(0, 102, 112, 0.08);
  --coral:       var(--ember);
  --sky:         var(--teal);
  --primary:     var(--gold);
  --primary-pale:var(--gold-pale);

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;

  /* Fonts */
  --font-display: 'Roboto', sans-serif;
  --font-body:    'Roboto', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── SUBTLE TEXTURE ── */
body::before {
  content: '';
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ── WRAP ── */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════
   HEADER
══════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-icon { font-size: 20px; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--teal);
  background: var(--teal);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill-btn.ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-2);
}

.pill-btn:hover { opacity: 0.82; transform: translateY(-1px); }
.pill-btn.ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ══════════════════════════
   HERO
══════════════════════════ */
.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(160deg, #fff 0%, var(--bg-warm) 60%, #EAF4F6 100%);
}

.hero-inner { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-pale);
  border: 1px solid var(--teal-border);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 22px;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--ember) 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 400;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ORB BG FX */
.hero-orbs { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(176,122,0,0.12), transparent 70%);
  top: -200px; left: -150px;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,102,112,0.10), transparent 70%);
  top: -100px; right: -150px;
}

.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,74,0,0.08), transparent 70%);
  bottom: -100px; left: 40%;
}

/* ══════════════════════════
   MAIN GRID
══════════════════════════ */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 80px;
  align-items: start;
}

/* ══════════════════════════
   FORM COLUMN
══════════════════════════ */
.form-col { display: flex; flex-direction: column; gap: 0; }

.section-block {
  padding: 36px 0;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 400;
}

/* SEPARATOR */
.sep {
  height: 1px;
  background: var(--border);
}

/* ── FIELDS ── */
.field-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.field-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.unit {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-dim);
  font-size: 10px;
}

.field input[type="number"],
.field input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-card);
  border: 1.5px solid rgba(26, 30, 34, 0.30);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  transition: border-color 0.2s, box-shadow 0.2s;
  -moz-appearance: textfield;
  appearance: textfield;
}

input.email-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-card);
  border: 1.5px solid rgba(26, 30, 34, 0.30);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input::-webkit-outer-spin-button,
.field input::-webkit-inner-spin-button { -webkit-appearance: none; }

.field input:focus,
input.email-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 122, 0, 0.12);
}

.field-hint {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 400;
}

/* ── PLAYING MAS TOGGLE ── */
.mas-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-radius: var(--r-md);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  margin-bottom: 16px;
}

.mas-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
}

.mas-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* TOGGLE SWITCH */
.toggle-switch {
  position: relative;
  flex-shrink: 0;
}

.toggle-switch input { display: none; }

.toggle-track {
  display: block;
  width: 50px;
  height: 27px;
  border-radius: 50px;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-2);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  position: relative;
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--text-dim);
  transition: transform 0.25s, background 0.25s;
}

.toggle-switch input:checked + .toggle-track {
  background: var(--gold);
  border-color: var(--gold);
}

.toggle-switch input:checked + .toggle-track .toggle-thumb {
  transform: translateX(23px);
  background: #fff;
}

/* ── FETE CARDS ── */
.fete-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.fete-card {
  padding: 20px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.2s, transform 0.2s;
}

.fete-card:hover { transform: translateY(-2px); }

.fete-card.ai      { border-left: 3px solid var(--gold); }
.fete-card.cooler  { border-left: 3px solid var(--teal); }
.fete-card.premium { border-left: 3px solid var(--coral); }
.fete-card.free    { border-left: 3px solid var(--text-dim); }

.fete-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.fete-card.ai .fete-badge     { color: var(--gold); }
.fete-card.cooler .fete-badge { color: var(--teal); }
.fete-card.premium .fete-badge{ color: var(--coral); }

.fete-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.fete-inputs {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.field.mini .field-label { font-size: 10px; }
.field.mini input { font-size: 14px; padding: 10px 12px; }

.fete-times {
  font-size: 18px;
  color: var(--text-dim);
  padding-bottom: 10px;
  flex-shrink: 0;
}

.fete-times.free-zero {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  padding-bottom: 14px;
}

/* ── FORM ACTIONS ── */
.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 8px;
}

.cta-btn {
  flex: 1;
  padding: 15px 28px;
  border-radius: var(--r-xl);
  border: none;
  background: linear-gradient(135deg, var(--gold) 0%, var(--ember) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta-btn:hover {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--ember) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(176, 122, 0, 0.28);
}

.ghost-btn {
  padding: 15px 24px;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border-2);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ghost-btn:hover { border-color: var(--magenta); color: var(--magenta); }

/* ══════════════════════════
   RESULTS COLUMN
══════════════════════════ */
.results-col {
  position: sticky;
  top: 80px;
}

.results-card {
  background: var(--bg-card);
  border: 2px solid rgba(26, 30, 34, 0.22);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
}

.results-top {
  padding: 32px 28px 24px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--teal-pale) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.results-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.results-total {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold) 0%, var(--ember) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.results-sub {
  font-size: 12px;
  color: var(--text-dim);
}

/* BREAKDOWN */
.breakdown-list {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.breakdown-row:last-child { border-bottom: none; }
.breakdown-row:hover { color: var(--text); }

.breakdown-row strong {
  font-weight: 500;
  color: var(--text);
}

/* TIP BOX */
.tip-box {
  margin: 0 20px 20px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: var(--gold-pale);
  border: 1px solid rgba(212, 160, 23, 0.3);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

.tip-icon { font-size: 18px; flex-shrink: 0; margin-top: -1px; }

/* SIGNUP */
.signup-block {
  margin: 0 20px 20px;
  padding: 20px 18px;
  border-radius: var(--r-md);
  background: var(--teal-pale);
  border: 1px solid rgba(10, 95, 82, 0.15);
}

.signup-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 6px;
}

.signup-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  font-weight: 400;
}

.signup-form {
  display: flex;
  gap: 8px;
}

input.email-input {
  flex: 1;
  font-size: 14px;
  padding: 10px 13px;
  border-radius: var(--r-sm);
  min-width: 0;
}

.gold-btn {
  padding: 10px 16px;
  border-radius: var(--r-sm);
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.gold-btn:hover { opacity: 0.88; }

.signup-fine {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-dim);
}

/* FOOTNOTE */
.results-fine {
  padding: 14px 24px 18px;
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.5;
  text-align: center;
}

/* ══════════════════════════
   FOOTER
══════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background: var(--bg-warm);
  color: var(--text-dim);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.footer-dot { opacity: 0.4; }
.footer-link { color: var(--teal); text-decoration: none; }
.footer-link:hover { text-decoration: underline; }

/* ══════════════════════════
   ANIMATIONS
══════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow  { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
.hero-title    { animation: fadeUp 0.7s ease both; animation-delay: 0.2s; }
.hero-sub      { animation: fadeUp 0.7s ease both; animation-delay: 0.32s; }
.hero-tags     { animation: fadeUp 0.7s ease both; animation-delay: 0.44s; }

.results-total {
  transition: transform 0.15s cubic-bezier(.34,1.56,.64,1), color 0.2s;
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 960px) {
  .main-grid {
    grid-template-columns: 1fr;
    padding-top: 32px;
  }
  .results-col {
    position: static;
    order: -1;
  }
  .fete-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* Hero */
  .hero { padding: 52px 0 36px; }
  .hero-title { font-size: clamp(34px, 9vw, 48px); }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-tags { gap: 8px; }
  .cat-pill { font-size: 12px; padding: 7px 14px; }

  /* Header */
  .pill-btn { font-size: 12px; padding: 7px 12px; }
  .brand-name { font-size: 16px; }

  /* Countdown */
  .countdown-bar { padding: 22px 16px; border-radius: var(--r-md); gap: 10px; }
  .cd-num { font-size: 30px; }
  .cd-unit { min-width: 44px; }
  .cd-sep { font-size: 22px; }
  .countdown-label { font-size: 9px; letter-spacing: 0.18em; }
  .countdown-date { font-size: 11px; }

  /* Timeline */
  .timeline-wrap { padding: 20px 16px 18px; border-radius: var(--r-md); }
  .tl-step { min-width: 90px; }
  .tl-task { font-size: 11px; }
  .tl-phase { font-size: 9px; }

  /* Form */
  .section-block { padding: 28px 0; }
  .section-title { font-size: 19px; }
  .field-row.two { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
  .cta-btn, .ghost-btn { width: 100%; }

  /* Results */
  .results-top { padding: 22px 16px 16px; }
  .results-total { font-size: 44px; }
  .results-card { border-radius: var(--r-md); }
  .breakdown-list { padding: 14px 16px; }
  .breakdown-row { font-size: 13px; }
  .tip-box { margin: 0 14px 14px; }
  .promo-block { margin: 0 14px 14px; }
  .signup-block { margin: 0 14px 14px; }

  /* Jouvert */
  .jouvert-toggle-row { grid-template-columns: 1fr; }

  /* Mas toggle row */
  .mas-toggle-row { flex-wrap: wrap; gap: 12px; }

  /* SEO */
  .seo-ranges { grid-template-columns: 1fr; }
  .seo-h2 { font-size: 22px; }

  /* FAQ */
  .faq-section { padding: 40px 0; }
}

@media (max-width: 400px) {
  .wrap { padding: 0 16px; }
  .hero-title { font-size: 30px; }
  .countdown-bar { padding: 18px 14px; }
  .cd-num { font-size: 24px; }
  .cd-unit { min-width: 36px; }
  .countdown-label { font-size: 9px; letter-spacing: 0.14em; }
  .countdown-date { font-size: 11px; }
  .header-actions { gap: 6px; }
  .pill-btn { font-size: 11px; padding: 6px 10px; }
}

/* ══════════════════════════
   CATEGORY PILLS (clickable)
══════════════════════════ */
.cat-pill {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(26, 30, 34, 0.28);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.cat-pill:hover,
.cat-pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(176, 122, 0, 0.14);
}

/* ══════════════════════════
   DRAWER OVERLAY
══════════════════════════ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 20, 0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ══════════════════════════
   DRAWER PANEL
══════════════════════════ */
.drawer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 201;
  background: var(--bg-card);
  border-top: 1px solid var(--border-2);
  border-radius: 24px 24px 0 0;
  padding: 0;
  max-height: 82vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -12px 60px rgba(0,0,0,0.12);
}

.drawer.open {
  transform: translateY(0);
}

.drawer::before {
  content: '';
  display: block;
  width: 38px; height: 4px;
  background: var(--border-2);
  border-radius: 2px;
  margin: 14px auto 0;
  flex-shrink: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px 12px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
}

.drawer-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-icon { font-size: 22px; }

.drawer-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0;
}

.drawer-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border-2);
  background: var(--bg-subtle);
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.drawer-close:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.drawer-sub {
  padding: 8px 28px 14px;
  font-size: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ── LISTINGS SCROLL ── */
.drawer-listings {
  overflow-y: auto;
  padding: 8px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  align-content: start;
}

.drawer-listings::-webkit-scrollbar { width: 4px; }
.drawer-listings::-webkit-scrollbar-track { background: transparent; }
.drawer-listings::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }

/* ── LISTING CARD ── */
.listing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  transition: all 0.2s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.listing-card:hover {
  border-color: var(--gold-border);
  background: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(176, 122, 0, 0.08);
}

.listing-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.listing-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.listing-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.listing-price.free-tag {
  color: var(--teal);
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.listing-meta {
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.listing-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.listing-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 2px;
}

.listing-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 4px;
  border: 1px solid;
  width: fit-content;
}

.tag-ai      { color: var(--gold);  border-color: var(--gold-border);          background: var(--gold-pale); }
.tag-budget  { color: var(--teal);  border-color: rgba(10,95,82,0.2);          background: var(--teal-pale); }
.tag-premium { color: var(--coral); border-color: rgba(194,77,65,0.2);         background: rgba(194,77,65,0.06); }
.tag-free    { color: var(--teal);  border-color: rgba(10,95,82,0.15);         background: var(--teal-pale); }
.tag-mid     { color: #6B5A8E;      border-color: rgba(107,90,142,0.25);       background: rgba(107,90,142,0.06);}

/* ── USE THIS PRICE BUTTON ── */
.listing-use-btn {
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--border-2);
  background: transparent;
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
  letter-spacing: 0.02em;
}

.listing-use-btn:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 600px) {
  .drawer-listings {
    grid-template-columns: 1fr;
    padding: 8px 14px 40px;
  }
  .drawer-header { padding: 12px 18px 10px; }
  .drawer-sub { padding: 6px 18px 12px; }
  .drawer { max-height: 88vh; }
}

/* ══════════════════════════
   COUNTDOWN + TIMELINE
══════════════════════════ */
.timeline-section {
  padding: 0 0 48px;
}

/* ── COUNTDOWN BAR ── */
.countdown-bar {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate) 60%, var(--teal-mid) 100%);
  border-radius: var(--r-lg);
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

.countdown-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.08), transparent 65%);
  pointer-events: none;
}

.countdown-label {
  display: block;
  width: 100%;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-align: center;
}

.countdown-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.cd-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: transform 0.1s;
}

.cd-sub {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.cd-sep {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  padding-bottom: 12px;
}

.countdown-date {
  display: block;
  width: 100%;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

/* ── TIMELINE ── */
.timeline-wrap {
  background: var(--bg-card);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 28px 32px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  /* overflow visible on block axis so hover transform isn't clipped,
     but we must NOT set overflow-x hidden here or it kills touch scroll */
}

.timeline-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.timeline-track {
  display: flex;
  gap: 0;
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 8px;
  padding-top: 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch; /* iOS momentum scroll */
  scroll-snap-type: x proximity;
  cursor: grab;
}
.timeline-track:active { cursor: grabbing; }
.timeline-track::-webkit-scrollbar { display: none; }

/* Adjust the connector line offset for the extra padding-top */
.timeline-track::before {
  content: '';
  position: absolute;
  top: 24px; /* 8px padding-top + half of 32px dot = 24px */
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-border), var(--teal-border), rgba(184,74,0,0.25));
  z-index: 0;
}

.tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 110px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform 0.2s;
  scroll-snap-align: center;
  -webkit-tap-highlight-color: transparent;
}

.tl-step:hover { transform: translateY(-3px); }

.tl-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(26, 30, 34, 0.22);
  background: var(--bg-card);
  margin-bottom: 12px;
  transition: all 0.25s;
  flex-shrink: 0;
  position: relative;
}

/* Carnival node — gold */
.tl-step.tl-carnival .tl-dot {
  width: 36px; height: 36px;
  border: 2.5px solid var(--gold);
  background: var(--gold-pale);
  box-shadow: 0 0 0 4px rgba(176,122,0,0.12);
  margin-bottom: 10px;
}

/* Beach cool down — teal */
.tl-step.tl-cooldown .tl-dot {
  width: 36px; height: 36px;
  border: 2.5px solid var(--teal);
  background: var(--teal-pale);
  box-shadow: 0 0 0 4px rgba(0,102,112,0.1);
  margin-bottom: 10px;
}

.tl-step.done .tl-dot {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 12px rgba(0, 102, 112, 0.25);
}
.tl-step.done .tl-dot::after {
  content: '✓';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #fff; font-weight: 700;
}

.tl-step.active .tl-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(176, 122, 0, 0.4);
  animation: pulseDot 2s ease-in-out infinite;
}

.tl-step.upcoming .tl-dot {
  border-color: rgba(26, 30, 34, 0.2);
  background: var(--bg-subtle);
}

.tl-step.selected .tl-dot {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,102,112,0.15);
}

@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 10px rgba(176,122,0,0.25); }
  50%      { box-shadow: 0 0 24px rgba(176,122,0,0.55); }
}

.tl-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.tl-phase {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.tl-task {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.3;
}

.tl-step.tl-carnival .tl-task { color: var(--gold); font-weight: 700; }
.tl-step.tl-cooldown .tl-task { color: var(--teal); font-weight: 700; }

.tl-status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 50px;
  margin-top: 2px;
}

.done-label     { color: var(--teal);     background: var(--teal-pale); }
.active-label   { color: var(--gold);     background: var(--gold-pale); }
.upcoming-label { color: var(--text-dim); background: var(--bg-subtle); }
.carnival-label { color: var(--ember);    background: var(--ember-pale); }

/* ── TIP BOX ── */
.tl-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: var(--teal-pale);
  border: 1px solid var(--teal-border);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  opacity: 0.5;
  transition: opacity 0.3s, border-color 0.3s;
}

.tl-tip-box.visible {
  opacity: 1;
  border-color: rgba(0, 102, 112, 0.3);
}

.tl-tip-icon { font-size: 15px; flex-shrink: 0; }

/* ══════════════════════════
   J'OUVERT SECTION
══════════════════════════ */
.jouvert-toggle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 4px;
}

.jouvert-opt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(26, 30, 34, 0.28);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  font-family: var(--font-body);
}

.jouvert-opt:hover {
  border-color: var(--border-2);
  color: var(--text);
}

.jouvert-opt.active {
  border-color: var(--cyan);
  background: var(--cyan-pale);
  color: var(--text);
}

.jouvert-opt-icon { font-size: 22px; margin-bottom: 2px; }

.jouvert-opt-label {
  font-size: 14px;
  font-weight: 500;
  color: inherit;
}

.jouvert-opt-desc {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.4;
}

.jouvert-opt.active .jouvert-opt-label { color: var(--cyan); }

.jouvert-info-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 15px;
  border-radius: var(--r-sm);
  background: var(--cyan-pale);
  border: 1px solid rgba(0, 122, 132, 0.2);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-top: 12px;
}

.jouvert-info-box.free {
  background: var(--gold-pale);
  border-color: rgba(212, 160, 23, 0.25);
}

.jouvert-info-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

.jouvert-info-box strong { color: var(--text); }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 640px) {
  .countdown-bar {
    padding: 20px 22px;
    gap: 14px;
  }
  .cd-num { font-size: 28px; }
  .timeline-wrap { padding: 18px 14px 14px; }
  .tl-step { min-width: 76px; }
  .tl-task { font-size: 11px; }
  .jouvert-toggle-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   FETES LINEUP (in-form selected list)
══════════════════════════════════════ */
.fetes-lineup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 60px;
  margin-bottom: 16px;
}

.fetes-empty {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  border: 1.5px dashed var(--border-2);
  border-radius: var(--r-md);
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.5;
}
.fetes-empty-icon { font-size: 24px; flex-shrink: 0; }
.fetes-empty p { margin: 0; }

/* Individual lineup row */
.lineup-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  animation: slideIn 0.2s ease;
  flex-wrap: wrap;
}
@keyframes slideIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }

.lineup-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.lineup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lineup-info { min-width: 0; }
.lineup-name {
  font-size: 13px; font-weight: 500;
  color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lineup-meta {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 2px;
}

.lineup-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lineup-price-label {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 3px;
}
.lineup-price-wrap, .lineup-qty-wrap {
  display: flex; flex-direction: column; align-items: center;
}
.lineup-price-input-wrap {
  display: flex; align-items: center; gap: 3px;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-sm);
  padding: 4px 8px;
}
.lineup-currency { font-size: 12px; color: var(--text-muted); }
.lineup-price-input {
  width: 52px; background: none; border: none; outline: none;
  color: var(--text); font-size: 13px; font-weight: 500;
  font-family: var(--font-body); text-align: center;
}
.lineup-free-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; color: var(--teal);
  background: var(--teal-pale);
  padding: 4px 10px; border-radius: 50px;
}

.lineup-qty {
  display: flex; align-items: center; gap: 6px;
}
.lineup-qty-btn {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-subtle); border: 1.5px solid var(--border-2);
  color: var(--text-muted); font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.lineup-qty-btn:hover { background: var(--teal-pale); border-color: var(--teal); color: var(--teal); }
.lineup-qty-num { font-size: 14px; font-weight: 600; color: var(--text); min-width: 16px; text-align: center; }

.lineup-remove {
  width: 26px; height: 26px; border-radius: 50%;
  background: none; border: 1.5px solid transparent;
  color: var(--text-dim); font-size: 11px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; flex-shrink: 0;
}
.lineup-remove:hover { background: rgba(194,77,65,.08); border-color: var(--coral); color: var(--coral); }

/* Browse button */
.fetes-browse-btn {
  width: 100%;
  padding: 13px 20px;
  background: var(--gold-pale);
  border: 1.5px dashed var(--gold-border);
  border-radius: var(--r-md);
  color: var(--gold);
  font-size: 14px; font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  letter-spacing: .01em;
}
.fetes-browse-btn:hover {
  background: rgba(176, 122, 0, 0.1);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.fetes-browse-btn:active { transform: translateY(0); }

/* ══════════════════════════════════════
   FETE DRAWER CARDS (inside drawer)
══════════════════════════════════════ */
.fete-group { margin-bottom: 28px; }
.fete-group:last-child { margin-bottom: 8px; }
.fete-group-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.fete-selectable { cursor: default; }

.listing-name-wrap { flex: 1; min-width: 0; }
.listing-price-col { flex-shrink: 0; text-align: right; }
.listing-price { font-size: 18px; font-weight: 600; color: var(--teal); font-family: var(--font-display); display: block; }
.listing-price-sub { font-size: 10px; font-weight: 400; opacity: .6; font-family: var(--font-body); }

.fete-tt-price {
  font-size: 11px; color: var(--text-dim); margin-top: 4px;
}
.price-confirmed { color: var(--teal); font-weight: 500; }
.price-est       { color: var(--text-dim); font-style: italic; }

.fete-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* Add to lineup button */
.fete-add-btn {
  padding: 8px 16px;
  border-radius: var(--r-sm);
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-border);
  color: var(--gold);
  font-size: 13px; font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.fete-add-btn:hover:not(.added) {
  background: rgba(176, 122, 0, 0.14);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.fete-add-btn.added {
  background: var(--teal-pale);
  border-color: var(--teal);
  color: var(--teal);
}
.fete-free-note {
  font-size: 12px; color: var(--teal); font-weight: 700;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .lineup-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .lineup-right { width: 100%; justify-content: space-between; }
  .lineup-name { font-size: 12px; white-space: normal; }
  .fete-card-footer { flex-direction: column; align-items: flex-start; }
  .fete-add-btn { width: 100%; text-align: center; }
  .listing-price { font-size: 15px; }
  .main-grid { padding-top: 24px; padding-bottom: 60px; }
}

/* ══════════════════════════
   PROMO BLOCK (sidebar)
══════════════════════════ */
.promo-block {
  margin: 0 20px 20px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid var(--gold-border);
  background: linear-gradient(135deg, var(--gold-pale) 0%, #fff 100%);
  position: relative;
}

.promo-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 4px 12px;
  border-radius: 0 0 var(--r-sm) 0;
  position: absolute;
  top: 0;
  left: 0;
}

.promo-content {
  padding: 36px 18px 18px;
}

.promo-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.35;
}

.promo-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.promo-cta {
  display: inline-block;
  padding: 9px 20px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--gold), var(--ember));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.promo-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(176, 122, 0, 0.28);
}

/* ══════════════════════════
   SEO CONTENT SECTION
══════════════════════════ */
.seo-section {
  padding-bottom: 80px;
}

.seo-inner {
  max-width: 800px;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.seo-h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-top: 48px;
  margin-bottom: 16px;
}

.seo-inner > h2.seo-h2:first-child {
  margin-top: 0;
}

.seo-inner p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-weight: 400;
}

.seo-inner p strong {
  font-weight: 700;
  color: var(--text);
}

.seo-inner p em {
  font-style: italic;
  color: var(--teal);
}

.seo-ranges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px;
}

.seo-range-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
}

.seo-range-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.seo-range-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.2;
}

.seo-range-value span {
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text-dim);
  font-weight: 300;
  display: block;
  margin-top: 2px;
}

.seo-range-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
}

.seo-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.seo-links a {
  color: var(--gold);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.seo-links a::before {
  content: '→';
  font-size: 13px;
  opacity: 0.6;
}

.seo-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .seo-ranges { grid-template-columns: 1fr; }
  .seo-h2 { font-size: 24px; }
}
.last-updated {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-dim);
}

.preset-row {
  display:flex;
  gap:10px;
  margin-bottom:30px;
  flex-wrap:wrap;
}

.preset-btn {
  padding:8px 18px;
  border-radius:50px;
  border:1px solid var(--border-2);
  background:#fff;
  cursor:pointer;
  font-size:13px;
}

.preset-btn:hover {
  border-color:var(--gold);
  color:var(--gold);
}

.results-emotional {
  font-size:14px;
  color:var(--text-muted);
  margin-top:8px;
}

.mistakes-box {
  padding:18px;
  border-top:1px solid var(--border);
  font-size:13px;
}

.mistakes-box ul {
  margin-top:8px;
  padding-left:18px;
}

.trust-signals {
  font-size:11px;
  color:var(--text-dim);
  padding:16px 20px;
  text-align:center;
}

/* ══════════════════════════
   FAQ ACCORDION
   GoPetranelle editorial style
══════════════════════════ */
.faq-section {
  padding: 64px 0 80px;
}

.faq-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  line-height: 1.2;
}

.faq-section details {
  border-bottom: 1px solid var(--border);
  margin: 0;
  padding: 0;
}

.faq-section details:first-of-type {
  border-top: 1px solid var(--border);
}

.faq-section details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.faq-section details summary::-webkit-details-marker { display: none; }

.faq-section details summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease, color 0.2s;
  display: inline-block;
  width: 24px;
  text-align: center;
}

.faq-section details[open] summary::after {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-section details summary:hover { color: var(--teal); }

.faq-section details p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 0 4px 22px;
  margin: 0;
  font-weight: 400;
  animation: faqFadeIn 0.22s ease both;
}

.faq-section details strong {
  color: var(--text);
  font-weight: 600;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .faq-section { padding: 48px 0 60px; }
  .faq-section details summary { font-size: 14px; padding: 18px 4px; }
  .faq-section details p { font-size: 13.5px; }
}