/* =============================================================================
   La Veillée — feuille de style du teaser
   Charte : bleu nuit #0A2540 · bleu accent #1A365D · or sobre #C9A961
   Titres patrimoniaux en Georgia serif · UI en Inter / système
   « Car nous voulons être au plus proche de vous. »
   ========================================================================== */

:root {
  --navy:        #0A2540;
  --navy-accent: #1A365D;
  --navy-deep:   #061829;
  --gold:        #C9A961;
  --gold-light:  #E0C98C;
  --gold-soft:   #F3EBD6;

  --cream:       #FBFAF7;
  --cream-deep:  #F4F0E8;
  --paper:       #FFFFFF;
  --ink:         #15233A;
  --muted:       #5C6B80;
  --line:        #E4DECF;
  --line-cool:   #DfE4EC;

  --success:     #3E7A4E;
  --danger:      #A23E2F;

  --serif: Georgia, "Times New Roman", "Iowan Old Style", Cambria, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1120px;
  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(10,37,64,.06), 0 4px 14px rgba(10,37,64,.06);
  --shadow-md: 0 8px 30px rgba(10,37,64,.10);
  --shadow-lg: 0 24px 60px rgba(10,37,64,.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--navy); line-height: 1.12; letter-spacing: -.01em; margin: 0 0 .4em; }

p { margin: 0 0 1.1em; }

a { color: var(--navy-accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

img, svg { max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 14px;
}

/* ---------- Boutons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy-deep); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--navy-accent); color: #fff; }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.35); color: var(--cream); }
.btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
.btn-ghost-dark { background: transparent; border-color: var(--line-cool); color: var(--navy); }
.btn-ghost-dark:hover { background: var(--cream-deep); color: var(--navy); }

/* ---------- En-tête -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,247,.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand svg { height: 38px; width: auto; display: block; }
.brand .name { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--navy); letter-spacing: .01em; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a.navlink { font-size: 15px; font-weight: 500; color: var(--navy-accent); }
.nav a.navlink:hover { color: var(--gold); }
.menu-toggle { display: none; }

/* ---------- Hero ----------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 700px at 78% -10%, rgba(201,169,97,.16), transparent 60%),
    radial-gradient(900px 600px at 10% 110%, rgba(26,54,93,.55), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
}
.hero::after {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 30px 30px; pointer-events:none;
}
.hero .container { position: relative; z-index: 1; padding-top: 96px; padding-bottom: 104px; }
.hero .candle { margin: 0 auto 30px; display: block; height: 88px; }
.hero h1 { color: var(--cream); font-size: clamp(38px, 6vw, 68px); max-width: 16ch; margin-inline: auto; text-align: center; }
.hero h1 .accent { color: var(--gold-light); }
.hero .devise {
  text-align: center; max-width: 40ch; margin: 22px auto 0;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(19px, 2.4vw, 24px); color: rgba(251,250,247,.9);
}
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.hero .reassure { text-align:center; margin-top: 42px; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(251,250,247,.62); }

/* ---------- Sections génériques ------------------------------------------- */
section { padding: 84px 0; }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-deep  { background: var(--cream-deep); }
.section-navy  { background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--cream); }
.section-navy h2, .section-navy h3 { color: var(--cream); }
.section-head { max-width: 60ch; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p { color: var(--muted); font-size: 18px; }
.section-navy .section-head p { color: rgba(251,250,247,.78); }

/* ---------- Piliers -------------------------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  color: inherit;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.pillar .glyph { width: 52px; height: 52px; margin-bottom: 18px; color: var(--gold); }
.pillar h3 { font-size: 25px; }
.pillar .role { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.pillar p { color: var(--muted); font-size: 15.5px; }
.pillar .more { margin-top: auto; padding-top: 16px; font-weight: 600; font-size: 14.5px; color: var(--navy-accent); }
.pillar:hover .more { color: var(--gold); }

/* ---------- Pourquoi (différenciation) ------------------------------------ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card h3 { font-size: 22px; margin-bottom: 6px; }
.why-card .vs { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display:block; }
.why-card p { color: var(--muted); font-size: 16px; }
.section-navy .why-card p { color: rgba(251,250,247,.8); }

/* ---------- Formulaire d'inscription -------------------------------------- */
.join-wrap { max-width: 720px; margin: 0 auto; }
.join-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 24px; padding: 40px; box-shadow: var(--shadow-lg);
}
.join-card .count-pill {
  display: inline-flex; align-items:center; gap: 8px;
  background: var(--gold-soft); color: var(--navy);
  border: 1px solid var(--gold); border-radius: 999px;
  font-size: 13px; font-weight: 600; padding: 7px 15px; margin-bottom: 18px;
}
.join-card .count-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field label .opt { color: var(--muted); font-weight: 500; }
.field input, .field select {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line-cool); border-radius: 12px;
  padding: 13px 15px; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,97,.18); background: #fff; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); margin: 4px 0 20px; }
.consent input { margin-top: 3px; }
.join-card .submit { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }
.form-msg { margin-top: 14px; font-size: 14.5px; text-align: center; min-height: 1.2em; }
.form-msg.err { color: var(--danger); }
.form-msg.ok { color: var(--success); }
.legal-fine { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 16px; }

/* ---------- Tableau des paliers (programme fidélité) ---------------------- */
.tier-table { width: 100%; border-collapse: collapse; margin: 8px 0 4px; font-size: 14.5px; }
.tier-table th, .tier-table td { padding: 9px 12px; text-align: left; border-bottom: 1px solid var(--line); }
.tier-table th { font-family: var(--sans); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.tier-table td .disc { font-weight: 700; color: var(--navy); }
.tier-table tr.is-founder td { background: var(--gold-soft); }
.tier-table tr.is-founder td .disc { color: var(--navy-accent); }
.tier-table .badge-f { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--navy-deep); background: var(--gold); border-radius: 999px; padding: 2px 9px; margin-left: 6px; }
.next-place { font-size: 14px; color: var(--navy-accent); font-weight: 600; margin: 2px 0 14px; }
.tier-caption { font-size: 13px; color: var(--muted); margin: 10px 0 0; }

/* ---------- Bloc prix régional -------------------------------------------- */
.price-box { background: linear-gradient(135deg, rgba(10,37,64,.04), rgba(201,169,97,.10)); border: 1px solid var(--gold); border-radius: 16px; padding: 20px 22px; margin: 4px 0 18px; }
.price-now { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-now .price-label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); width: 100%; }
.price-amount { font-family: var(--serif); font-size: 40px; font-weight: 700; color: var(--navy); line-height: 1; }
.price-unit { font-size: 14px; color: var(--muted); }
.price-detail { font-size: 14px; color: var(--muted); margin: 8px 0 12px; }
.price-country { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); }
.price-country span { display: block; margin-bottom: 6px; }
.price-country select { width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink); background: #fff; border: 1px solid var(--line-cool); border-radius: 12px; padding: 12px 14px; }
.price-country select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,97,.18); }
.tier-details { margin: 4px 0 20px; border: 1px solid var(--line); border-radius: 12px; padding: 4px 16px; background: var(--paper); }
.tier-details summary { cursor: pointer; font-weight: 600; font-size: 14.5px; color: var(--navy-accent); padding: 10px 0; }
.tier-details summary:hover { color: var(--gold); }

/* ---------- Tableau des paliers (programme fidélité) ---------------------- */
.tier-table { width: 100%; border-collapse: collapse; margin: 8px 0 4px; font-size: 14px; }
.tier-table th, .tier-table td { padding: 8px 10px; text-align: left; border-bottom: 1px solid var(--line); }
.tier-table th { font-family: var(--sans); font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.tier-table td .disc { font-weight: 700; color: var(--navy); }
.tier-table tr.is-founder td { background: var(--gold-soft); }
.tier-table tr.is-founder td .disc { color: var(--navy-accent); }
.tier-table .badge-f { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--navy-deep); background: var(--gold); border-radius: 999px; padding: 2px 8px; margin-left: 6px; }
.next-place { font-size: 14px; color: var(--navy-accent); font-weight: 600; margin: 2px 0 14px; }
.tier-caption { font-size: 13px; color: var(--muted); margin: 10px 0 4px; }

/* ---------- Roadmap -------------------------------------------------------- */
.roadmap { max-width: 880px; margin: 0 auto; padding: 64px 24px; }
.phase-card { position: relative; background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 16px; padding: 26px 28px; margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.phase-card.done { border-left-color: var(--success); background: linear-gradient(135deg, rgba(62,122,78,.05), var(--paper)); }
.phase-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 14px; margin-bottom: 6px; }
.phase-head .ph-label { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.phase-head .ph-when { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.phase-head .ph-tag { margin-left: auto; font-size: 11.5px; font-weight: 700; padding: 3px 11px; border-radius: 999px; background: var(--cream-deep); color: var(--navy-accent); }
.phase-card.done .ph-tag { background: var(--success); color: #fff; }
.phase-card h3 { font-size: 24px; margin: 2px 0 10px; }
.phase-card p { color: #36465c; font-size: 16px; margin: 0; }
.engagement { max-width: 760px; margin: 8px auto 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--cream); border-radius: 20px; padding: 36px 38px; }
.engagement .eyebrow { color: var(--gold-light); }
.engagement blockquote { margin: 0; font-family: var(--serif); font-size: clamp(19px,2.5vw,24px); line-height: 1.5; color: var(--cream); border-left: 3px solid var(--gold); padding-left: 22px; }

/* ---------- Pied de page --------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: rgba(251,250,247,.72); padding: 56px 0 40px; }
.site-footer .brand .name { color: var(--cream); }
.footer-top { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: flex-start; }
.footer-devise { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--gold-light); max-width: 24ch; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.footer-links a { color: rgba(251,250,247,.72); }
.footer-links a:hover { color: var(--gold-light); }
.footer-legal { margin-top: 22px; font-size: 12.5px; color: rgba(251,250,247,.45); line-height: 1.7; }
.footer-eco { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold-light); line-height: 1.8; }
.footer-eco strong { color: var(--cream); font-style: normal; }
.brand .by { font-family: var(--sans); font-style: normal; font-weight: 500; font-size: .52em; letter-spacing: .04em; color: var(--gold); margin-left: .35em; vertical-align: middle; }

/* ---------- Bandeau "vision" sur les maquettes ---------------------------- */
.vision-banner {
  background: linear-gradient(90deg, rgba(201,169,97,.16), rgba(201,169,97,.06));
  border-bottom: 1px solid var(--gold);
  color: var(--navy);
  text-align: center; padding: 14px 24px; font-size: 14.5px;
}
.vision-banner strong { color: var(--navy-accent); }
.back-link { display:inline-flex; align-items:center; gap:7px; font-weight:600; font-size:14.5px; }

/* ---------- Pages éditoriales (manifeste / légal) ------------------------- */
.editorial { background: var(--cream); }
.editorial .page-hero { background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--cream); padding: 84px 0 72px; text-align: center; }
.editorial .page-hero h1 { color: var(--cream); font-size: clamp(34px, 5vw, 56px); }
.editorial .page-hero .accent { color: var(--gold-light); }
.editorial .page-hero p { color: rgba(251,250,247,.82); max-width: 44ch; margin: 16px auto 0; font-size: 18px; }
.prose { max-width: 760px; margin: 0 auto; padding: 72px 24px; }
.prose h2 { font-size: 30px; margin-top: 48px; }
.prose h3 { font-size: 22px; margin-top: 32px; }
.prose p, .prose li { font-size: 18px; line-height: 1.85; color: #2c3a4f; }
.prose ul { padding-left: 1.2em; }
.prose .verse { display: flex; gap: 26px; margin: 38px 0; }
.prose .verse .num { font-family: var(--serif); font-size: 46px; font-weight: 700; color: var(--gold); line-height: 1; flex-shrink: 0; width: 64px; }
.prose .lead { font-size: 22px; font-family: var(--serif); color: var(--navy); font-style: italic; }
.prose .pullquote { font-family: var(--serif); font-size: clamp(24px,3.5vw,34px); color: var(--navy); line-height: 1.3; border-left: 3px solid var(--gold); padding-left: 24px; margin: 40px 0; }

/* ---------- Maquettes : cadre de présentation ----------------------------- */
.mockup-stage { background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%); padding: 64px 0 80px; }
.mockup-stage .lead-copy { color: var(--cream); max-width: 54ch; }
.mockup-stage .lead-copy h1 { color: var(--cream); font-size: clamp(32px,4.5vw,50px); }
.mockup-stage .lead-copy .eyebrow { color: var(--gold-light); }
.mockup-stage .lead-copy p { color: rgba(251,250,247,.82); font-size: 18px; }
.mockup-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* téléphone */
.phone {
  width: 320px; max-width: 100%; margin: 0 auto;
  background: #0b1f33; border: 10px solid #0b1f33; border-radius: 42px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.phone .screen { background: var(--cream); border-radius: 32px; overflow: hidden; height: 640px; display:flex; flex-direction:column; }
.phone .pbar { background: var(--navy); color: var(--cream); padding: 14px 18px; display:flex; align-items:center; justify-content:space-between; }
.phone .pbar .t { font-family: var(--serif); font-weight:600; font-size: 17px; }
.phone .pbar .ic { width: 22px; height:22px; color: var(--gold-light); }
.phone .pbody { padding: 16px; overflow:hidden; flex: 1; }

.feed-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.feed-item .top { display:flex; align-items:center; gap:9px; margin-bottom: 8px; }
.feed-item .av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--navy-accent)); flex-shrink:0; }
.feed-item .who { font-weight: 700; font-size: 13.5px; color: var(--navy); }
.feed-item .meta { font-size: 11.5px; color: var(--muted); }
.feed-item p { font-size: 13.5px; color: #36465c; margin: 0; }
.feed-item .src { display:inline-block; margin-top:9px; font-size: 10.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color: var(--gold); }

.profile-head { text-align:center; padding: 8px 0 14px; }
.profile-head .pic { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 10px; background: linear-gradient(135deg,var(--gold),var(--navy-accent)); }
.profile-head .pname { font-family: var(--serif); font-size: 20px; font-weight:600; color: var(--navy); }
.profile-head .phandle { font-size: 12.5px; color: var(--muted); }
.profile-stats { display:flex; justify-content:space-around; padding: 12px 0; border-block: 1px solid var(--line); margin: 6px 0 12px; }
.profile-stats b { display:block; font-family: var(--serif); font-size: 19px; color: var(--navy); }
.profile-stats span { font-size: 11px; color: var(--muted); text-transform:uppercase; letter-spacing:.08em; }
.chip { display:inline-block; font-size: 11.5px; padding: 5px 11px; border-radius:999px; background: var(--gold-soft); color: var(--navy); border:1px solid var(--gold); margin: 0 5px 7px 0; }

.circle-card { background:#fff; border:1px solid var(--line); border-radius:14px; padding:13px 14px; margin-bottom:11px; display:flex; align-items:center; gap:11px; box-shadow:var(--shadow-sm); }
.circle-card .ring { width:40px;height:40px;border-radius:50%;border:2px solid var(--gold); flex-shrink:0; background: var(--gold-soft); }
.circle-card .ctitle { font-weight:700; font-size:14px; color:var(--navy); }
.circle-card .cmeta { font-size:11.5px; color:var(--muted); }

/* ---------- Admin staff ---------------------------------------------------- */
.admin-body { background: var(--cream-deep); }
.admin-wrap { max-width: 1000px; margin: 0 auto; padding: 40px 24px; }
.admin-head { display:flex; flex-wrap:wrap; gap: 18px; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.stat-cards { display:grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap:16px; margin-bottom: 28px; }
.stat-card { background:#fff; border:1px solid var(--line); border-radius:16px; padding:22px; box-shadow: var(--shadow-sm); }
.stat-card .num { font-family: var(--serif); font-size: 40px; font-weight:700; color: var(--navy); line-height:1; }
.stat-card .lbl { font-size: 13px; color: var(--muted); margin-top:6px; text-transform:uppercase; letter-spacing:.08em; }
table.adm { width:100%; border-collapse: collapse; background:#fff; border:1px solid var(--line); border-radius:14px; overflow:hidden; }
table.adm th, table.adm td { text-align:left; padding: 11px 14px; font-size: 14px; border-bottom: 1px solid var(--line); }
table.adm th { background: var(--navy); color: var(--cream); font-weight:600; font-size:12.5px; letter-spacing:.05em; text-transform:uppercase; }
table.adm tr:last-child td { border-bottom: none; }
table.adm tr:nth-child(even) td { background: var(--cream); }

/* ---------- Responsive ----------------------------------------------------- */
@media (max-width: 900px) {
  .pillars, .why-grid { grid-template-columns: 1fr; }
  .mockup-split { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr; }
  .nav { display: none; position: absolute; top: 74px; left:0; right:0; flex-direction: column; gap: 0; background: var(--cream); border-bottom: 1px solid var(--line); padding: 8px 0; }
  .nav.open { display: flex; }
  .nav a.navlink, .nav .btn { width: calc(100% - 48px); margin: 4px 24px; padding: 12px 0; }
  .menu-toggle { display: inline-flex; background: none; border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; cursor: pointer; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .join-card, .stat-card { padding: 24px; }
  .hero .container { padding-top: 64px; padding-bottom: 72px; }
}
