/* ===========================================================
   Jit Petch Muay Thaï — démo BendeStudio · DA v2
   จิตเพชร = « esprit de diamant ».
   RYTHME PAR ALTERNANCE (leçon Strike Academy) :
   crème chaud dominant → noir en ponctuation (hero, coachs)
   → bandes OR pleines (marquee, CTA) → rouge thaï en accent.
   Typo : Anton massif noir sur clair. Transitions : reveals lignes,
   parallaxe, compteurs, calendrier qui glisse.
   =========================================================== */

:root {
  --creme: #F1EBDC;
  --blanc: #FAF7EF;
  --noir: #131009;
  --noir-2: #1C1810;
  --encre: #1A160E;
  --gris: #6E6553;
  --or: #C9A24B;
  --or-plein: #D9B052;
  --or-vif: #E5C36E;
  --rouge: #B23A2A;
  --ligne: rgba(26,22,14,0.16);
  --ligne-claire: rgba(241,235,220,0.16);
  --ease: cubic-bezier(.22,1,.36,1);
  --display: "Anton", "Arial Narrow", sans-serif;
  --sans: "Inter", system-ui, sans-serif;
  --thai: "Noto Sans Thai", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--creme); color: var(--encre);
  font-family: var(--sans); font-size: 16px; line-height: 1.65;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--or); color: var(--noir); }
h1, h2, h3 { font-family: var(--display); font-weight: 400; margin: 0; text-transform: uppercase; line-height: 0.95; letter-spacing: 0.01em; }
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.thai { font-family: var(--thai); }

/* Grain film léger */
body::after {
  content: ''; position: fixed; inset: -50%; z-index: 999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04; mix-blend-mode: overlay;
}

/* ── Boutons ── */
.btn {
  position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-weight: 700; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 18px 30px; border: 1px solid transparent; cursor: pointer; border-radius: 2px;
  transition: color .35s var(--ease), border-color .35s ease;
}
.btn::before { content: ''; position: absolute; inset: 0; z-index: -1; transform: scaleY(0); transform-origin: bottom; transition: transform .45s var(--ease); }
.btn::after { content: '\2192'; font-size: 14px; letter-spacing: 0; transition: transform .35s var(--ease); }
.btn:hover::after { transform: translateX(4px); }
.btn-or { background: var(--or-plein); color: var(--noir); }
.btn-or::before { background: var(--noir); }
.btn-or:hover { color: var(--creme); }
.btn-or:hover::before { transform: scaleY(1); }
.btn-noir { background: var(--noir); color: var(--creme); }
.btn-noir::before { background: var(--rouge); }
.btn-noir:hover::before { transform: scaleY(1); }
.btn-ghost { background: transparent; border-color: rgba(250,247,239,0.4); color: var(--creme); }
.btn-ghost::before { background: var(--creme); }
.btn-ghost:hover { color: var(--noir); border-color: var(--creme); }
.btn-ghost:hover::before { transform: scaleY(1); }
.btn-line { background: transparent; border-color: var(--encre); color: var(--encre); }
.btn-line::before { background: var(--noir); }
.btn-line:hover { color: var(--creme); }
.btn-line:hover::before { transform: scaleY(1); }

/* ── Nav ── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 0 clamp(18px, 4vw, 44px); height: 82px;
  transition: background .4s ease, box-shadow .4s ease, height .4s ease, color .4s ease;
  color: var(--creme);
}
.nav.solid { background: var(--blanc); color: var(--encre); box-shadow: 0 1px 0 var(--ligne); height: 70px; }
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand b { font-family: var(--display); font-weight: 400; font-size: 23px; letter-spacing: 0.03em; text-transform: uppercase; color: inherit; }
.brand span { font-family: var(--thai); font-size: 15px; color: var(--or); }
.nav.solid .brand span { color: var(--rouge); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); }
.nav-links a.lk { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: inherit; opacity: 0.9; position: relative; white-space: nowrap; }
a.lk::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--or); transition: right .35s var(--ease); }
.nav.solid a.lk::after { background: var(--rouge); }
a.lk:hover::after { right: 0; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta { font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 12px 20px; background: var(--or-plein); color: var(--noir); border-radius: 2px; transition: background .3s ease, color .3s ease; }
.nav-cta:hover { background: var(--noir); color: var(--creme); }
.nav.solid .nav-cta { background: var(--noir); color: var(--creme); }
.nav.solid .nav-cta:hover { background: var(--rouge); }
.nav-ham { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; z-index: 120; }
.nav-ham span { width: 26px; height: 2px; background: currentColor; transition: transform .35s var(--ease), opacity .2s ease; }
.nav-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob { position: fixed; inset: 0; z-index: 110; background: var(--creme); color: var(--encre); display: none; flex-direction: column; justify-content: center; padding: 90px clamp(24px,7vw,48px) 48px; }
.mob.open { display: flex; }
.mob a { font-family: var(--display); font-size: clamp(38px, 10vw, 56px); text-transform: uppercase; padding: 10px 0; border-bottom: 1px solid var(--ligne); line-height: 1.05; }
.mob a:last-child { border-bottom: 0; color: var(--rouge); }

/* ── Hero (sombre : la seule immersion photo plein écran) ── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--noir); color: var(--creme); }
.hero__bg { position: absolute; inset: -6% 0; }
.hero__bg img { width: 100%; height: 112%; object-fit: cover; object-position: center 30%; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,16,9,0.72) 0%, rgba(19,16,9,0.22) 34%, rgba(19,16,9,0.5) 62%, rgba(19,16,9,0.96) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 110px clamp(20px,5vw,56px) clamp(50px, 7vh, 88px); }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--or-vif); margin-bottom: 24px; }
.hero__eyebrow .thai { font-size: 16px; letter-spacing: 0.1em; text-transform: none; }
.hero__eyebrow::before { content: '◆'; font-size: 9px; }
.hero h1 { font-size: clamp(58px, 11.5vw, 176px); color: var(--creme); }
.hero h1 .gold { color: var(--or-plein); }
.hl { display: block; overflow: hidden; padding-bottom: 0.05em; margin-bottom: -0.05em; }
.hl > span { display: block; transform: translateY(110%); transition: transform 1.15s var(--ease); }
.hl:nth-child(2) > span { transition-delay: .1s; }
body.loaded .hl > span { transform: none; }
.hero__eyebrow, .hero__sub, .hero__cta { opacity: 0; transform: translateY(20px); transition: opacity 1s ease, transform 1s var(--ease); }
.hero__sub { transition-delay: .45s; } .hero__cta { transition-delay: .58s; }
body.loaded .hero__eyebrow, body.loaded .hero__sub, body.loaded .hero__cta { opacity: 1; transform: none; }
.hero__sub { max-width: 560px; font-size: clamp(16px, 1.6vw, 18px); line-height: 1.7; color: rgba(241,235,220,0.82); margin: 26px 0 0; }
.hero__sub b { color: var(--creme); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* Strip fiche technique sous le hero : OR plein */
.strip { background: var(--or-plein); color: var(--noir); }
.strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.strip__cell { padding: clamp(20px, 2.6vw, 30px) clamp(18px, 2.4vw, 34px); border-left: 1px solid rgba(19,16,9,0.22); }
.strip__cell:first-child { border-left: 0; }
.strip__cell small { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.65; margin-bottom: 5px; }
.strip__cell b { font-family: var(--display); font-weight: 400; font-size: clamp(17px, 1.9vw, 24px); text-transform: uppercase; letter-spacing: 0.02em; }

/* ── Marquee (noir, contre-point du strip or) ── */
.marq { background: var(--noir); color: var(--creme); overflow: hidden; }
.marq__track { display: flex; width: max-content; animation: marq 38s linear infinite; }
.marq__track > div { display: flex; align-items: center; gap: 30px; padding: 16px 30px 16px 0; }
.marq b { font-family: var(--display); font-weight: 400; font-size: 21px; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
.marq .thai { font-size: 19px; color: var(--or-vif); }
.marq .d { font-size: 10px; color: var(--or); }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Sections ── */
.section { position: relative; padding: clamp(84px, 12vh, 150px) 0; }
.sec-dark { background: var(--noir); color: var(--creme); }
.kicker { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--rouge); margin-bottom: 20px; }
.kicker::before { content: '◆'; font-size: 9px; }
.sec-dark .kicker { color: var(--or-vif); }
.section h2 { font-size: clamp(42px, 6.4vw, 92px); color: var(--encre); }
.sec-dark h2 { color: var(--creme); }
.section h2 .gold { color: var(--or); }
.section h2 .red { color: var(--rouge); }
.sec-dark h2 .gold { color: var(--or-plein); }
.lead { max-width: 540px; font-size: 16.5px; line-height: 1.7; color: var(--gris); margin: 22px 0 0; }
.sec-dark .lead { color: rgba(241,235,220,0.7); }

/* ── Cours : cartes photo sur fond crème, cadres nets ── */
.cours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 24px); margin-top: 56px; }
.cours { position: relative; display: block; background: var(--blanc); border: 1px solid var(--encre); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.cours:hover { transform: translate(-4px, -4px); box-shadow: 6px 6px 0 var(--or-plein); }
.cours__media { position: relative; aspect-ratio: 4/3.4; overflow: hidden; border-bottom: 1px solid var(--encre); }
.cours__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.cours:hover .cours__media img { transform: scale(1.06); }
.cours__tag { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--creme); background: var(--rouge); padding: 6px 11px; }
.cours__body { padding: clamp(20px, 2.2vw, 28px); }
.cours__body h3 { font-size: clamp(24px, 2.6vw, 34px); color: var(--encre); }
.cours__body p { font-size: 13.5px; color: var(--gris); line-height: 1.6; margin: 10px 0 0; }

/* ── Coachs : noir, éditorial, compteurs or ── */
.coach { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4.5vw, 72px); align-items: center; margin-top: clamp(48px, 7vh, 80px); }
.coach:nth-of-type(even) .coach__media { order: 2; }
.coach__media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.coach__media img { width: 100%; height: 108%; object-fit: cover; filter: grayscale(1) contrast(1.08); }
.coach__media::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px var(--ligne-claire); }
.coach__name { font-size: clamp(34px, 4.2vw, 58px); color: var(--creme); }
.coach__name .gold { color: var(--or-plein); }
.coach__role { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--or-vif); margin: 10px 0 18px; }
.coach__bio { font-size: 15.5px; color: rgba(241,235,220,0.72); line-height: 1.75; max-width: 520px; margin: 0; }
.coach__bio b { color: var(--creme); font-weight: 600; }
.coach__stats { display: flex; gap: clamp(24px, 3.5vw, 48px); margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--ligne-claire); }
.coach__stats b { display: block; font-family: var(--display); font-weight: 400; font-size: clamp(34px, 3.8vw, 50px); color: var(--or-plein); line-height: 1; }
.coach__stats span { font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(241,235,220,0.6); display: block; margin-top: 6px; max-width: 130px; line-height: 1.45; }

/* ── Planning : grille brute noire sur crème, cases cours en OR plein ── */
.cal-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cal-nav { display: flex; align-items: center; gap: 2px; }
.cal-nav button { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: var(--noir); color: var(--creme); border: 0; cursor: pointer; font-size: 17px; transition: background .3s ease, color .3s ease; }
.cal-nav button:hover { background: var(--rouge); }
.cal-nav .cal-mois { min-width: 230px; text-align: center; font-family: var(--display); font-size: 25px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--encre); }
.cal-viewport { margin-top: 40px; overflow: hidden; }
.cal { border: 1.5px solid var(--encre); background: var(--blanc); transition: opacity .3s ease, transform .45s var(--ease); }
.cal.slide-l { opacity: 0; transform: translateX(-34px); transition: none; }
.cal.slide-r { opacity: 0; transform: translateX(34px); transition: none; }
.cal__row { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal__row--head { background: var(--noir); }
.cal__row--head span { padding: 13px 8px; text-align: center; font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--creme); }
.cal__cell { min-height: clamp(64px, 8vw, 96px); border-top: 1px solid var(--ligne); border-left: 1px solid var(--ligne); padding: 9px 10px; position: relative; }
.cal__cell:first-child { border-left: 0; }
.cal__cell .n { font-size: 13px; font-weight: 600; color: var(--gris); }
.cal__cell--off { background: rgba(26,22,14,0.035); }
.cal__cell--off .n { color: rgba(26,22,14,0.25); }
.cal__cell--today { box-shadow: inset 0 0 0 2px var(--rouge); }
.cal__cell--cours { background: var(--or-plein); }
.cal__cell--cours .n { color: var(--noir); }
.cal__cell--cours::before { content: '◆'; position: absolute; top: 10px; right: 10px; font-size: 8px; color: var(--noir); }
.cal__cell .c { display: block; margin-top: 7px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--noir); line-height: 1.35; }
.cal__legend { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 22px; font-size: 13.5px; color: var(--gris); }
.cal__legend .sw { display: inline-block; width: 12px; height: 12px; background: var(--or-plein); margin-right: 9px; vertical-align: -1px; }
.cal__legend a { color: var(--rouge); font-weight: 600; }

/* ── Tarifs : crème, cadres noirs nets, l'annuel en NOIR plein ── */
.tarif-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 24px); margin-top: 60px; align-items: stretch; }
.tarif { display: flex; flex-direction: column; background: var(--blanc); border: 1.5px solid var(--encre); padding: clamp(26px, 3vw, 40px); position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.tarif:hover { transform: translate(-4px, -4px); box-shadow: 6px 6px 0 var(--or-plein); }
.tarif h3 { font-size: 21px; color: var(--encre); letter-spacing: 0.04em; }
.tarif__prix { font-family: var(--display); font-size: clamp(56px, 6.5vw, 84px); color: var(--encre); line-height: 1; margin: 18px 0 4px; }
.tarif__prix small { font-size: 24px; color: var(--rouge); }
.tarif__eq { font-size: 12.5px; color: var(--rouge); font-weight: 600; letter-spacing: 0.06em; min-height: 19px; }
.tarif p.d { font-size: 14px; color: var(--gris); line-height: 1.65; margin: 16px 0 26px; }
.tarif .btn { margin-top: auto; justify-content: center; width: 100%; }
.tarif--star { background: var(--noir); border-color: var(--noir); color: var(--creme); }
.tarif--star:hover { box-shadow: 6px 6px 0 var(--rouge); }
.tarif--star h3 { color: var(--creme); }
.tarif--star .tarif__prix { color: var(--or-plein); }
.tarif--star .tarif__prix small { color: var(--or-vif); }
.tarif--star .tarif__eq { color: var(--or-vif); }
.tarif--star p.d { color: rgba(241,235,220,0.72); }
.tarif__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; background: var(--rouge); color: var(--creme); padding: 7px 14px; white-space: nowrap; }
.tarifs__note { text-align: center; margin: 36px auto 0; font-size: 13.5px; color: var(--gris); }
.tarifs__note b { color: var(--encre); font-weight: 700; }
.tarifs__note a { color: var(--rouge); font-weight: 600; }

/* ── Bande CTA : OR plein, pleine largeur ── */
.cta-band { background: var(--or-plein); color: var(--noir); padding: clamp(56px, 9vh, 92px) 0; position: relative; overflow: hidden; }
.cta-band::after { content: 'จิตเพชร'; font-family: var(--thai); position: absolute; right: -0.04em; bottom: -0.3em; font-size: clamp(120px, 18vw, 260px); line-height: 1; color: rgba(19,16,9,0.07); pointer-events: none; }
.cta-band .wrap { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { font-size: clamp(34px, 4.6vw, 64px); color: var(--noir); max-width: 640px; }
.cta-band p { margin: 10px 0 0; font-size: 15px; color: rgba(19,16,9,0.75); font-weight: 500; }

/* ── Infos ── */
.infos-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 64px); margin-top: 56px; align-items: start; }
.info-block + .info-block { margin-top: 28px; }
.info-block h3 { font-size: 19px; color: var(--encre); letter-spacing: 0.05em; margin-bottom: 10px; }
.info-block p { font-size: 15px; color: var(--gris); line-height: 1.7; margin: 0; }
.info-block a { color: var(--rouge); font-weight: 600; }
.info-block a:hover { color: var(--encre); }
.hours { border-top: 1.5px solid var(--encre); margin-top: 6px; }
.hours div { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--ligne); font-size: 14.5px; }
.hours span:first-child { color: var(--encre); font-weight: 600; }
.hours span:last-child { color: var(--gris); font-variant-numeric: tabular-nums; }
.map-embed { overflow: hidden; border: 1.5px solid var(--encre); min-height: 380px; height: 100%; }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: sepia(0.18) saturate(0.8); }

/* ── Footer : noir ── */
.footer { background: var(--noir); color: var(--creme); padding: clamp(48px, 7vh, 72px) 0 32px; }
.footer__top { display: flex; flex-wrap: wrap; gap: 36px; justify-content: space-between; align-items: flex-start; }
.footer__brand b { font-family: var(--display); font-weight: 400; font-size: 26px; text-transform: uppercase; display: block; }
.footer__brand .thai { color: var(--or-vif); font-size: 15px; }
.footer p, .footer a { color: rgba(241,235,220,0.66); font-size: 14px; line-height: 1.85; }
.footer a:hover { color: var(--or-vif); }
.footer__col h4 { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--or-vif); margin: 0 0 12px; font-weight: 700; }
.footer__cols { display: flex; gap: clamp(32px, 6vw, 76px); flex-wrap: wrap; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--ligne-claire); font-size: 12.5px; color: rgba(241,235,220,0.4); }
.footer__bottom a { color: var(--or-vif); }

/* ── Modal inscription (clair, net) ── */
.modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(19,16,9,0.7); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); overflow-y: auto; }
.modal.open { display: flex; }
.modal__box { background: var(--blanc); border: 1.5px solid var(--encre); max-width: 540px; width: 100%; padding: clamp(28px,5vw,44px); position: relative; max-height: calc(100dvh - 40px); overflow-y: auto; }
.modal__x { position: absolute; top: 12px; right: 14px; background: none; border: 0; font-size: 30px; line-height: 1; color: var(--gris); cursor: pointer; padding: 4px 8px; transition: color .2s ease, transform .3s var(--ease); }
.modal__x:hover { color: var(--encre); transform: rotate(90deg); }
.modal__box h3 { font-size: clamp(26px, 3.4vw, 36px); color: var(--encre); }
.co-recap { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: var(--creme); border: 1px solid var(--encre); padding: 14px 18px; margin: 20px 0 22px; font-size: 14px; color: var(--gris); }
.co-recap b { font-family: var(--display); font-size: 26px; color: var(--rouge); font-weight: 400; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--encre); margin-bottom: 8px; }
.field input, .field select { width: 100%; background: #fff; border: 1px solid var(--encre); padding: 14px 16px; font-family: var(--sans); font-size: 15px; color: var(--encre); outline: none; transition: box-shadow .25s ease; border-radius: 0; -webkit-appearance: none; appearance: none; }
.field input:focus, .field select:focus { box-shadow: inset 0 0 0 1.5px var(--or); }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' fill='none'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%231A160E' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pay-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--encre); margin: 18px 0 10px; }
.pay-options { display: grid; gap: 8px; }
.pay-opt { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; background: #fff; border: 1px solid var(--ligne); padding: 13px 16px; cursor: pointer; transition: border-color .25s ease, background .25s ease; }
.pay-opt:hover { border-color: var(--encre); }
.pay-opt.on { border-color: var(--encre); background: var(--creme); box-shadow: inset 0 0 0 1px var(--encre); }
.pay-opt__ic { flex: none; width: 42px; height: 30px; display: flex; align-items: center; justify-content: center; color: var(--encre); }
.pay-opt__ic svg { width: 25px; height: 25px; }
.pay-opt__ic--twint { background: #000; color: #fff; font-size: 10px; font-weight: 700; }
.pay-opt__t { display: flex; flex-direction: column; line-height: 1.35; }
.pay-opt__t b { font-size: 14.5px; color: var(--encre); font-weight: 600; }
.pay-opt__t small { font-size: 12px; color: var(--gris); }
.co-note { font-size: 11.5px; color: var(--gris); text-align: left; margin: 12px 0 0; }
.tick { width: 60px; height: 60px; border-radius: 50%; background: var(--or-plein); color: var(--noir); display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 20px; }
.co-ref { font-size: 14.5px; color: var(--gris); text-align: center; margin: 4px 0 18px; }
.co-ref b { font-family: var(--display); color: var(--rouge); font-weight: 400; letter-spacing: 0.05em; }
.co-done-recap { background: var(--creme); border: 1px solid var(--encre); padding: 6px 18px; margin: 0 0 18px; }
.co-done-recap div { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--ligne); font-size: 14px; }
.co-done-recap div:last-child { border-bottom: 0; }
.co-done-recap span { color: var(--gris); }
.co-done-recap b { color: var(--encre); font-weight: 600; }
.demo-tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rouge); text-align: center; margin-top: 16px; }

/* ── Reveals ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-img { overflow: hidden; }
.reveal-img img { clip-path: inset(12% 4% 12% 4%); transform: scale(1.1); transition: clip-path 1.25s var(--ease), transform 1.25s var(--ease); }
.reveal-img.in img { clip-path: inset(0 0 0 0); transform: scale(1); }

.demo-mark { position: fixed; bottom: 12px; left: 12px; z-index: 90; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(26,22,14,0.5); background: rgba(250,247,239,0.8); padding: 5px 9px; pointer-events: none; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }

@media (prefers-reduced-motion: reduce) {
  .marq__track { animation: none; }
  .reveal, .reveal-img img, .hl > span, .hero__eyebrow, .hero__sub, .hero__cta { transition: none !important; opacity: 1 !important; transform: none !important; clip-path: none !important; }
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-ham { display: flex; }
  .coach, .coach:nth-of-type(even) { grid-template-columns: 1fr; }
  .coach:nth-of-type(even) .coach__media { order: 0; }
  .infos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .hero__eyebrow .thai { display: none; }
  .strip__grid { grid-template-columns: 1fr; }
  .strip__cell { border-left: 0; border-top: 1px solid rgba(19,16,9,0.22); padding: 16px 20px; }
  .strip__cell:first-child { border-top: 0; }
  .cours-grid { grid-template-columns: 1fr; }
  .tarif-grid { grid-template-columns: 1fr; }
  .tarif--star { order: -1; }
  .cal__cell { min-height: 54px; padding: 6px 7px; }
  .cal__cell .c { display: none; }
  .cal-nav .cal-mois { min-width: 150px; font-size: 19px; }
  .field-2 { grid-template-columns: 1fr; }
}
