:root {
  --font-display: 'Fraunces', Georgia, serif;
  --font-ui: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --color-blue: #0a5efc;
  --color-purple: #6419d4;
  --color-pink: #d8366b;
  --color-orange: #fe7b01;
  --color-navy: #0b1330;
  --color-navy-soft: #1a2347;
  --color-bg: #ffffff;
  --color-bg-soft: #f6f7fb;
  --color-text: #1c2238;
  --color-text-soft: #5b6178;
  --color-border: #e6e8f0;
  --brand-gradient: linear-gradient(115deg, var(--color-blue) 0%, var(--color-purple) 45%, var(--color-pink) 65%, var(--color-orange) 100%);
  --shadow-card: 0 8px 30px rgba(11, 19, 48, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Display headlines — Fraunces serif, like reference */
.hero h1,
.section-head h2 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
}

.hero h1 { font-weight: 600; }
.section-head h2 { font-weight: 600; }

/* Italic serif emphasis word inside headlines */
.hero h1 em, .section-head h2 em {
  font-style: italic;
  font-weight: 500;
}

/* Gradient-text emphasis word */
.grad-word {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* UI font for eyebrows, badges, labels, buttons */
.eyebrow, .badge, .btn, .nav-links a, .footer-heading, .field label,
.tag, .stat-v2-label, .persona-chip-label { font-family: var(--font-ui); }

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

a { color: inherit; text-decoration: none; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-navy);
}

.brand img { height: 34px; width: auto; }

.brand .ai { color: var(--color-orange); }

.back-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-link:hover { color: var(--color-navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-soft);
}

.nav-links a:hover { color: var(--color-navy); }

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .nav-links .nav-anchor { display: none; }
  .back-link { display: none; }
  .btn-sm { padding: 8px 14px; font-size: 0.78rem; white-space: nowrap; }
  .nav-links { gap: 10px; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 56px;
  background: var(--color-bg-soft);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--brand-gradient);
  opacity: 0.12;
  filter: blur(10px);
}

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

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.badge {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-navy-soft);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--color-navy);
  max-width: 820px;
}

.hero .subtitle {
  font-size: 1.15rem;
  color: var(--color-text-soft);
  max-width: 680px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.reassurance {
  font-size: 0.92rem;
  color: var(--color-text-soft);
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn-primary {
  background: var(--brand-gradient);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(214, 59, 160, 0.25);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(214, 59, 160, 0.32); }

/* All CTA buttons use white text; WhatsApp stays green but white text */
.btn-wa { color: #fff !important; }
.site-header .btn-primary { color: #fff !important; }

.btn-block { width: 100%; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }

.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }

.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-gradient);
  flex: none;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--color-navy);
  margin: 0 0 10px;
}

.section-head p { color: var(--color-text-soft); margin: 0; }

/* ---------- Programme modules ---------- */
.modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.module-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.module-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.module-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--color-navy);
}

.module-card p { margin: 0; color: var(--color-text-soft); font-size: 0.95rem; }

.deliverable {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  padding: 22px 26px;
  border-left: 4px solid var(--color-orange);
}

.deliverable strong { color: var(--color-navy); }

.format-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.format-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px;
  background: #fff;
}

.format-card h3 {
  margin: 0 0 6px;
  color: var(--color-navy);
  font-size: 1.05rem;
}

.format-card p { color: var(--color-text-soft); margin: 0; font-size: 0.93rem; }

/* ---------- Bénéfices & Public ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-block {
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  padding: 26px;
}

.info-block h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--color-navy);
}

.info-block p { margin: 0 0 18px; color: var(--color-text-soft); }

.benefit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }

.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--color-text);
}

.benefit-list .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- Réservation ---------- */
.booking { background: var(--color-bg-soft); }

.booking-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.booking-info {
  background: var(--color-navy);
  background-image: var(--brand-gradient);
  color: #fff;
  padding: 44px 40px;
  position: relative;
}

.booking-info::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 48, 0.55);
}

.booking-info > * { position: relative; z-index: 1; }

.booking-info h2 { margin: 0 0 14px; font-size: 1.5rem; }

.booking-info .reminder {
  font-size: 0.95rem;
  opacity: 0.92;
  margin-bottom: 22px;
}

.booking-info ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 0.92rem; }

.booking-info ul li { display: flex; gap: 8px; align-items: center; opacity: 0.95; }

.booking-form { padding: 44px 40px; }

.form-grid { display: grid; gap: 16px; }

.field { display: grid; gap: 6px; }

.field label { font-size: 0.85rem; font-weight: 600; color: var(--color-navy-soft); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.97rem;
  font-family: inherit;
  color: var(--color-text);
  background: #fff;
  text-overflow: ellipsis;
}

/* Prevent grid/flex children from expanding past the viewport (long <select> options) */
.booking-wrap, .booking-info, .booking-form,
.form-grid, .field-row, .field { min-width: 0; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(139, 59, 240, 0.12);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-confirm {
  display: none;
  text-align: center;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(47, 107, 255, 0.08);
  color: var(--color-navy);
  font-weight: 600;
  margin-top: 16px;
}

.form-confirm.show { display: block; }

/* ---------- Footer (legacy, kept for overrides) ---------- */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 32px 0;
  text-align: center;
  color: var(--color-text-soft);
  font-size: 0.88rem;
}

/* ---------- Rich Footer ---------- */
.footer-rich {
  background: #07101f;
  color: #94a3b8;
  padding: 56px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 14px;
}

.footer-logo .ai { color: #fe7b01; }
.footer-logo img { height: 34px; width: auto; }

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #475569;
  margin: 0 0 20px;
  max-width: 240px;
}

.footer-tools-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-tool-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 9px;
  background: #fff;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  animation: ftoolFloat 5s ease-in-out infinite;
  transition: transform .2s;
}

.footer-tool-logo:nth-child(1) { animation-delay: 0s; }
.footer-tool-logo:nth-child(2) { animation-delay: .7s; }
.footer-tool-logo:nth-child(3) { animation-delay: 1.4s; }
.footer-tool-logo:nth-child(4) { animation-delay: 2.1s; }
.footer-tool-logo:nth-child(5) { animation-delay: 2.8s; }

@keyframes ftoolFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.footer-tool-logo:hover { transform: translateY(-5px) scale(1.18) !important; animation-play-state: paused; }

/* ---------- Moving tool marquee divider ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-ui);
  font-size: 1rem; font-weight: 600;
  color: var(--marquee-color, rgba(255,255,255,0.55));
  white-space: nowrap;
}
.marquee-item img { width: 26px; height: 26px; object-fit: contain; background: #fff; border-radius: 7px; padding: 3px; }
.marquee-item .sep { width: 6px; height: 6px; border-radius: 50%; background: var(--page-primary, #0a5efc); }

/* ---------- Liquid glass utility ---------- */
.glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 20px 50px -24px rgba(0,0,0,0.5);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #e2e8f0;
  margin: 0 0 16px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: #475569;
  padding: 3px 0;
  transition: color .2s, padding-left .2s;
}

.footer-nav a:hover { color: #e2e8f0; padding-left: 4px; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: #475569;
  transition: color .2s;
}

a.footer-contact-item:hover { color: #e2e8f0; }
.footer-contact-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--page-accent, #94a3b8);
}
.footer-contact-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
a.footer-contact-item:hover .footer-contact-icon { background: var(--page-primary, #0a5efc); color: #fff; }

.footer-map-wrap iframe {
  width: 100%;
  height: 168px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  filter: grayscale(1) contrast(1.05) brightness(1.05);
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.81rem;
  color: #1e293b;
}

.footer-bottom a { color: #334155; transition: color .2s; }
.footer-bottom a:hover { color: #64748b; }

@media (max-width: 940px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-brand-col .footer-desc { max-width: 100%; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---------- Benefits V2 ---------- */
.benefits-v2 {}

.stats-row-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.stat-v2 {
  position: relative;
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,0.02), rgba(255,255,255,0.02)) padding-box,
    linear-gradient(135deg, var(--page-primary, #0a5efc), var(--page-accent, #60a5fa)) border-box;
  border: 1px solid transparent;
  transition: transform .2s, box-shadow .2s;
}

.stat-v2:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -16px var(--page-glow, rgba(10,94,252,0.4)); }

.stat-v2-num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-v2-label {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.65;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.persona-chip {
  position: relative;
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: default;
  overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.persona-chip::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--page-primary, #0a5efc), var(--page-accent, #60a5fa));
  opacity: 0; transition: opacity .2s;
}

.persona-chip:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 14px 34px -14px var(--page-glow, rgba(10,94,252,0.4));
}
.persona-chip:hover::before { opacity: 1; }

.persona-chip-icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--page-primary, #0a5efc), var(--page-accent, #60a5fa));
  box-shadow: 0 8px 20px -8px var(--page-glow, rgba(10,94,252,0.5));
}
.persona-chip-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.8; }
.persona-chip-label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em; }

/* Inline SVG icon helpers */
.ico { display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ico-16 { width: 16px; height: 16px; }
.ico-18 { width: 18px; height: 18px; }
.ico-20 { width: 20px; height: 20px; }
.ico-24 { width: 24px; height: 24px; }

.bcard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.bcard {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: var(--radius-sm);
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform .2s, border-color .2s;
}

.bcard:hover { transform: translateY(-2px); border-color: var(--page-primary, #0a5efc); }

.bcard-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--page-primary, #0a5efc), var(--page-accent, #60a5fa));
}

.bcard-text {
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .bcard-grid { grid-template-columns: 1fr; }
  .stats-row-v2 { gap: 10px; }
  .stat-v2-num { font-size: 1.6rem; }
}

@media (max-width: 440px) {
  .stats-row-v2 { grid-template-columns: 1fr; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Home grid ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.program-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.program-card:hover { transform: translateY(-4px); }

.program-card .tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-orange);
}

.program-card h3 { margin: 0; color: var(--color-navy); font-size: 1.2rem; }

.program-card p { margin: 0; color: var(--color-text-soft); font-size: 0.93rem; flex-grow: 1; }

.program-card .cta { font-weight: 700; color: var(--color-purple); font-size: 0.92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .modules, .format-split, .benefits-grid { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
}

/* Compact mobile — reduce vertical length on phones */
@media (max-width: 640px) {
  section { padding: 44px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 1.45rem; }
  .modules { gap: 12px; margin-bottom: 22px; }
  .module-card { padding: 18px 20px; }
  .deliverable { padding: 18px 20px; }
  .persona-grid { gap: 10px; }
  .persona-chip { padding: 15px 10px; }
  .persona-chip-icon { width: 38px; height: 38px; margin-bottom: 8px; }
  .bcard-grid { gap: 10px; }
  .bcard { padding: 13px 14px; }
  .livrables-grid { gap: 9px; }
  .livrable-item { padding: 12px 15px; }
  .stats-row-v2 { gap: 10px; margin-bottom: 26px; }
  .stat-v2 { padding: 20px 14px; }
  .marquee { padding: 15px 0; }
  .marquee-track { gap: 40px; }
  .booking-info, .booking-form { padding: 30px 24px; }
}

@media (max-width: 480px) {
  .site-header .container { padding: 0 14px; gap: 8px; }
  .brand { font-size: 1rem; min-width: 0; }
  .brand img { height: 26px; }
  .nav-links { min-width: 0; }
  .site-header .btn-sm { font-size: 0.74rem; padding: 8px 12px; white-space: nowrap; }
}
