/* =========================================================
   TOUKIN — Collectif santé · Tolochenaz (VD)
   Premium editorial design system — logo palette: black · amber · white
   ========================================================= */

:root {
  --black:   #1C1B1A;
  --black-2: #2A2725;
  --amber:   #F5A623;
  --amber-2: #E2941A;
  --amber-ink:#C9820F;        /* legible amber on light */
  --white:   #ffffff;
  --paper:   #FBFAF7;         /* off-white background */
  --paper-2: #F3EFE8;         /* warm light section bg */
  --sand:    #ECE6DB;
  --ink:     #1C1B1A;
  --muted:   #6B6661;
  --muted-2: #97918A;
  --line:    rgba(28,27,26,.12);
  --line-2:  rgba(28,27,26,.08);

  --shadow-sm: 0 2px 10px rgba(28,27,26,.05);
  --shadow-md: 0 18px 50px rgba(28,27,26,.10);
  --shadow-lg: 0 40px 90px rgba(28,27,26,.16);

  --r:   16px;
  --r-lg:26px;
  --r-xl:34px;
  --maxw: 1240px;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Manrope', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;

  --ease:  cubic-bezier(.22,.61,.36,1);
  --ease-2:cubic-bezier(.65,.05,.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--sans); color: var(--ink); background: var(--paper);
  line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--amber); color: var(--black); }

/* paper grain overlay */
body::after {
  content:""; position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- Layout ---------- */
.wrap { width: min(var(--maxw), 90vw); margin-inline: auto; }
.section { padding: clamp(72px, 10vw, 150px) 0; position: relative; }
.section.tight { padding: clamp(56px, 7vw, 100px) 0; }
.dark { background: var(--black); color: #EFEBE4; }
.dark h1,.dark h2,.dark h3,.dark h4 { color: #fff; }
.soft { background: var(--paper-2); }

/* section header w/ index */
.s-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 68px); }
.s-head.center { margin-inline: auto; text-align: center; }
.kicker { display: inline-flex; align-items: center; gap: 12px; font-size: .76rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase; color: var(--amber-ink); }
.kicker::before { content: attr(data-index); font-family: var(--serif); font-weight: 600; font-size: .92rem;
  color: var(--black); background: var(--amber); border-radius: 50%; width: 26px; height: 26px;
  display: grid; place-items: center; letter-spacing: 0; }
.dark .kicker { color: var(--amber); }
.dark .kicker::before { color: var(--black); }
.center .kicker { justify-content: center; }

h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.04; color: var(--black);
  letter-spacing: -.015em; font-optical-sizing: auto; }
.display { font-size: clamp(2.4rem, 6.2vw, 5rem); line-height: .98; }
.title { font-size: clamp(2rem, 4.6vw, 3.5rem); margin: 20px 0; }
.title .it { font-style: italic; color: var(--amber-ink); }
.dark .title .it { color: var(--amber); }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.24rem); color: var(--muted); max-width: 58ch; }
.center .lead, .s-head.center .lead { margin-inline: auto; }

/* ---------- Scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--amber-2), var(--amber)); }

/* ---------- Preloader (self-hides even without JS) ---------- */
.preload { position: fixed; inset: 0; z-index: 9990; background: var(--black); display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s; animation: preFail .1s linear 2s forwards; }
.preload.done { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes preFail { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.preload .pl-mark { width: 92px; height: 92px; animation: plspin 1.1s var(--ease) infinite alternate; }
@keyframes plspin { from { transform: rotate(-12deg) scale(.96); } to { transform: rotate(12deg) scale(1.04); } }

/* ---------- Buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: 100px; font-weight: 700; font-size: .97rem; letter-spacing: .01em;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease), color .4s var(--ease); overflow: hidden; }
.btn svg { width: 18px; height: 18px; position: relative; z-index: 1; transition: transform .4s var(--ease); }
.btn span { position: relative; z-index: 1; }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--amber); color: var(--black); box-shadow: 0 14px 34px rgba(226,148,26,.32); }
.btn-primary::before { content:""; position: absolute; inset: 0; background: var(--black); transform: translateY(101%); transition: transform .45s var(--ease-2); }
.btn-primary:hover { color: #fff; box-shadow: 0 20px 44px rgba(28,27,26,.28); }
.btn-primary:hover::before { transform: translateY(0); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark::before { content:""; position:absolute; inset:0; background: var(--amber); transform: translateY(101%); transition: transform .45s var(--ease-2); }
.btn-dark:hover { color: var(--black); }
.btn-dark:hover::before { transform: translateY(0); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--black); }
.btn-ghost:hover { background: var(--black); color: #fff; border-color: var(--black); transform: translateY(-2px); }
.dark .btn-ghost { border-color: rgba(255,255,255,.24); color: #fff; }
.dark .btn-ghost:hover { background: #fff; color: var(--black); border-color: #fff; }

/* ---------- Header ---------- */
.header { position: fixed; inset: 0 0 auto 0; z-index: 150; padding: 20px 0;
  transition: transform .5s var(--ease), padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease); }
.header.scrolled { padding: 11px 0; background: rgba(251,250,247,.8); backdrop-filter: blur(16px) saturate(1.3); box-shadow: 0 1px 0 var(--line); }
.header.hide { transform: translateY(-115%); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; }
.brand-wm { display: inline-flex; align-items: center; font-family: var(--sans); font-weight: 800;
  font-size: 31px; letter-spacing: -.045em; color: var(--black); line-height: 1; white-space: nowrap; }
.brand-wm .o { display: inline-flex; width: .86em; height: .86em; margin: 0 -.02em 0 -.05em; align-self: center; transform: translateY(.07em); }
.brand-wm .o svg { width: 100%; height: 100%; }
.brand-wm.light { color: var(--paper); }
.header.scrolled .brand-wm { font-size: 27px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; font-size: .94rem; color: var(--black); position: relative; padding: 4px 0; opacity: .8; transition: opacity .3s var(--ease); }
.nav-links a::after { content:""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--amber); transition: width .35s var(--ease); }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 160; }
.burger span { width: 26px; height: 2px; background: var(--black); border-radius: 2px; transition: .35s var(--ease); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 60px; overflow: hidden; }
.hero-bg-word { position: absolute; right: -2%; bottom: -6%; font-family: var(--serif); font-weight: 600;
  font-size: 30vw; line-height: 1; color: var(--black); opacity: .035; pointer-events: none; z-index: 0; letter-spacing: -.04em; }
.hero-quarter { position: absolute; left: -120px; top: -120px; width: 360px; height: 360px; z-index: 0;
  background: var(--amber); border-radius: 0 0 100% 0; opacity: .12; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(30px,5vw,72px); align-items: center; }
.hero-kicker { display: inline-flex; align-items: center; gap: 12px; font-size: .78rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase; color: var(--amber-ink); margin-bottom: 26px; }
.hero-kicker .ln { width: 40px; height: 2px; background: var(--amber); }
.hero h1 { font-size: clamp(2.7rem, 6.6vw, 5.4rem); line-height: .96; margin-bottom: 26px; }
.hero h1 .it { font-style: italic; color: var(--amber-ink); }
.hero .lead { font-size: clamp(1.1rem, 1.6vw, 1.32rem); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-meta .stat strong { font-family: var(--serif); font-size: 2rem; color: var(--black); display: block; line-height: 1; }
.hero-meta .stat span { font-size: .8rem; color: var(--muted); font-weight: 600; }

.hero-visual { position: relative; }
.hero-photo { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg); background: linear-gradient(160deg, var(--black-2), var(--black)); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 1.2s var(--ease); }
.hero-photo img.in { transform: scale(1); }
.hero-badge { position: absolute; z-index: 3; background: var(--white); border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 13px; }
.hero-badge .dot { width: 42px; height: 42px; border-radius: 11px; background: var(--black); display: grid; place-items: center; color: var(--amber); }
.hero-badge .dot svg { width: 21px; height: 21px; }
.hero-badge b { display: block; font-size: .92rem; color: var(--black); }
.hero-badge small { color: var(--muted); font-size: .79rem; }
.hero-badge.bot { left: -26px; bottom: 40px; animation: float 5s var(--ease) infinite; }
.hero-badge.top { right: -18px; top: 30px; animation: float 5s var(--ease) infinite .8s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-stamp { position: absolute; left: -38px; top: -38px; width: 130px; height: 130px; z-index: 4;
  filter: drop-shadow(0 10px 24px rgba(28,27,26,.2)); animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.hero-scroll .bar { width: 1px; height: 46px; background: var(--line); position: relative; overflow: hidden; }
.hero-scroll .bar::after { content:""; position: absolute; inset: 0; background: var(--amber); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { 0%{transform:translateY(-100%)} 60%,100%{transform:translateY(100%)} }

/* ---------- Marquee ---------- */
.strip { background: var(--black); color: var(--paper); padding: 20px 0; overflow: hidden; }
.strip .track { display: flex; gap: 50px; align-items: center; white-space: nowrap; width: max-content; animation: scroll 32s linear infinite; }
.strip .track span { display: inline-flex; align-items: center; gap: 16px; font-family: var(--serif); font-size: 1.3rem; opacity: .92; }
.strip .track span::before { content:""; width: 9px; height: 9px; background: var(--amber); border-radius: 50%; flex: 0 0 auto; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Manifesto ---------- */
.manifesto { text-align: center; }
.manifesto .big { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 3.9vw, 3.1rem);
  line-height: 1.22; letter-spacing: -.01em; max-width: 18ch; margin: 0 auto; color: var(--black); }
.manifesto .big .w { display: inline-block; opacity: .12; transition: opacity .5s var(--ease); }
.manifesto .big .w.lit { opacity: 1; }
.manifesto .big em { font-style: italic; color: var(--amber-ink); }
.manifesto .sign { margin-top: 38px; display: inline-flex; align-items: center; gap: 14px; color: var(--muted); font-size: .92rem; }
.manifesto .sign .em { width: 40px; height: 40px; }

/* ---------- Services (ledger) ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc { position: relative; display: grid; grid-template-columns: 64px 1.1fr 1.5fr auto; gap: 24px;
  align-items: center; padding: 30px 18px; border-bottom: 1px solid var(--line); cursor: default;
  transition: background .45s var(--ease), padding .45s var(--ease), color .45s var(--ease); }
.svc::before { content:""; position: absolute; inset: 0; background: var(--black); transform: scaleY(0); transform-origin: bottom; transition: transform .5s var(--ease-2); z-index: 0; }
.svc > * { position: relative; z-index: 1; }
.svc:hover { color: #EFEBE4; padding-left: 30px; padding-right: 30px; }
.svc:hover::before { transform: scaleY(1); }
.svc .num { font-family: var(--serif); font-size: 1rem; color: var(--amber-ink); }
.svc:hover .num { color: var(--amber); }
.svc h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.svc:hover h3 { color: #fff; }
.svc p { color: var(--muted); font-size: .98rem; }
.svc:hover p { color: rgba(239,235,228,.82); }
.svc .svc-tag { justify-self: end; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber-ink); border: 1px solid var(--line); border-radius: 100px; padding: 7px 14px; white-space: nowrap; transition: .4s var(--ease); }
.svc:hover .svc-tag { color: var(--black); background: var(--amber); border-color: var(--amber); }

/* ---------- Split / approche ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,84px); align-items: center; }
.split.alt > .media { order: 2; }
.media { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-md); background: var(--sand); }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.media:hover img { transform: scale(1.05); }
.media .badge-stat { position: absolute; right: 18px; bottom: 18px; background: var(--white); border-radius: 16px;
  padding: 16px 20px; box-shadow: var(--shadow-md); text-align: center; }
.media .badge-stat strong { font-family: var(--serif); font-size: 1.8rem; color: var(--black); display: block; line-height: 1; }
.media .badge-stat span { font-size: .74rem; color: var(--muted); font-weight: 700; }
.feature-list { margin-top: 30px; display: grid; gap: 4px; }
.feature-list li { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line-2); }
.feature-list .n { flex: 0 0 auto; font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--amber-ink);
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; }
.feature-list b { color: var(--black); font-size: 1.06rem; }
.feature-list p { color: var(--muted); font-size: .96rem; margin-top: 3px; }

/* ---------- Gallery (bento) ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; grid-auto-flow: dense; }
.g-item { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.g-item:nth-child(1){ grid-column: span 2; grid-row: span 2; }
.g-item:nth-child(4){ grid-column: span 2; }
.g-item:nth-child(6){ grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.g-item:hover img { transform: scale(1.07); }
.g-item figcaption { position: absolute; inset: auto 0 0 0; padding: 34px 18px 16px; color: #fff; font-weight: 700;
  font-size: .92rem; background: linear-gradient(transparent, rgba(20,19,18,.8)); opacity: 0; transform: translateY(10px); transition: .45s var(--ease); }
.g-item:hover figcaption { opacity: 1; transform: none; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.member { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.member:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.member .photo { position: relative; aspect-ratio: 4/5; background: var(--black); overflow: hidden; }
.member .photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(.15); transition: transform .8s var(--ease), filter .6s var(--ease); }
.member:hover .photo img { transform: scale(1.05); filter: grayscale(0); }
.member .photo .ph { position: absolute; inset: 0; display: grid; place-items: center; color: #fff;
  background: linear-gradient(150deg, var(--black-2), var(--black)); font-family: var(--serif); font-size: 3.4rem; }
.member .photo .ph::after { content: attr(data-initials); }
.member .photo .tagn { position: absolute; left: 14px; top: 14px; z-index: 2; background: var(--amber); color: var(--black);
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 6px 11px; border-radius: 100px; }
.member .info { padding: 26px 26px 30px; }
.member .info h3 { font-size: 1.45rem; }
.member .role { color: var(--amber-ink); font-weight: 700; font-size: .88rem; margin: 5px 0 13px; }
.member .info p { color: var(--muted); font-size: .95rem; }
.member .creds { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.member .creds span { font-size: .74rem; font-weight: 600; background: var(--paper-2); color: var(--black); padding: 6px 12px; border-radius: 100px; }

/* ---------- Stats band ---------- */
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.band-grid .b { position: relative; padding-left: 22px; }
.band-grid .b::before { content:""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 3px; background: var(--amber); border-radius: 3px; }
.band-grid .b strong { font-family: var(--serif); font-size: clamp(2.4rem,4.4vw,3.6rem); display: block; color: #fff; line-height: 1; }
.band-grid .b span { opacity: .8; font-size: .9rem; font-weight: 600; margin-top: 8px; display: block; }

/* ---------- Classes ---------- */
.classes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.class-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 24px; overflow: hidden; transition: .45s var(--ease); }
.class-card::before { content:""; position: absolute; right: -30px; top: -30px; width: 90px; height: 90px; background: var(--amber); opacity: .1; border-radius: 0 0 0 100%; transition: .5s var(--ease); }
.class-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.class-card:hover::before { transform: scale(2.4); opacity: .14; }
.class-card .c-ic { color: var(--black); margin-bottom: 16px; position: relative; }
.class-card .c-ic svg { width: 34px; height: 34px; }
.class-card h3 { font-size: 1.2rem; position: relative; }
.class-card p { color: var(--muted); font-size: .9rem; margin-top: 7px; position: relative; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; position: relative; }
.review .q { font-family: var(--serif); font-size: 3.4rem; line-height: .6; color: var(--amber); height: 28px; }
.review .stars { color: var(--amber); letter-spacing: 3px; margin: 12px 0 14px; font-size: .9rem; }
.review p { font-size: 1.02rem; color: var(--ink); }
.review .who { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.review .av { width: 44px; height: 44px; border-radius: 50%; background: var(--black); color: var(--amber); display: grid; place-items: center; font-weight: 800; font-family: var(--serif); }
.review .who b { display: block; font-size: .92rem; color: var(--black); }
.review .who small { color: var(--muted); }

/* ---------- Social ---------- */
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.social-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; transition: .45s var(--ease); }
.social-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.social-card .s-ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 18px; }
.social-card .s-ic svg { width: 27px; height: 27px; }
.s-ic.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.s-ic.yt { background: #FF0000; } .s-ic.fb { background: #1877F2; } .s-ic.li { background: #0A66C2; }
.social-card h3 { font-size: 1.1rem; }
.social-card .handle { color: var(--amber-ink); font-weight: 700; font-size: .88rem; margin: 3px 0 10px; }
.social-card p { color: var(--muted); font-size: .9rem; }
.social-card .go { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .85rem; color: var(--black); }
.social-card .go svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.social-card:hover .go svg { transform: translateX(4px); }

.video-feature { display: block; position: relative; margin-top: 22px; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 16/7; background: var(--black); }
.video-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.video-feature:hover img { transform: scale(1.05); }
.vf-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,19,18,.94), rgba(20,19,18,.6) 46%, rgba(20,19,18,.18)); }
.vf-play { position: absolute; top: 50%; right: clamp(28px,6vw,80px); transform: translateY(-50%); width: 84px; height: 84px;
  border-radius: 50%; background: var(--amber); display: grid; place-items: center; color: var(--black); box-shadow: var(--shadow-md); transition: transform .35s var(--ease); }
.vf-play svg { width: 32px; height: 32px; margin-left: 4px; }
.video-feature:hover .vf-play { transform: translateY(-50%) scale(1.08); }
.vf-text { position: absolute; left: clamp(26px,5vw,56px); bottom: clamp(26px,4vw,48px); right: 140px; color: var(--paper); }
.vf-tag { display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.vf-text h3 { color: #fff; font-size: clamp(1.4rem,3vw,2.1rem); }
.vf-text p { color: rgba(239,235,228,.82); font-size: .98rem; margin-top: 8px; max-width: 46ch; }

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; }
.cta .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr auto; gap: 40px; align-items: center; }
.cta h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); color: #fff; }
.cta p { color: rgba(239,235,228,.7); margin-top: 14px; max-width: 44ch; }
.cta-quarter { position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: var(--amber); opacity: .14; border-radius: 0 0 0 100%; z-index: 1; }
.cta-emblem { position: absolute; right: 6%; bottom: -40px; width: 200px; opacity: .9; z-index: 1; animation: spin 30s linear infinite; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px,5vw,64px); }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(28px,4vw,44px); }
.info-row { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ir-ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 14px; background: var(--black); color: var(--amber); display: grid; place-items: center; }
.info-row .ir-ic svg { width: 22px; height: 22px; }
.info-row h4 { font-family: var(--sans); font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 800; }
.info-row p, .info-row a { color: var(--black); font-weight: 600; font-size: 1.04rem; margin-top: 4px; }
.info-row a:hover { color: var(--amber-ink); }
.hours-list { margin-top: 6px; }
.hours-list div { display: flex; justify-content: space-between; padding: 5px 0; font-size: .96rem; }
.hours-list span:first-child { color: var(--muted); }
.hours-list span:last-child { font-weight: 700; color: var(--black); }
.contact-cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.map-card { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); min-height: 380px; background: var(--sand); }
.map-card iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.2) contrast(1.05); }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: rgba(239,235,228,.7); padding: 76px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
.footer h5 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.f-brand .brand-wm { font-size: 38px; margin-bottom: 18px; }
.f-brand p { max-width: 34ch; font-size: .95rem; }
.footer ul li { margin-bottom: 11px; }
.footer ul a:hover { color: var(--amber); }
.f-social { display: flex; gap: 12px; margin-top: 22px; }
.f-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #fff; transition: .3s var(--ease); }
.f-social a:hover { background: var(--amber); color: var(--black); transform: translateY(-3px); }
.f-social svg { width: 19px; height: 19px; }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; }

/* ---------- Reveal (only active when JS present; visible otherwise) ---------- */
.js [data-anim] { opacity: 0; will-change: transform, opacity; }
.js [data-anim].in { opacity: 1; }
.js [data-anim="fade-up"] { transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-anim="fade-up"].in { transform: none; }
.js [data-anim="fade"] { transition: opacity .8s var(--ease); }
.js [data-anim="mask"] { clip-path: inset(0 0 100% 0); opacity: 1; transition: clip-path .9s var(--ease-2); }
.js [data-anim="mask"].in { clip-path: inset(0 0 0 0); }
.js [data-anim="scale"] { transform: scale(.94); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-anim="scale"].in { transform: none; }
.js [data-stagger] > * { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js [data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(2){ transition-delay: .08s; }
[data-stagger].in > *:nth-child(3){ transition-delay: .16s; }
[data-stagger].in > *:nth-child(4){ transition-delay: .24s; }
[data-stagger].in > *:nth-child(5){ transition-delay: .32s; }
[data-stagger].in > *:nth-child(6){ transition-delay: .40s; }
[data-delay="1"]{ transition-delay: .1s; } [data-delay="2"]{ transition-delay: .2s; } [data-delay="3"]{ transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .band-grid, .classes-grid, .social-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-auto-rows: 170px; }
  .svc { grid-template-columns: 48px 1fr auto; }
  .svc p { display: none; }
}
@media (max-width: 880px) {
  .nav-links { position: fixed; inset: 0; width: 100%; height: 100svh; background: var(--paper);
    flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 90px 24px 40px;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .4s var(--ease), transform .5s var(--ease-2), visibility .4s; z-index: 140; }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links a { font-size: clamp(1.7rem, 7vw, 2.3rem); font-family: var(--serif); font-weight: 600; opacity: 1; padding: 9px 0; }
  .nav-links a::after { display: none; }
  .nav-links .nav-book { display: inline-flex; margin-top: 28px; font-family: var(--sans); font-size: 1rem; font-weight: 700; }
  body.menu-open .header { transform: none; }
  .burger { display: flex; }
  .nav-cta .btn { display: none; }
  body.menu-open .burger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  body.menu-open .burger span:nth-child(2){ opacity: 0; }
  body.menu-open .burger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .hero-grid, .split, .contact-grid, .cta .wrap { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { max-width: 440px; margin-inline: auto; order: -1; }
  .hero-scroll { display: none; }
  .split.alt > .media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-emblem { display: none; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .services-grid, .reviews-grid, .band-grid, .classes-grid, .social-grid, .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-item:nth-child(1){ grid-column: span 2; grid-row: span 2; }
  .g-item:nth-child(4), .g-item:nth-child(6){ grid-column: span 2; }
  .hero-badge.top { display: none; }
  .hero-stamp { width: 92px; height: 92px; left: -12px; top: -12px; }
  .svc { grid-template-columns: 40px 1fr; }
  .svc .svc-tag { display: none; }
  .hero-meta { gap: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .js [data-anim], .js [data-stagger] > * { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .manifesto .big .w { opacity: 1 !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Back to top ---------- */
.to-top { position: fixed; right: clamp(18px, 3vw, 34px); bottom: clamp(18px, 3vw, 34px); z-index: 130;
  width: 54px; height: 54px; border-radius: 50%; background: var(--amber); color: var(--black);
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(28,27,26,.22);
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(.85);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s, background .3s var(--ease); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--black); color: var(--amber); transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }
@media (max-width: 620px) { .to-top { width: 48px; height: 48px; } }

/* ---------- Refinements: softer, modern framing ---------- */
.nav-book { display: none; }
body.menu-open { overflow: hidden; }
.member, .social-card, .class-card, .review, .info-card { border: none; box-shadow: var(--shadow-sm); }
.svc-tag { border: none; background: rgba(28,27,26,.05); }
.btn-ghost { border: none; background: rgba(28,27,26,.05); }
.btn-ghost:hover { background: var(--black); color: #fff; }
.dark .btn-ghost { border: none; background: rgba(255,255,255,.12); }
.dark .btn-ghost:hover { background: #fff; color: var(--black); }
.feature-list .n { border: none; background: rgba(245,166,35,.16); }

/* =========================================================
   ENRICHISSEMENT — contenu & animations
   ========================================================= */

/* ---- Hero aurora (drifting amber light) ---- */
.hero::before {
  content:""; position: absolute; inset: -25%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(440px circle at 18% 26%, rgba(245,166,35,.20), transparent 60%),
    radial-gradient(560px circle at 84% 74%, rgba(245,166,35,.12), transparent 62%);
  animation: aurora 17s var(--ease) infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(2%,-3%,0) scale(1.1); }
}

/* ---- Animated underline on section titles ---- */
.title .it { position: relative; }
.title .it::after {
  content:""; position: absolute; left: 0; right: 0; bottom: .02em; height: .07em; border-radius: 6px;
  background: var(--amber); opacity: .4; transform: scaleX(0); transform-origin: left;
  transition: transform .85s var(--ease-2) .25s;
}
.js .title.in .it::after { transform: scaleX(1); }
.dark .title .it::after { opacity: .55; }

/* ---- Reveal variants ---- */
.js [data-anim="fade-right"] { opacity: 0; transform: translateX(-30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-anim="fade-right"].in { opacity: 1; transform: none; }
.js [data-anim="fade-left"]  { opacity: 0; transform: translateX(30px);  transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-anim="fade-left"].in  { opacity: 1; transform: none; }

/* ---- Specialties chips ---- */
.spec { margin-top: clamp(36px, 5vw, 58px); }
.spec-label { display: block; font-size: .76rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.spec-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.spec-chips li { display: inline-flex; align-items: center; gap: 9px; font-size: .93rem; font-weight: 600; color: var(--black);
  background: var(--white); box-shadow: var(--shadow-sm); border-radius: 100px; padding: 10px 18px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease); }
.spec-chips li::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); flex: 0 0 auto; transition: background .35s var(--ease), transform .35s var(--ease); }
.spec-chips li:hover { transform: translateY(-3px); background: var(--amber); color: var(--black); box-shadow: var(--shadow-md); }
.spec-chips li:hover::before { background: var(--black); transform: scale(1.25); }

/* ---- Founder ---- */
.founder-media { aspect-ratio: 4 / 5; }
.founder-media img { object-position: center top; }
.founder-also { margin-top: 26px; display: inline-flex; align-items: flex-start; gap: 11px; font-size: .96rem; color: var(--muted);
  background: var(--white); box-shadow: var(--shadow-sm); border-radius: 14px; padding: 14px 18px; }
.founder-also svg { width: 20px; height: 20px; color: var(--amber-ink); flex: 0 0 auto; margin-top: 1px; }
.founder-also strong { color: var(--black); }
.founder-quote { margin: 28px 0 0; padding: 6px 0 6px 22px; border-left: 3px solid var(--amber);
  font-family: var(--serif); font-style: italic; font-size: clamp(1.12rem, 1.9vw, 1.38rem); line-height: 1.42; color: var(--black); }

/* ---- Trust grid ---- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: clamp(42px, 5vw, 66px); }
.trust { background: var(--white); box-shadow: var(--shadow-sm); border-radius: var(--r-lg); padding: 26px 24px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.trust:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.trust .t-ic { width: 48px; height: 48px; border-radius: 13px; background: rgba(245,166,35,.16); color: var(--amber-ink);
  display: grid; place-items: center; margin-bottom: 16px; transition: transform .4s var(--ease); }
.trust:hover .t-ic { transform: rotate(-6deg) scale(1.06); }
.trust .t-ic svg { width: 23px; height: 23px; }
.trust b { display: block; font-size: 1.04rem; color: var(--black); }
.trust span { font-size: .9rem; color: var(--muted); }

/* ---- FAQ accordion ---- */
.faq { max-width: none; margin: 0 auto; }
.faq-item { background: var(--white); box-shadow: var(--shadow-sm); border-radius: var(--r); margin-bottom: 12px; overflow: hidden;
  transition: box-shadow .4s var(--ease); }
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 24px; font-family: var(--serif); font-weight: 600; font-size: clamp(1.04rem, 2vw, 1.24rem); color: var(--black);
  transition: color .3s var(--ease); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--amber-ink); }
.faq-item[open] summary { color: var(--amber-ink); }
.faq-x { position: relative; flex: 0 0 auto; width: 22px; height: 22px; }
.faq-x::before, .faq-x::after { content:""; position: absolute; left: 50%; top: 50%; background: var(--amber-ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .35s var(--ease); }
.faq-x::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.faq-x::after  { width: 2px; height: 14px; transform: translate(-50%,-50%); }
.faq-item[open] .faq-x::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { padding: 0 24px 24px; }
.faq-a p { color: var(--muted); font-size: 1rem; max-width: 66ch; }
.faq-item[open] .faq-a { animation: faqIn .42s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---- Card 3D tilt (set by JS, desktop only) ---- */
.tiltable { transform-style: preserve-3d; transition: transform .4s var(--ease), box-shadow .45s var(--ease); will-change: transform; }

/* ---- Responsive (new blocks) ---- */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .trust-grid { grid-template-columns: 1fr; }
  .spec-chips li { font-size: .88rem; padding: 9px 15px; }
  .faq-item summary { padding: 18px 18px; }
  .faq-a { padding: 0 18px 20px; }
}
