/* ─── EMTIAZ CLUB — One-page site
   Direction artistique : Navy + Doré + Sand.
   Inspiré de privilee.ae, différenciateur : pas illimité, choisi avec soin.
   ──────────────────────────────────────────── */

:root {
  /* Palette */
  --navy:        #0A1228;
  --navy-soft:   #1C2E4A;
  --navy-deep:   #050A18;
  --gold:        #D4AF37;
  --gold-deep:   #B8860B;
  --gold-soft:   #E8C97A;
  --sand:        #F7F5F0;
  --sand-warm:   #F0EBE0;
  --cream:       #FAFAF8;
  --border:      #EDE9DE;
  --text:        #1F2937;
  --text-muted:  #6B7280;
  --text-subtle: #9CA3AF;
  --white:       #FFFFFF;

  /* Typo */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Espacement */
  --section-py: clamp(72px, 10vw, 128px);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── Brand marks ─────────────────────────────────────── */
.brand-mark {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
}
.brand-mark--gold { color: var(--gold); }
.brand-mark--lg {
  font-size: 22px;
  display: inline-block;
  color: var(--sand);
}

/* ─── Boutons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--navy);
}
.btn--primary:hover {
  background: var(--navy-deep);
  color: var(--gold-soft);
  transform: translateY(-1px);
  opacity: 1;
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--gold);
  opacity: 1;
}

/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.is-scrolled {
  background: rgba(247, 245, 240, 0.95);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav__brand {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.3px;
}
.nav__links a:hover { color: var(--gold-deep); opacity: 1; }
.nav__cta { padding: 10px 22px; font-size: 12px; }

.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav__burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--navy); margin: 0 auto;
  transition: transform .2s, opacity .2s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--sand);
  overflow: hidden;
  padding: clamp(96px, 16vw, 160px) 0 clamp(96px, 14vw, 140px);
  isolation: isolate;
}

/* ─── Diaporama de fond (piscines, beach club, gym, padel, restaurant) ─── */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease-in-out, transform 7s ease-out;
  will-change: opacity, transform;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
/* Voile sombre pour garder le texte lisible par-dessus les images */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(10, 18, 40, 0.42) 0%, rgba(5, 10, 24, 0.62) 100%),
    linear-gradient(90deg, rgba(5, 10, 24, 0.22) 0%, transparent 40%, transparent 60%, rgba(5, 10, 24, 0.22) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: opacity 1.6s ease-in-out; transform: none; }
  .hero__slide.is-active { transform: none; }
}
.hero__halo {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 120%;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(212,175,55,0.18) 0%, transparent 60%),
    radial-gradient(50% 40% at 10% 60%, rgba(212,175,55,0.10) 0%, transparent 70%);
  z-index: -1;
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  z-index: -1;
  pointer-events: none;
}
.hero__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.02;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero__lede {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: rgba(247,245,240,0.78);
  margin: 0 auto 36px;
  max-width: 640px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}
.hero__ctas .btn--ghost {
  border-color: rgba(247,245,240,0.4);
  color: var(--sand);
}
.hero__ctas .btn--ghost:hover {
  background: var(--sand);
  color: var(--navy);
  border-color: var(--sand);
}
.hero__diff {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.55);
}
.diff-pill { color: var(--gold-soft); }
.diff-sep { color: rgba(212,175,55,0.4); }

/* ─── STATS ────────────────────────────────────────────── */
.stats {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 8px;
}
.stat__num span {
  font-size: 0.6em;
  color: var(--gold);
  margin-left: 2px;
}
.stat__lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── SECTIONS génériques ─────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--navy);
  color: var(--sand);
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.section--dark .kicker, .kicker--light { color: var(--gold); }
.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.section--dark .section__title { color: var(--sand); }
.section__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.section__sub--light, .section--dark .section__sub {
  color: rgba(247,245,240,0.7);
}
.section__head--light .section__title { color: var(--sand); }

/* ─── WHY (concept) ───────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10,18,40,0.06);
  border-color: var(--gold-soft);
}
.why-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--sand-warm);
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.why-card__icon svg { width: 22px; height: 22px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--navy);
}
.why-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Catégories ──────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: background .2s, transform .2s, border-color .2s;
}
.cat-card:hover {
  background: var(--white);
  transform: translateY(-2px);
  border-color: var(--gold-soft);
}
.cat-card__icon {
  width: 36px; height: 36px;
  margin: 0 auto 14px;
  color: var(--gold-deep);
}
.cat-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--navy);
}
.cat-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ─── Lieux phares ────────────────────────────────────── */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.venue {
  background: var(--navy-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.15);
  transition: transform .25s, border-color .25s;
}
.venue:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.5);
}
.venue__cover {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.venue__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,18,40,0.6) 100%);
}
/* Couvertures dégradées (visuels temporaires) */
.venue__cover--1 { background: linear-gradient(135deg, #1B3A57 0%, #0A1228 60%, #6B8FAD 100%); }
.venue__cover--2 { background: linear-gradient(135deg, #B8860B 0%, #1C2E4A 70%); }
.venue__cover--3 { background: linear-gradient(135deg, #2D4A6B 0%, #D4AF37 100%); }
.venue__cover--4 { background: linear-gradient(135deg, #0A1228 0%, #4A6B8C 50%, #D4AF37 100%); }

.venue__body { padding: 20px 22px 24px; color: var(--sand); }
.venue__zone {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.venue__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 6px 0 10px;
  color: var(--sand);
}
.venue__desc {
  font-size: 13px;
  color: rgba(247,245,240,0.7);
  line-height: 1.55;
  margin: 0 0 14px;
}
.venue__cost {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ─── Steps ───────────────────────────────────────────── */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  text-align: center;
  position: relative;
}
.step__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--navy);
}
.step p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Plans ───────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(10,18,40,0.06);
}
.plan--featured {
  background: var(--navy);
  color: var(--sand);
  border-color: var(--gold);
  transform: scale(1.02);
}
.plan--featured:hover { transform: scale(1.02) translateY(-3px); }
.plan__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.plan__name {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 18px;
}
.plan--featured .plan__name { color: var(--gold); }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.plan__amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  color: var(--navy);
}
.plan--featured .plan__amount { color: var(--sand); }
.plan__currency {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.plan--featured .plan__currency { color: rgba(247,245,240,0.6); }
.plan__period {
  font-size: 13px;
  color: var(--text-subtle);
}
.plan--featured .plan__period { color: rgba(247,245,240,0.55); }
.plan__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-deep);
  margin: 8px 0 28px;
}
.plan--featured .plan__tagline { color: var(--gold-soft); }
.plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.plan__features li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}
.plan__features li:first-child { border-top: 0; }
.plan__features li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 18px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.plan__features li.dim { color: var(--text-subtle); }
.plan__features li.dim::before { background: var(--text-subtle); }
.plan--featured .plan__features li {
  border-top-color: rgba(212,175,55,0.18);
  color: rgba(247,245,240,0.85);
}
.plan--featured .plan__features li.dim { color: rgba(247,245,240,0.4); }

.plan__cta { width: 100%; }
.plan--featured .plan__cta.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.plan--featured .plan__cta.btn--primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--navy);
}

/* Plans extras */
.plans-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.extra-card {
  background: var(--sand-warm);
  border-radius: var(--r-lg);
  padding: 28px;
  border-left: 3px solid var(--gold);
}
.extra-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 6px 0 8px;
  color: var(--navy);
}
.extra-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── App CTA ─────────────────────────────────────────── */
.section--app .container { position: relative; }
.app-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}
.app-cta__text .section__head { text-align: left; margin-bottom: 32px; max-width: none; }
.app-cta__badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sand);
  color: var(--navy);
  padding: 12px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  border: 1px solid rgba(247,245,240,0.1);
}
.app-badge svg { width: 22px; height: 22px; }
.app-badge span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.app-badge small { font-size: 10px; opacity: 0.6; font-weight: 500; }
.app-badge strong { font-size: 15px; }

/* Mockup phone */
.app-cta__mock { display: flex; justify-content: center; }
.phone {
  width: 240px;
  height: 480px;
  background: var(--navy-deep);
  border-radius: 36px;
  border: 4px solid #1B1B1B;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.15);
}
.phone__screen {
  background: var(--sand);
  border-radius: 22px;
  height: 100%;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone__brand {
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--navy);
  margin-bottom: 8px;
}
.phone__card {
  background: var(--white);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phone__card--alt {
  background: var(--navy);
  color: var(--sand);
  border-color: var(--navy);
}
.phone__card strong {
  font-family: var(--font-display);
  font-size: 14px;
  color: inherit;
  line-height: 1.2;
}
.phone__card--alt strong { color: var(--sand); }
.phone__zone {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.phone__card--alt .phone__zone { color: var(--gold); }
.phone__cost {
  align-self: flex-start;
  margin-top: 4px;
  font-size: 10px;
  background: var(--sand-warm);
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 600;
}
.phone__card--alt .phone__cost {
  background: rgba(212,175,55,0.2);
  color: var(--gold);
}
.phone__wallet {
  margin-top: auto;
  padding: 12px;
  background: var(--navy);
  border-radius: 12px;
  color: var(--sand);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11px;
}
.phone__wallet strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq__item summary {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold-deep);
  transition: transform .2s;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}

/* ─── Final CTA ───────────────────────────────────────── */
.section--final {
  background:
    radial-gradient(60% 80% at 50% 20%, rgba(212,175,55,0.12) 0%, transparent 70%),
    var(--navy);
  text-align: center;
  padding: var(--section-py) 0;
}
.final__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--sand);
  margin: 0 0 14px;
}
.final__sub {
  font-size: 16px;
  color: rgba(247,245,240,0.7);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.newsletter {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter input {
  flex: 1;
  min-width: 220px;
  background: rgba(247,245,240,0.06);
  border: 1px solid rgba(247,245,240,0.18);
  border-radius: 999px;
  padding: 14px 22px;
  color: var(--sand);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.newsletter input::placeholder { color: rgba(247,245,240,0.4); }
.newsletter input:focus {
  border-color: var(--gold);
  background: rgba(247,245,240,0.1);
}
.newsletter .btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.newsletter .btn--primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}
.final__msg {
  min-height: 20px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--gold-soft);
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: rgba(247,245,240,0.7);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand p {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(247,245,240,0.55);
  font-family: var(--font-display);
  font-style: italic;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 13px;
  color: rgba(247,245,240,0.65);
}
.footer__col a:hover { color: var(--gold); opacity: 1; }
.footer__base {
  margin-top: 56px;
  border-top: 1px solid rgba(247,245,240,0.08);
  padding: 24px 0;
}
.footer__base-inner {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(247,245,240,0.45);
  letter-spacing: 0.1em;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: var(--sand);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 18px;
  }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .why-grid, .cat-grid, .venues-grid, .steps, .plans-grid, .plans-extra {
    grid-template-columns: 1fr;
  }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .venues-grid { grid-template-columns: repeat(2, 1fr); }

  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-3px); }

  .app-cta { grid-template-columns: 1fr; }
  .app-cta__text .section__head { text-align: center; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__base-inner { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 560px) {
  .cat-grid, .venues-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(40px, 12vw, 64px); }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .section__head { margin-bottom: 44px; }
}
