/* Maximum Didgeridoo — site vitrine. Palette reprise du thème "Or & Nuit" de l'app. */
:root {
  --bg: #0e0e10;
  --surface: #16161a;
  --surface-2: #1e1e24;
  --border: #2b2b33;
  --text: #f4f1ea;
  --muted: #a09a8c;
  --gold: #d4af37;
  --gold-soft: #3a3016;
  --accent: #e8c974;
  --on-gold: #14110a;
  --shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.7);
  --wrap: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Outfit, system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; line-height: 1.15; margin: 0 0 0.5em; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); text-wrap: balance; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 0.4em; text-wrap: balance; }
h3 { font-size: 1.65rem; }
h4 { font-size: 1.3rem; }
p, li, dd, figcaption { text-wrap: pretty; }

/* Textes de contenu justifiés — uniquement les vrais paragraphes.
   Les listes et les colonnes étroites (installation, puces) restent au fil de
   l'eau : justifiées, elles se creusaient de trous entre les mots. */
.card > p, .mini p, .author-text p, .stores-block p, .callout p,
.trial p, .teacher-price p, .video-body p, .section-lead {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
p { margin: 0 0 1.1em; }
strong { font-weight: 500; color: var(--text); }
em { font-style: italic; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }
.center { text-align: center; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 32px;
  padding: 14px 28px;
  background: rgba(14, 14, 16, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(14, 14, 16, 0.94); }
.nav-brand { display: flex; align-items: center; gap: 11px; font-family: "Cormorant Garamond", serif; font-size: 1.25rem; letter-spacing: 0.02em; white-space: nowrap; }
.nav-brand img { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; }
.nav-brand em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 26px; margin-left: auto; font-size: 0.93rem; color: var(--muted); }
.nav-links a { position: relative; padding: 4px 0; transition: color 0.2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.25s; }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.nav-links + .nav-right { margin-left: 0; }

/* Bouton burger — visible seulement sous 980px (voir plus bas) */
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 38px; padding: 0 9px; background: none; border: 1px solid var(--border); border-radius: 999px; cursor: pointer; order: 3; }
.burger span { display: block; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
.nav.open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .burger span:nth-child(2) { opacity: 0; }
.nav.open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Sélecteur de langue ---------- */
.lang { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid var(--border); color: var(--muted);
  font: inherit; font-size: 0.85rem; letter-spacing: 0.06em;
  padding: 7px 12px; border-radius: 999px; cursor: pointer; transition: 0.2s;
}
.lang-btn:hover { border-color: var(--gold); color: var(--text); }
.flag { display: inline-block; vertical-align: middle; width: 20px; height: 13px; border-radius: 2px; margin-right: 8px; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12); }
.lang-btn [data-lang-current] { display: inline-flex; align-items: center; }
.lang-btn .chev { font-size: 0.7rem; opacity: 0.7; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  min-width: 170px; margin: 0; padding: 6px; list-style: none;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: 0.18s;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu a {
  display: flex; width: 100%; align-items: center; gap: 10px;
  color: var(--muted); font-size: 0.92rem;
  padding: 8px 12px; border-radius: 9px;
}
.lang-menu a:hover { background: var(--surface-2); color: var(--text); }
.lang-menu a[aria-current="page"] { color: var(--gold); }
.lang-menu .code { margin-left: auto; font-size: 0.72rem; letter-spacing: 0.08em; opacity: 0.6; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 500; letter-spacing: 0.01em; border-radius: 999px;
  padding: 13px 28px; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn-sm { padding: 9px 18px; font-size: 0.9rem; }
.btn-lg { padding: 16px 38px; font-size: 1.02rem; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--accent)); color: var(--on-gold); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(212, 175, 55, 0.55); }
.btn-ghost { border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(40px, 6.5vw, 80px) 0 clamp(45px, 6vw, 70px); overflow: hidden; text-align: center; }
.hero-glow {
  position: absolute; inset: -40% 0 auto 50%; transform: translateX(-50%);
  width: 900px; height: 900px; pointer-events: none;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 62%);
}
.hero-inner { position: relative; max-width: 1040px; }
.emblem { width: clamp(150px, 20vw, 210px); height: auto; margin: 0 auto 30px; }
.eyebrow { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.4em; }
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); max-width: 660px; margin: 0 auto 2.2em; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 0.88rem; color: var(--muted); opacity: 0.8; }

/* ---------- Sections ---------- */
.section { padding: clamp(50px, 5.5vw, 70px) 0; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018) 12%, rgba(255, 255, 255, 0.018) 88%, transparent); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-lead { color: var(--muted); max-width: 640px; font-size: 1.05rem; margin-bottom: 2.2em; }
.big { font-size: clamp(1.25rem, 2.6vw, 1.6rem); font-family: "Cormorant Garamond", serif; color: var(--gold); line-height: 1.4; margin-bottom: 1.2em; }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 34px 32px; transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: rgba(212, 175, 55, 0.4); transform: translateY(-3px); }
.card-lg { padding: 44px 40px; }
.card-num { display: block; font-family: "Cormorant Garamond", serif; font-size: 0.95rem; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 14px; }
.card > p { color: var(--muted); }

.duo { display: grid; grid-template-columns: 1fr 2fr; gap: 26px; }
.roles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; }
.roles .sub { margin-top: 22px; }
.ticks { list-style: none; margin: 18px 0 0; padding: 0; }
.sub { margin: 26px 0 0; font-family: "Cormorant Garamond", serif; font-size: 1.15rem; color: var(--gold); letter-spacing: 0.02em; }
.ticks li { position: relative; padding-left: 30px; margin-bottom: 14px; color: var(--muted); font-size: 0.98rem; }
.ticks li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 720px; margin: 44px auto 0; }
/* Capture tablette : cadre plus fin, format paysage */
.shot.shot-tablet { max-width: 720px; margin: 72px auto 0; }
.tablet {
  padding: 10px; border-radius: 22px;
  background: linear-gradient(160deg, #33333c, #1a1a20 40%, #2a2a32);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.tablet img { width: 100%; height: auto; display: block; border-radius: 14px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08); }
.shot { margin: 0; }
/* Cadre de téléphone. Bordure FINE et coins très arrondis : un cadre épais
   avec une encoche postiche donne tout de suite l'air d'un téléphone d'il y a
   dix ans. Pas de fausse encoche — les captures ont déjà leur barre d'état. */
.phone {
  position: relative; padding: 5px; border-radius: 42px;
  background: linear-gradient(150deg, #3a3a44, #16161b 45%, #2c2c35);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}
/* Reflet le long du bord gauche : ce qui fait lire « verre » plutôt que « boîte ». */
.phone::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(105deg, rgba(255,255,255,0.14), rgba(255,255,255,0) 22%);
}
.phone img { width: 100%; height: auto; display: block; border-radius: 37px; border: 0; box-shadow: none; }
.shot figcaption { margin-top: 16px; font-size: 0.86rem; color: var(--muted); text-align: center; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 26px; }
.mini { padding: 26px 24px; border-radius: 18px; background: var(--surface-2); border: 1px solid var(--border); }
.mini h4 { color: var(--gold); font-size: 1.15rem; margin-bottom: 0.4em; }
.mini p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* ---------- Installation ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.os { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.os h3 { margin: 0; }
.os-icon { display: grid; place-items: center; flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--gold-soft); color: var(--gold); }
.steps ol { margin: 0; padding-left: 1.2em; color: var(--muted); }
.steps li { margin-bottom: 12px; font-size: 0.97rem; }
.req { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--border); font-size: 0.87rem; color: var(--muted); }
.stores-block { margin-top: 70px; padding-top: 60px; border-top: 1px solid var(--border); }
.callout { margin-top: 34px; padding: 28px 32px; border-radius: 18px; border: 1px solid var(--border); border-left: 3px solid var(--gold); background: var(--surface); }
.callout h4 { margin-bottom: 0.4em; }
.callout p { margin: 0; color: var(--muted); }

/* ---------- Tarifs ---------- */
.trial { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding: 20px 28px; border-radius: 16px; background: var(--gold-soft); border: 1px solid rgba(212, 175, 55, 0.32); margin-bottom: 30px; }
.trial p { margin: 0; color: var(--text); }
.pill { flex: none; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); border-radius: 999px; padding: 4px 14px; }
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price { position: relative; padding: 40px 32px; border-radius: 20px; background: var(--surface); border: 1px solid var(--border); text-align: center; transition: 0.3s; }
.price:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, 0.4); }
.price-featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), var(--surface) 55%); box-shadow: var(--shadow); }
.badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--accent)); color: var(--on-gold); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; padding: 5px 16px; border-radius: 999px; white-space: nowrap; }
.price-amount { font-family: "Cormorant Garamond", serif; font-size: 4rem; line-height: 1; color: var(--text); }
.price-amount span { color: var(--gold); font-size: 2.2rem; }
.price-amount small { display: block; font-family: Outfit, sans-serif; font-size: 0.85rem; color: var(--muted); margin-top: 10px; letter-spacing: 0.05em; }
.price-label { margin: 22px 0 8px; font-family: "Cormorant Garamond", serif; font-size: 1.35rem; color: var(--gold); }
.price-desc { color: var(--muted); font-size: 0.93rem; margin: 0; }
.teacher-price { margin-top: 26px; padding: 30px 34px; border-radius: 20px; background: var(--surface-2); border: 1px solid var(--border); }
.teacher-price h4 { color: var(--gold); }
.teacher-price p { margin: 0; color: var(--muted); }
.price-foot { max-width: 940px; margin: 30px auto 0; text-align: center; font-size: 0.87rem; color: var(--muted); }
.price-foot p { margin-bottom: 0.7em; text-wrap: balance; }
.price-foot p:last-child { margin-bottom: 34px; opacity: 0.75; }

/* ---------- Stores ---------- */
.pros { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 14px; }
.pros li { position: relative; padding: 16px 20px 16px 46px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); color: var(--muted); font-size: 0.97rem; }
.pros li::before { content: "✓"; position: absolute; left: 20px; color: var(--gold); }

/* ---------- Vidéos ---------- */
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video { border-radius: 18px; overflow: hidden; background: var(--surface); border: 1px solid var(--border); transition: 0.3s; }
.video:hover { border-color: rgba(212, 175, 55, 0.4); transform: translateY(-3px); }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: var(--surface-2); display: grid; place-items: center; overflow: hidden; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame .play { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); font-size: 1rem; }
.video-body { padding: 20px 22px 24px; }
.video-body h3, .video-body h4 { margin-bottom: 0.35em; font-size: 1.2rem; }
.video-body p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.soon { display: inline-block; margin-top: 12px; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--border); border-radius: 999px; padding: 3px 12px; }

/* ---------- Qui est derrière ---------- */
.author { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: stretch; }
.author-photo { margin: 0; position: relative; }
.author-photo::after { content: ""; position: absolute; inset: -4% -2%; z-index: -1; border-radius: 26px; background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.16), transparent 72%); }
.author-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; border-radius: 20px; border: 1px solid var(--border); box-shadow: var(--shadow), 0 0 70px -24px rgba(212, 175, 55, 0.5); }
.author-text p { color: var(--muted); }
.author-text h2 { margin-bottom: 0.5em; }
.facts { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 24px; padding: 0; }
.facts > div { flex: 1 1 150px; padding: 18px 20px; border-radius: 16px; background: var(--surface); border: 1px solid var(--border); }
.facts dt { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: var(--gold); line-height: 1.1; }
.facts dd { margin: 6px 0 0; font-size: 0.86rem; color: var(--muted); }
.record { font-size: 0.93rem; padding-left: 18px; border-left: 2px solid var(--gold); }
.author-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 820px; margin: 40px auto 0; }
.author-videos .video-frame { border-radius: 14px; border: 1px solid var(--border); }

/* ---------- Final + footer ---------- */
.final { padding: clamp(60px, 8vw, 100px) 0; text-align: center; background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.09), transparent 65%); border-top: 1px solid var(--border); }
.footer { border-top: 1px solid var(--border); background: var(--surface); padding: 54px 0 30px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-tag { color: var(--muted); font-size: 0.92rem; margin: 14px 0 0; }
.footer-links { display: flex; flex-direction: column; gap: 10px; color: var(--muted); font-size: 0.93rem; }
.footer-links a:hover { color: var(--gold); }
.footer-legal { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--muted); opacity: 0.75; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--gold); }

/* Vignette de vidéo : YouTube n'est contacté qu'au clic (aucun cookie avant) */
.ytlite {
  position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
  background: var(--surface-2); border-radius: inherit; overflow: hidden; color: var(--text);
  font: inherit; text-align: left;
}
.ytlite img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s, opacity 0.3s; }
.ytlite:hover img { transform: scale(1.03); opacity: 0.85; }
.ytplay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: rgba(14, 14, 16, 0.72); border: 1px solid var(--gold); color: var(--gold);
  font-size: 1.05rem; padding-left: 3px; transition: background 0.25s, transform 0.25s;
}
.ytlite:hover .ytplay { background: var(--gold); color: var(--on-gold); transform: translate(-50%, -50%) scale(1.08); }
.yttitle {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 10px;
  font-size: 0.82rem; line-height: 1.3;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

/* ---------- Pages juridiques ---------- */
.legal { padding: clamp(50px, 6vw, 80px) 0 clamp(60px, 8vw, 100px); }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 0.3em; }
.legal h2 { font-size: 1.5rem; margin: 2em 0 0.5em; color: var(--gold); }
.legal p { color: var(--muted); }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-maj { font-size: 0.85rem; opacity: 0.7; margin-bottom: 2.5em; }
.legal-nav { margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--border); }
.legal-nav p { margin-bottom: 0.6em; font-size: 0.9rem; }
.legal-nav ul { margin: 0; padding-left: 1.1em; }
.legal-nav li { margin-bottom: 6px; color: var(--muted); }

/* ---------- Apparition au défilement ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .burger { display: flex; }
  .nav { flex-wrap: wrap; gap: 12px; }
  .nav-right { margin-left: auto; order: 2; }
  .nav-links {
    order: 4; display: none; width: 100%; flex-direction: column; gap: 0;
    margin: 0; padding: 8px 0 4px; border-top: 1px solid var(--border); font-size: 1rem;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 12px 2px; }
  .nav-links a::after { display: none; }
  .duo, .steps, .prices, .videos, .roles { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; max-width: 280px; margin-inline: auto; }
  .author { grid-template-columns: 1fr; gap: 34px; }
  .author-photo img { height: auto; }
  .author-videos { grid-template-columns: 1fr; }
.feature-grid { grid-template-columns: 1fr 1fr; }
  .card-lg { padding: 32px 26px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav { padding: 12px 16px; }
.feature-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 15px 26px; width: 100%; }
  .hero-cta { flex-direction: column; }
}
