/*
 * kokrea.art — Global CSS
 * Éco-conçu : pas de web fonts externes obligatoires, variables CSS,
 * sélecteurs courts, pas de !important, media queries limitées.
 * Accessible : contraste WCAG AA minimum, focus visible, aria-friendly.
 * Auteur : Pierre-Yves Huan | design9 | contact@design9.fr
 */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  /* Palette */
  --c-dark:    #071420;
  --c-mid:     #0d2238;
  --c-ocean:   #1a3a5c;
  --c-sand:    #d4b896;
  --c-salt:    #f0ebe3;
  --c-gold:    #c4923a;
  --c-gold-h:  #a67830;
  --c-green:   #2d5a3d;
  --c-green-l: #4caf82;
  --c-coral:   #c4573a;
  --c-blue:    #3a82c4;
  --c-muted:   rgba(212,184,150,0.45);
  --c-border:  rgba(212,184,150,0.15);
  --c-surface: rgba(13,34,56,0.65);

  /* Typography — system stack éco */
  --f-serif: 'Georgia', 'Times New Roman', serif;
  --f-sans:  system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --f-mono:  'Courier New', monospace;

  /* Optional Google Fonts (chargées conditionnellement dans <head>) */
  --f-display: var(--f-serif);
  --f-body:    var(--f-sans);

  /* Spacing scale */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2.5rem;
  --sp-2xl: 4rem;
  --sp-3xl: 6rem;

  /* Borders */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 24px 56px rgba(0,0,0,0.45);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
  --t-slow: 0.45s ease;

  /* Layout */
  --max-w: 1100px;
  --max-w-text: 680px;
}

/* ── RESET MINIMAL ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--c-dark);
  color: var(--c-salt);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
}
ul, ol { list-style: none; }
table { border-collapse: collapse; }

/* ── ACCESSIBILITÉ ─────────────────────────────────────────── */
/* Focus visible pour la navigation clavier */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-md);
  background: var(--c-gold);
  color: var(--c-dark);
  padding: var(--sp-sm) var(--sp-md);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top var(--t-fast);
}
.skip-link:focus { top: var(--sp-md); }

/* Texte visuellement caché mais accessible aux lecteurs d'écran */
.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;
}

/* Mode sombre système respecté */
@media (prefers-color-scheme: light) {
  /* Le site est nativement dark, on ne force pas le light */
}

/* Mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── TYPOGRAPHIE ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.15;
  color: var(--c-salt);
}
h1 { font-size: clamp(2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { max-width: 70ch; }

.text-display {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--c-sand);
}
.text-label {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.text-muted { color: var(--c-muted); }
.text-gold  { color: var(--c-gold); }
.text-green { color: var(--c-green-l); }
.text-coral { color: var(--c-coral); }
.text-center { text-align: center; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-lg);
}
.container-sm { max-width: var(--max-w-text); margin-inline: auto; padding-inline: var(--sp-lg); }

.section { padding-block: var(--sp-3xl); }
.section-alt {
  background: rgba(240,235,227,0.025);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-md); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: var(--sp-md); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--sp-sm); }
.gap-md { gap: var(--sp-md); }
.gap-lg { gap: var(--sp-lg); }

/* ── NAVIGATION ────────────────────────────────────────────── */
.navbar {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-md) var(--sp-xl);
  border-bottom: 1px solid rgba(212,184,150,0.07);
}
.navbar-brand { text-decoration: none; line-height: 1; }
.navbar-logo {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--c-salt);
}
.navbar-logo span { color: var(--c-gold); }
.navbar-tagline {
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: block;
  margin-top: 0.1rem;
}
.navbar-links { display: flex; align-items: center; gap: var(--sp-lg); }
.navbar-link {
  font-size: 0.63rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--c-muted);
  text-decoration: none;
  transition: color var(--t-base);
}
.navbar-link:hover, .navbar-link:focus-visible { color: var(--c-sand); }
.navbar-link.active { color: var(--c-gold); }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-sm);
  background: none;
  border: none;
  aria-label: "Menu";
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-sand);
  transition: transform var(--t-base), opacity var(--t-base);
  border-radius: 1px;
}

/* ── BOUTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: 0.75rem 1.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--t-base);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-h));
  color: var(--c-dark);
  border-color: transparent;
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196,146,58,0.42);
  filter: brightness(1.06);
}
.btn-secondary {
  background: none;
  border-color: var(--c-border);
  color: var(--c-sand);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.btn-ghost {
  background: none;
  border: none;
  color: var(--c-muted);
  padding: var(--sp-sm);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.btn-ghost:hover { color: var(--c-sand); }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.6rem; letter-spacing: 0.15em; }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.78rem; }
.btn-full { width: 100%; }
.btn-icon { gap: 0.4rem; }
.btn-danger { background: rgba(196,87,58,0.15); border-color: rgba(196,87,58,0.4); color: var(--c-coral); }
.btn-danger:hover { background: rgba(196,87,58,0.28); }
.btn-success { background: rgba(45,90,61,0.2); border-color: rgba(45,90,61,0.5); color: var(--c-green-l); }
.btn:disabled { opacity: 0.42; cursor: not-allowed; transform: none; }

/* ── FORMULAIRES ───────────────────────────────────────────── */
.form-group { margin-bottom: var(--sp-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
.form-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0.35rem;
}
.form-label .required { color: var(--c-coral); margin-left: 2px; }
.form-control {
  width: 100%;
  background: rgba(240,235,227,0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-salt);
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(196,146,58,0.12);
}
.form-control::placeholder { color: rgba(212,184,150,0.28); }
.form-control:invalid:not(:placeholder-shown) { border-color: var(--c-coral); }
textarea.form-control { resize: vertical; min-height: 90px; }
select.form-control option { background: var(--c-mid); }
.form-hint { font-size: 0.65rem; color: var(--c-muted); margin-top: 0.3rem; }
.form-error { font-size: 0.68rem; color: var(--c-coral); margin-top: 0.3rem; }
.form-check { display: flex; align-items: center; gap: var(--sp-sm); cursor: pointer; font-size: 0.82rem; color: var(--c-sand); }
.form-check input[type="checkbox"], .form-check input[type="radio"] {
  accent-color: var(--c-gold);
  width: 1rem; height: 1rem;
  cursor: pointer;
}

/* ── ALERTES ───────────────────────────────────────────────── */
.alert {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}
.alert-icon { flex-shrink: 0; font-size: 1rem; }
.alert-success { background: rgba(76,175,130,0.12); border: 1px solid rgba(76,175,130,0.3); color: var(--c-green-l); }
.alert-error   { background: rgba(196,87,58,0.12);  border: 1px solid rgba(196,87,58,0.3);  color: #f0a080; }
.alert-info    { background: rgba(58,130,196,0.1);   border: 1px solid rgba(58,130,196,0.28); color: #8ab8e8; }
.alert-warning { background: rgba(196,146,58,0.1);   border: 1px solid rgba(196,146,58,0.28); color: var(--c-sand); }

/* ── BADGES ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  border: 1px solid currentColor;
}
.badge-gold    { color: var(--c-gold);    background: rgba(196,146,58,0.1); }
.badge-green   { color: var(--c-green-l); background: rgba(76,175,130,0.1); }
.badge-coral   { color: var(--c-coral);   background: rgba(196,87,58,0.1); }
.badge-blue    { color: var(--c-blue);    background: rgba(58,130,196,0.1); }
.badge-muted   { color: var(--c-muted);   background: rgba(240,235,227,0.05); border-color: var(--c-border); }

/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.card-header {
  padding: var(--sp-md) var(--sp-lg);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}
.card-title { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-sand); }
.card-body  { padding: var(--sp-lg); }
.card-hover { transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base); cursor: pointer; }
.card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(196,146,58,0.38);
  box-shadow: var(--shadow-md);
}

/* ── DIVIDERS ──────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
  margin-block: var(--sp-lg);
}
.divider-gold {
  width: 52px; height: 1px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  margin-block: var(--sp-md);
}

/* ── TABLES ────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; }
.table th {
  font-size: 0.53rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 400;
  padding: 0.6rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  background: rgba(255,255,255,0.02);
}
.table td {
  padding: 0.7rem 1rem;
  font-size: 0.76rem;
  color: rgba(212,184,150,0.82);
  border-bottom: 1px solid rgba(212,184,150,0.05);
  vertical-align: middle;
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td     { background: rgba(212,184,150,0.03); }

/* ── ÉTOILES DE NOTE ───────────────────────────────────────── */
.stars-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 0.25rem; }
.stars-input input { display: none; }
.stars-input label {
  font-size: 2rem;
  cursor: pointer;
  color: rgba(212,184,150,0.18);
  transition: color var(--t-fast);
  -webkit-text-stroke: 1px rgba(212,184,150,0.25);
}
.stars-input input:checked ~ label,
.stars-input label:hover,
.stars-input label:hover ~ label { color: var(--c-gold); -webkit-text-stroke: none; }
.stars-display { display: inline-flex; gap: 2px; }
.stars-display span { font-size: 0.9rem; }
.star-on  { color: var(--c-gold); }
.star-off { color: rgba(212,184,150,0.18); }

/* ── PARALLAX CONTAINER ────────────────────────────────────── */
.parallax-section {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,20,32,0.55) 0%, rgba(7,20,32,0.82) 100%);
  z-index: 1;
}
.parallax-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: var(--sp-3xl) var(--sp-lg);
}
/* Fallback si background-attachment:fixed non supporté (mobile) */
@media (max-width: 768px) {
  .parallax-bg { background-attachment: scroll; inset: 0; }
}

/* ── PWA / INSTALL PROMPT ──────────────────────────────────── */
.install-banner {
  position: fixed;
  bottom: var(--sp-md);
  left: var(--sp-md);
  right: var(--sp-md);
  background: var(--c-mid);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  box-shadow: var(--shadow-lg);
  z-index: 500;
  transform: translateY(120%);
  transition: transform var(--t-slow);
}
.install-banner.visible { transform: translateY(0); }
.install-banner-icon { font-size: 2rem; flex-shrink: 0; }
.install-banner-text { flex: 1; }
.install-banner-text strong { display: block; font-size: 0.85rem; color: var(--c-salt); margin-bottom: 0.2rem; }
.install-banner-text small  { font-size: 0.7rem; color: var(--c-muted); }

/* ── MODAL ─────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--c-mid);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--sp-xl);
  width: 100%;
  max-width: 440px;
  transform: translateY(20px);
  transition: transform var(--t-base);
  position: relative;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  background: none;
  border: none;
  color: var(--c-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: var(--sp-xs);
  transition: color var(--t-fast);
}
.modal-close:hover { color: var(--c-salt); }

/* ── SHARE BUTTONS ─────────────────────────────────────────── */
.share-strip { display: flex; gap: var(--sp-sm); flex-wrap: wrap; align-items: center; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: filter var(--t-fast), transform var(--t-fast);
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.share-btn:hover { filter: brightness(1.12); transform: translateY(-1px); }
.share-fb   { background: #1877f2; color: #fff; }
.share-tw   { background: #000; color: #fff; }
.share-wa   { background: #25d366; color: #fff; }
.share-li   { background: #0077b5; color: #fff; }
.share-copy { background: rgba(212,184,150,0.12); color: var(--c-sand); border: 1px solid var(--c-border); }

/* ── PROGRESS ──────────────────────────────────────────────── */
.progress-track { height: 4px; background: rgba(212,184,150,0.1); border-radius: var(--radius-full); overflow: hidden; }
.progress-fill  { height: 100%; background: linear-gradient(90deg, var(--c-green), var(--c-gold)); border-radius: var(--radius-full); transition: width 0.6s ease; }
.progress-dots  { display: flex; gap: 0.35rem; align-items: center; justify-content: center; padding: 0.5rem; }
.progress-dot   { width: 7px; height: 7px; border-radius: 50%; background: rgba(212,184,150,0.18); transition: all var(--t-base); }
.progress-dot.done    { background: var(--c-green); }
.progress-dot.current { background: var(--c-gold); transform: scale(1.4); }

/* ── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--c-border); background: rgba(7,20,32,0.85); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  padding: var(--sp-3xl) var(--sp-xl) var(--sp-xl);
  max-width: var(--max-w);
  margin-inline: auto;
}
.footer-logo { font-family: var(--f-display); font-size: 1.4rem; font-weight: 300; color: var(--c-salt); margin-bottom: 0.3rem; }
.footer-logo span { color: var(--c-gold); }
.footer-tagline { font-size: 0.62rem; color: var(--c-muted); line-height: 1.6; margin-bottom: var(--sp-md); }
.footer-credit  { font-size: 0.58rem; color: rgba(212,184,150,0.28); line-height: 1.8; }
.footer-credit a { color: rgba(196,146,58,0.45); text-decoration: none; transition: color var(--t-fast); }
.footer-credit a:hover { color: var(--c-gold); }
.footer-col-title { font-size: 0.53rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--c-gold); margin-bottom: var(--sp-md); opacity: 0.85; }
.footer-link { display: block; font-size: 0.68rem; color: var(--c-muted); text-decoration: none; margin-bottom: 0.48rem; transition: color var(--t-fast); }
.footer-link:hover { color: var(--c-sand); }
.footer-bar {
  border-top: 1px solid var(--c-border);
  padding: var(--sp-md) var(--sp-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  max-width: var(--max-w);
  margin-inline: auto;
}
.footer-copy  { font-size: 0.56rem; color: rgba(212,184,150,0.22); }
.footer-legal { display: flex; gap: var(--sp-md); }
.footer-legal a { font-size: 0.56rem; color: rgba(212,184,150,0.22); text-decoration: none; }
.footer-legal a:hover { color: var(--c-muted); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-4  { grid-template-columns: repeat(2,1fr); }
  .grid-3  { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); padding: var(--sp-xl) var(--sp-lg); }
}
@media (max-width: 640px) {
  :root { --sp-3xl: 3rem; --sp-xl: 1.5rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .navbar { padding: var(--sp-md) var(--sp-lg); }
  .navbar-links .navbar-link { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bar  { flex-direction: column; text-align: center; }
  .container   { padding-inline: var(--sp-md); }
  .section     { padding-block: var(--sp-2xl); }
}

/* ── PRINT ─────────────────────────────────────────────────── */
@media print {
  .navbar, .site-footer, .install-banner, .modal-overlay { display: none; }
  body { background: #fff; color: #000; }
  a::after { content: " (" attr(href) ")"; font-size: 0.7em; }
}
