/* =============================================================
   NICETY · Conciergerie Privée — Megève
   Design system v2 — "Facilitateur de vie et d'envies"
   Inspirations: luxe éditorial, contraste fort, or champagne,
   typographie Didone + sans géométrique, beaucoup d'espace.
   Stack: HTML/CSS/JS statique · View Transitions · scroll-driven
   ============================================================= */

/* ---------- Cutting-edge: cross-document transitions ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) { animation-duration: .55s; animation-timing-function: cubic-bezier(.22,.61,.36,1); }

/* ---------- Tokens ---------- */
:root {
  --ink:        #080808;
  --ink-2:      #080808;
  --ink-3:      #1f1f1f;
  --ivory:      #ededed;
  --ivory-2:    #f5f5f5;
  --paper:      #ffffff;

  --gold:       #a8926c;
  --gold-soft:  #cdba94;
  --gold-deep:  #806941;

  --taupe:      #6b6b6b;

  --txt-dark:   #1a1a1a;
  --txt-muted:  #8a8a8a;
  --txt-light:  rgba(237,237,237,.92);
  --txt-light-muted: rgba(237,237,237,.6);

  --line-dark:  rgba(12,12,12,.5);
  --line-light: rgba(235,235,235,.13);
  --line-gold:  rgba(168,146,108,.40);

  --serif: "Cormorant Garamond", "Hoefler Text", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --maxw: 1700px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --section-y: clamp(3.75rem, 7vw, 6.75rem);
  --radius: 3px;

  --shadow-lg: 0 40px 90px -50px rgba(0,0,0,.6);

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: .7s;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 6rem; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--txt-light);
  background: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: .002em; font-feature-settings: "liga" 1, "dlig" 1, "calt" 1; text-wrap: balance; }
.display {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.9rem, 9vw, 7.6rem);
  line-height: .94; letter-spacing: -.022em; text-wrap: balance;
}
.h-xl { font-size: clamp(2.25rem, 5vw, 4.25rem); line-height: 1.02; letter-spacing: -.014em; }
.h-lg { font-size: clamp(1.9rem, 3.7vw, 3rem); letter-spacing: -.008em; }
.h-md { font-size: clamp(1.4rem, 2.4vw, 1.95rem); }
em.it, .it { font-style: italic; }

.eyebrow {
  font-family: var(--sans); font-weight: 400;
  font-size: .7rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold-deep); display: inline-flex; align-items: center; gap: 1.1rem;
}
.eyebrow::before { content: ""; width: 2.4rem; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 2.4rem; height: 1px; background: var(--gold); }
.on-dark .eyebrow, .on-ink-2 .eyebrow { color: var(--gold-soft); }

.lead { font-size: clamp(1.06rem, 1.45vw, 1.24rem); color: var(--txt-muted); font-weight: 300; line-height: 1.75; max-width: 58ch; }
.on-dark .lead, .on-ink-2 .lead { color: var(--txt-light-muted); }
p + p { margin-top: 1rem; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.on-dark { background: var(--ink); color: var(--txt-light); }
.on-ink-2 { background: var(--ink-2); color: var(--txt-light); }
.on-ivory { background: var(--ivory); }
.section-head { max-width: 66ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h-xl, .section-head .h-lg { margin-top: 1.1rem; }
.section-head .lead { margin-top: 1.3rem; }
.split { display: grid; gap: clamp(2rem, 5vw, 5.5rem); }
@media (min-width: 900px){ .split.cols-2 { grid-template-columns: 1fr 1fr; align-items: center; } }
.center { text-align: center; }
.mt-cta { margin-top: clamp(2.4rem,5vw,3.5rem); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--ivory); --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  font-family: var(--sans); font-weight: 400; font-size: .74rem;
  letter-spacing: .26em; text-transform: uppercase;
  padding: 1.2em 2.7em; color: var(--fg); background: var(--bg);
  border: 1px solid var(--bd); border-radius: 0;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform .5s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { --bg: var(--gold); --fg: var(--ink); --bd: var(--gold); }
.btn-gold:hover { --bg: var(--gold-soft); --bd: var(--gold-soft); }
.btn-outline { --bg: transparent; --fg: var(--ink); --bd: rgba(34,31,25,.3); }
.btn-outline:hover { --bg: var(--ink); --fg: var(--ivory); --bd: var(--ink); }
.on-dark .btn-outline, .on-ink-2 .btn-outline, .hero .btn-outline, .page-hero .btn-outline { --fg: var(--ivory); --bd: rgba(244,239,230,.4); }
.on-dark .btn-outline:hover, .on-ink-2 .btn-outline:hover, .hero .btn-outline:hover, .page-hero .btn-outline:hover { --bg: var(--ivory); --fg: var(--ink); --bd: var(--ivory); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 400; padding-bottom: .25rem;
  border-bottom: 1px solid var(--line-gold); transition: gap .4s var(--ease);
}
.on-dark .link-arrow, .on-ink-2 .link-arrow { color: var(--gold-soft); }
.link-arrow:hover { gap: 1rem; }
.link-arrow svg { width: 1.05em; height: 1.05em; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center;
  background: var(--ink); transition: opacity .8s var(--ease), visibility .8s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__mark { width: clamp(190px, 36vw, 300px); color: var(--ivory); animation: plFade 1.4s var(--ease) both; }
.preloader__line { width: 0; height: 1px; background: var(--gold); margin: 1.4rem auto 0; animation: plLine 1.6s var(--ease) .2s forwards; }
@keyframes plFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes plLine { to { width: clamp(120px, 24vw, 200px); } }
@media (prefers-reduced-motion: reduce){ .preloader { display: none; } }

/* ---------- Header (centered split nav) ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: clamp(.85rem, 2vw, 1.35rem) 0;
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
  view-transition-name: site-header;
}
.site-header .wrap { display: flex; align-items: center; gap: 1.2rem; }
.site-header.scrolled {
  background: rgba(10,10,10,.86);
  -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%);
  padding: .5rem 0; box-shadow: 0 1px 0 var(--line-light);
}
.brand { display: inline-flex; align-items: center; color: var(--ivory); position: relative; z-index: 110; flex: 0 0 auto; }
.brand img { height: clamp(58px, 6vw, 80px); width: auto; transition: height .5s var(--ease); }
.site-header.scrolled .brand img { height: 54px; }

/* split link groups */
.nav-grp { display: flex; align-items: center; gap: clamp(.9rem, 1.7vw, 2.1rem); flex: 1 1 0; min-width: 0; }
.nav-grp.nav-left { justify-content: flex-start; }
.nav-grp.nav-right { justify-content: flex-end; }
.nav-grp a { color: var(--txt-light); font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 300; white-space: nowrap; position: relative; padding: .4rem 0; }
.nav-grp a::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 0; height: 1px; background: var(--gold); transition: width .45s var(--ease); }
.nav-grp a:hover::after, .nav-grp a[aria-current="page"]::after { width: 100%; }
.nav-grp a[aria-current="page"] { color: var(--ivory); }

/* language switcher */
.lang { display: inline-flex; align-items: center; gap: .5rem; margin-left: clamp(.7rem, 1.6vw, 1.5rem); font-size: .72rem; letter-spacing: .12em; }
.lang a, .lang span { color: var(--txt-light-muted); text-transform: uppercase; transition: color .3s; }
.lang a:hover, .lang span[title]:hover { color: var(--ivory); cursor: pointer; }
.lang .active { color: var(--gold-soft); }
.lang .sep { opacity: .35; cursor: default; }

/* hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--ivory); position: relative; z-index: 110; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 26px; height: 1.5px; background: currentColor; transition: transform .4s var(--ease), opacity .3s; }
.nav-toggle span::before { transform: translateY(-7px); position: relative; }
.nav-toggle span::after  { transform: translateY(5.5px); position: relative; }

/* mobile fullscreen menu */
.mobile-menu { display: none; }
@media (max-width: 1100px){
  .site-header .wrap { display: grid; grid-template-columns: 1fr auto 1fr; }
  .nav-grp { display: none; }
  .brand { grid-column: 2; justify-self: center; }
  .nav-toggle { display: inline-flex; grid-column: 3; justify-self: end; }
  .mobile-menu {
    position: fixed; inset: 0; z-index: 90; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.4rem;
    background: #0a0a0a; -webkit-backdrop-filter: none; backdrop-filter: none;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
    padding: 5.5rem 2rem 2rem;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-menu a { color: var(--txt-light); font-size: 1.05rem; letter-spacing: .2em; text-transform: uppercase; }
  .mobile-menu a[aria-current="page"] { color: var(--gold-soft); }
  .mobile-menu .lang { margin: 1rem 0 0; font-size: .95rem; }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
  body.nav-open .nav-toggle span { background: transparent; }
  body.nav-open .nav-toggle span::before { transform: rotate(45deg); }
  body.nav-open .nav-toggle span::after  { transform: rotate(-45deg); }
}

/* ---------- Hero (slogan-led) ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: radial-gradient(125% 95% at 50% 0%, #161616 0%, var(--ink) 55%, #050505 100%);
  color: var(--ivory); overflow: hidden; isolation: isolate;
  padding-top: clamp(7rem, 13vh, 9.5rem); padding-bottom: clamp(5rem, 10vh, 8rem);
}
.hero__media { position: absolute; inset: 0; z-index: -4; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero__scrim { position: absolute; inset: 0; z-index: -3; background: linear-gradient(180deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.28) 38%, rgba(0,0,0,.48) 70%, rgba(0,0,0,.88) 100%); }
.hero__glow { position: absolute; inset: 0; z-index: -2; background: radial-gradient(42% 34% at 50% 16%, rgba(191,160,106,.16), transparent 72%); pointer-events: none; mix-blend-mode: screen; }
.hero__layers { position: absolute; left: 0; right: 0; bottom: 0; z-index: -2; height: clamp(220px, 42vh, 460px); }
.hero__layer { position: absolute; inset: 0; color: var(--ivory); will-change: transform; }
.hero__layer svg { width: 100%; height: 100%; }
.hero__layer.l1 { opacity: .16; }
.hero__layer.l2 { opacity: .30; }
.hero__layer.l3 { opacity: .55; -webkit-mask-image: linear-gradient(to top,#000 40%,transparent); mask-image: linear-gradient(to top,#000 40%,transparent); }
.hero__inner { text-align: center; max-width: 64rem; margin-inline: auto; transform: translateY(clamp(1.5rem, 4.5vh, 3rem)); }
.hero__emblem { width: clamp(64px, 9vw, 96px); color: var(--gold-soft); margin: 0 auto 1.6rem; }
.hero__eyebrow { font-size: .76rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.5rem; }
.hero__title { font-family: var(--serif); font-weight: 500; font-size: clamp(3rem, 9vw, 7.4rem); line-height: .95; letter-spacing: -.022em; text-wrap: balance; }
.hero__title .it { display: block; font-style: italic; color: var(--gold-soft); }
.hero__sub { margin: 1.7rem auto 0; color: var(--txt-light); font-size: clamp(1.02rem,1.4vw,1.18rem); max-width: 52ch; }
.hero__cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .6rem; font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--txt-light-muted); }
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2.4s var(--ease) infinite; }
@keyframes scrollPulse { 0%,100%{ opacity:.3; transform: scaleY(.6); transform-origin: top; } 50%{ opacity:1; transform: scaleY(1);} }

.snow { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.snow i { position: absolute; top: -12px; border-radius: 50%; background: rgba(246,242,234,.5); animation: fall linear infinite; }
@keyframes fall { to { transform: translateY(112svh); } }
@media (prefers-reduced-motion: reduce){ .snow, .hero__scroll i { display: none; } }
@media (max-height: 780px){ .hero__scroll { display: none; } }

/* ---------- Marquee (refined keyword strip) ---------- */
.marquee { background: var(--ink); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); overflow: hidden; padding: 1.4rem 0; }
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: scrollX 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem,2vw,1.7rem); color: var(--txt-light-muted); display: inline-flex; align-items: center; gap: 3.5rem; white-space: nowrap; }
.marquee span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: .7em; }
@keyframes scrollX { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ---------- Trust strip ---------- */
.strip { border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.strip .wrap { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line-light); }
@media (min-width: 760px){ .strip .wrap { grid-template-columns: repeat(4,1fr); } }
.strip .cell { background: var(--ink); padding: clamp(1.8rem,4vw,2.8rem) 1rem; text-align: center; }
.strip .num { font-family: var(--serif); font-size: clamp(1.9rem,4vw,2.7rem); color: var(--ivory); line-height: 1; }
.strip .num em { color: var(--gold); font-style: normal; }
.strip .lab { margin-top: .7rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--txt-light-muted); }

/* ---------- Figure / advisor ---------- */
.figure-frame { position: relative; }
.figure-frame .panel {
  aspect-ratio: 4/5; border-radius: var(--radius); position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.66)), radial-gradient(120% 80% at 30% 10%, #242424, #0a0a0a 75%);
  color: var(--ivory); display: flex; align-items: flex-end; box-shadow: var(--shadow-lg);
}
.figure-frame .panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.figure-frame .panel::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.82)); }
.figure-frame .panel .panel__mtn { position: absolute; inset: auto 0 0 0; height: 60%; color: var(--ivory); opacity: .22; }
.figure-frame .panel .panel__mtn svg { width: 100%; height: 100%; }
.figure-frame .panel figcaption { position: relative; z-index: 2; padding: clamp(1.4rem,3vw,2.2rem); }
.figure-frame .panel figcaption .name { font-family: var(--serif); font-size: 1.6rem; }
.figure-frame .panel figcaption .role { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); margin-top: .3rem; }
.figure-frame::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1; border: 1px solid var(--line-gold); border-radius: var(--radius); }
.signature { font-family: var(--serif); font-style: italic; font-size: 1.7rem; color: var(--gold-deep); margin-top: 1.4rem; }
.on-dark .signature, .on-ink-2 .signature { color: var(--gold-soft); }

/* ---------- Services grid ---------- */
.services-grid { display: grid; gap: 1px; background: var(--line-dark); margin-top: clamp(2.5rem,5vw,4rem); border: 1px solid var(--line-dark); }
@media (min-width: 620px){ .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px){ .services-grid { grid-template-columns: repeat(4,1fr); } }
.on-dark .services-grid, .on-ink-2 .services-grid { background: var(--line-light); border-color: var(--line-light); }
.service { background: var(--ivory-2); padding: clamp(1.8rem,3vw,2.5rem); display: flex; flex-direction: column; gap: 1rem; min-height: 230px; transition: background .5s var(--ease); position: relative; }
.on-dark .service, .on-ink-2 .service { background: var(--ink-2); }
.service:hover { background: var(--paper); }
.on-dark .service:hover, .on-ink-2 .service:hover { background: var(--ink-3); }
.service__icon { width: 38px; height: 38px; color: var(--gold-deep); stroke-width: 1; }
.on-dark .service__icon, .on-ink-2 .service__icon { color: var(--gold-soft); }
.service h3 { font-size: 1.55rem; }
.service p { font-size: .92rem; color: var(--txt-muted); }
.on-dark .service p, .on-ink-2 .service p { color: var(--txt-light-muted); }
.service__no { position: absolute; top: clamp(1.2rem,2vw,1.6rem); right: clamp(1.4rem,2vw,1.8rem); font-family: var(--serif); font-size: .95rem; color: var(--gold); opacity: .55; }

/* ---------- Service detail grid ---------- */
.svc-grid { display: grid; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); margin-top: clamp(2.5rem,5vw,4rem); }
@media (min-width: 760px){ .svc-grid { grid-template-columns: 1fr 1fr; } }
.on-dark .svc-grid, .on-ink-2 .svc-grid { background: var(--line-light); border-color: var(--line-light); }
.svc { background: var(--ivory-2); padding: clamp(1.8rem,3.4vw,2.8rem); }
.on-dark .svc, .on-ink-2 .svc { background: var(--ink-2); }
.svc__head { display: flex; align-items: center; gap: 1.1rem; }
.svc__icon { width: 34px; height: 34px; color: var(--gold-deep); stroke-width: 1; flex: none; }
.on-dark .svc__icon, .on-ink-2 .svc__icon { color: var(--gold-soft); }
.svc h3 { font-size: 1.7rem; }
.svc > p { margin-top: .9rem; color: var(--txt-muted); font-size: .96rem; }
.on-dark .svc > p, .on-ink-2 .svc > p { color: var(--txt-light-muted); }

/* ---------- Category image cards (services) ---------- */
.cat-grid { display: grid; gap: clamp(.8rem,1.5vw,1.2rem); margin-top: clamp(2.5rem,5vw,4rem); }
@media (min-width: 560px){ .cat-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px){ .cat-grid { grid-template-columns: repeat(4,1fr); } }
.cat-card { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); display: flex; align-items: flex-end; color: var(--ivory); isolation: isolate; }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.1s var(--ease); }
.cat-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.12) 58%, rgba(0,0,0,.4) 100%); }
.cat-card:hover img, .cat-card:focus-visible img { transform: scale(1.035); }
.cat-card__body { padding: clamp(1.2rem,2.2vw,1.7rem); }
.cat-card .n { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); }
.cat-card h3 { font-size: clamp(1.4rem,2vw,1.75rem); margin-top: .35rem; }
.cat-card p { font-size: .85rem; color: var(--txt-light-muted); margin-top: .45rem; opacity: 0; max-height: 0; overflow: hidden; transition: opacity .5s var(--ease), max-height .5s var(--ease); }
.cat-card:hover p, .cat-card:focus-visible p { opacity: 1; max-height: 6rem; }
@media (hover: none){ .cat-card p { opacity: 1; max-height: 6rem; } }

/* ---------- Two-tier cards (façons de faire appel) ---------- */
.tiers { display: grid; gap: clamp(1.2rem,2.5vw,2rem); margin-top: clamp(2.5rem,5vw,3.5rem); }
@media (min-width: 820px){ .tiers { grid-template-columns: 1fr 1fr; } }
.tier { border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; background: var(--ivory-2); display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.on-dark .tier, .on-ink-2 .tier { border-color: var(--line-light); background: var(--ink-2); }
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier__img { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.tier__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.tier:hover .tier__img img { transform: scale(1.05); }
.tier__body { padding: clamp(1.6rem,3.4vw,2.6rem); }
.tier .lab { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-deep); }
.on-dark .tier .lab, .on-ink-2 .tier .lab { color: var(--gold-soft); }
.tier h3 { font-size: clamp(1.6rem,2.6vw,2.15rem); margin-top: .6rem; }
.tier p { margin-top: .9rem; color: var(--txt-muted); font-size: .98rem; }
.on-dark .tier p, .on-ink-2 .tier p { color: var(--txt-light-muted); }
.tier .link-arrow { margin-top: 1.5rem; }

/* ---------- Journal / inspirations ---------- */
.journal { display: grid; gap: clamp(1.4rem,2.5vw,2.2rem); margin-top: clamp(2.5rem,5vw,3.5rem); }
@media (min-width: 760px){ .journal { grid-template-columns: repeat(3,1fr); } }
.jcard { display: block; color: inherit; }
.jcard__img { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); }
.jcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.jcard:hover .jcard__img img { transform: scale(1.05); }
.jcard .cat { margin-top: 1.1rem; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); }
.on-dark .jcard .cat, .on-ink-2 .jcard .cat { color: var(--gold-soft); }
.jcard h3 { font-size: 1.5rem; margin-top: .5rem; transition: color .3s; }
.jcard:hover h3 { color: var(--gold-deep); }
.on-dark .jcard:hover h3, .on-ink-2 .jcard:hover h3 { color: var(--gold-soft); }

/* ---------- Testimonials ---------- */
.tmts { display: grid; gap: clamp(1rem,2vw,1.4rem); margin-top: clamp(2.5rem,5vw,3.5rem); }
@media (min-width: 760px){ .tmts { grid-template-columns: repeat(3,1fr); } }
.tmt { border: 1px solid var(--line-light); border-radius: var(--radius); padding: clamp(1.6rem,3vw,2.2rem); background: rgba(246,242,234,.025); display: flex; flex-direction: column; }
.tmt .stars { color: var(--gold); letter-spacing: .25em; font-size: .82rem; }
.tmt blockquote { font-family: var(--serif); font-style: italic; font-size: 1.3rem; line-height: 1.42; margin-top: 1rem; }
.tmt .who { margin-top: 1.3rem; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); }
.on-ivory .tmt { border-color: var(--line-dark); background: #fff; }
.on-ivory .tmt blockquote { color: var(--txt-dark); }
.on-ivory .tmt .who { color: var(--gold-deep); }

/* ---------- Feature rows ---------- */
.feature { display: grid; gap: clamp(1.6rem,4vw,4rem); align-items: center; }
@media (min-width: 900px){ .feature { grid-template-columns: 1fr 1fr; } .feature.reverse .feature__media { order: 2; } }
.feature + .feature { margin-top: clamp(3rem,6vw,5.5rem); }
.feature__media { position: relative; aspect-ratio: 5/4; border-radius: var(--radius); overflow: hidden; background: radial-gradient(120% 100% at 20% 0%, #222222, #0a0a0a 80%); box-shadow: var(--shadow-lg); display: flex; align-items: flex-end; color: var(--ivory); }
.feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.feature__media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5)); pointer-events: none; }
.feature__media .tag { position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2; font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); border: 1px solid var(--line-gold); padding: .45em .9em; border-radius: 100px; background: rgba(0,0,0,.45); }
.feature__media .mtn { position: absolute; inset: auto 0 0 0; height: 55%; opacity: .2; color: var(--ivory); }
.feature__media .mtn svg { width: 100%; height: 100%; }
.feature__body .h-lg { margin-top: 1rem; }
.feature__body .lead { margin-top: 1.1rem; }
.feature__list { margin-top: 1.6rem; display: grid; gap: .85rem; }
.feature__list li { display: flex; gap: .8rem; align-items: flex-start; font-size: .96rem; color: var(--txt-muted); }
.on-dark .feature__list li, .on-ink-2 .feature__list li { color: var(--txt-light-muted); }
.feature__list li::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: .55rem; background: var(--gold); transform: rotate(45deg); }
.feature__body .btn, .feature__body .link-arrow { margin-top: 1.8rem; }

/* ---------- Experiences gallery ---------- */
.exp-grid { display: grid; gap: clamp(1rem,2vw,1.4rem); margin-top: clamp(2.5rem,5vw,4rem); }
@media (min-width: 680px){ .exp-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1040px){ .exp-grid { grid-template-columns: repeat(3,1fr); } }
.exp-card {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; color: var(--ivory); isolation: isolate;
  background: radial-gradient(130% 100% at 30% 0%, #242424, #090909 80%);
  box-shadow: var(--shadow-lg);
}
.exp-card.tall { aspect-ratio: 3/5; }
.exp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; transition: transform 1.1s var(--ease); }
.exp-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 55%, transparent 100%); }
.exp-card .mtn { position: absolute; inset: auto 0 0 0; height: 52%; opacity: .18; color: var(--ivory); z-index: -1; }
.exp-card:hover img { transform: scale(1.035); }
.exp-card__body { padding: clamp(1.5rem,3vw,2rem); }
.exp-card .season { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); }
.exp-card h3 { font-size: clamp(1.5rem,2.4vw,1.9rem); margin-top: .5rem; }
.exp-card p { font-size: .9rem; color: var(--txt-light-muted); margin-top: .5rem; }

/* ---------- Approach steps ---------- */
.approach { display: grid; gap: 1px; background: var(--line-light); margin-top: clamp(2.5rem,5vw,3.5rem); }
@media (min-width: 820px){ .approach { grid-template-columns: repeat(3,1fr); } }
.approach.four { } @media (min-width: 820px){ .approach.four { grid-template-columns: repeat(4,1fr); } }
.step { background: var(--ink); padding: clamp(2rem,4vw,3rem) clamp(1.6rem,3vw,2.4rem); }
.on-ivory .approach { background: var(--line-dark); }
.on-ivory .step { background: var(--ivory-2); }
.step__no { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.step h3 { font-size: 1.4rem; margin-top: .9rem; }
.step p { font-size: .92rem; color: var(--txt-light-muted); margin-top: .6rem; }
.on-ivory .step p { color: var(--txt-muted); }

/* ---------- Values ---------- */
.values { display: grid; gap: 1px; background: var(--line-light); margin-top: clamp(2.5rem,5vw,3.5rem); }
@media (min-width: 760px){ .values { grid-template-columns: repeat(3,1fr); } }
.value { background: var(--ink); padding: clamp(2rem,4vw,3rem) clamp(1.6rem,3vw,2.4rem); }
.value__icon { width: 34px; height: 34px; color: var(--gold); stroke-width: 1; }
.value h3 { font-size: 1.55rem; margin-top: 1.1rem; }
.value p { font-size: .94rem; color: var(--txt-light-muted); margin-top: .7rem; }

/* ---------- À votre écoute (manifeste) ---------- */
.listen { display: grid; gap: clamp(2.4rem,4.5vw,3.4rem) clamp(2rem,4vw,3.6rem); margin-top: clamp(2.6rem,5vw,4rem); }
@media (min-width: 680px){ .listen { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px){ .listen { grid-template-columns: repeat(4,1fr); } }
.listen .it { text-align: center; position: relative; padding: 0 clamp(.4rem,1.5vw,1rem); }
.listen .it .ic { width: 42px; height: 42px; color: var(--gold-soft); stroke-width: 1; margin: 0 auto 1.2rem; }
.on-ivory .listen .it .ic { color: var(--gold-deep); }
.listen .it h3 { font-size: 1.5rem; }
.listen .it p { margin-top: .7rem; font-size: .92rem; color: var(--txt-light-muted); }
.on-ivory .listen .it p { color: var(--txt-muted); }
/* dividers removed — columns separated by whitespace */

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: clamp(2rem,4vw,3rem); }
.chip { border: 1px solid var(--line-gold); color: var(--ivory); padding: .7em 1.3em; border-radius: 100px; font-size: .82rem; letter-spacing: .06em; display: inline-flex; align-items: center; gap: .6rem; transition: background .4s var(--ease), color .4s var(--ease); }
.chip:hover { background: var(--gold); color: var(--ink); }
.chip svg { width: 1.1em; height: 1.1em; color: var(--gold-soft); }
.chip:hover svg { color: var(--ink); }

/* ---------- Quote ---------- */
.quote { text-align: center; max-width: 52rem; margin-inline: auto; }
.quote__mark { font-family: var(--serif); font-size: 5rem; line-height: .4; color: var(--gold); height: 2.4rem; }
.quote blockquote { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: clamp(1.5rem,3.6vw,2.6rem); line-height: 1.32; }
.quote .cite { margin-top: 1.8rem; font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); }
.on-dark .quote .cite, .on-ink-2 .quote .cite { color: var(--gold-soft); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .display { font-size: clamp(2.2rem,5.5vw,4.4rem); }
.cta-band .lead { margin: 1.4rem auto 0; }
.cta-band .hero__cta { margin-top: 2.4rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2.4rem,5vw,4.5rem); }
@media (min-width: 920px){ .contact-grid { grid-template-columns: 0.85fr 1.15fr; } }
.contact-info .item { display: flex; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line-light); }
.contact-info .item:first-of-type { border-top: 1px solid var(--line-light); }
.contact-info .item svg { width: 22px; height: 22px; color: var(--gold-soft); flex: none; margin-top: .3rem; stroke-width: 1.2; }
.contact-info .item .k { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--txt-light-muted); }
.contact-info .item .v { font-size: 1.1rem; margin-top: .2rem; }
.contact-info .item .v a:hover { color: var(--gold-soft); }
.socials { display: flex; gap: .8rem; margin-top: 2rem; }
.socials a { width: 44px; height: 44px; border: 1px solid var(--line-light); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--ivory); transition: background .4s var(--ease), color .4s var(--ease), border-color .4s; }
.socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.socials svg { width: 18px; height: 18px; }

.form { display: grid; gap: 1.3rem; }
.form .row { display: grid; gap: 1.3rem; }
@media (min-width: 620px){ .form .row.two { grid-template-columns: 1fr 1fr; } }
.field { position: relative; display: flex; flex-direction: column; }
.field label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--txt-light-muted); margin-bottom: .55rem; }
.field input, .field select, .field textarea { font-family: var(--sans); font-weight: 300; font-size: 1rem; color: var(--ivory); background: rgba(246,242,234,.03); border: 1px solid var(--line-light); border-radius: var(--radius); padding: .95em 1.1em; transition: border-color .4s var(--ease), background .4s var(--ease); }
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(246,242,234,.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(246,242,234,.05); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23bfa06a' stroke-width='1.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1em center; }
.field select option { color: #111; }
.form .consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .82rem; color: var(--txt-light-muted); line-height: 1.5; }
.form .consent input { width: 18px; height: 18px; margin-top: .2rem; accent-color: var(--gold); }
.form .consent a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.form .btn { justify-self: start; }
.form-note { font-size: .8rem; color: var(--txt-light-muted); }
.form-status { font-size: .9rem; padding: .9rem 1.1rem; border-radius: var(--radius); display: none; }
.form-status.ok { display: block; background: rgba(191,160,106,.12); border: 1px solid var(--line-gold); color: var(--gold-soft); }
.form-status.error { display: block; background: rgba(160,55,55,.16); border: 1px solid rgba(255,190,190,.45); color: #ffd7d7; }

/* ---------- Location panel ---------- */
.loc { position: relative; overflow: hidden; isolation: isolate; border-radius: var(--radius); border: 1px solid var(--line-light); background: radial-gradient(120% 130% at 25% 0%, #1a1a1a, #090909 80%); box-shadow: var(--shadow-lg); text-align: center; padding: clamp(3.6rem,9vw,7rem) 1.5rem; }
.loc__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: -2; filter: saturate(.88) contrast(1.04) brightness(.9); }
.loc::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.5) 45%, rgba(0,0,0,.88)); }
.loc__mtn { position: absolute; inset: auto 0 0 0; height: 62%; color: var(--ivory); opacity: .14; }
.loc__mtn svg { width: 100%; height: 100%; }
.loc__body { position: relative; max-width: 46ch; margin-inline: auto; }
.loc__body .h-lg { margin-top: 1rem; }
.loc__body .lead { margin: 1.1rem auto 1.8rem; }

/* ---------- Footer ---------- */
.site-footer { background: #080808; color: var(--txt-light-muted); padding-top: clamp(3.5rem,6vw,5rem); view-transition-name: site-footer; }
.footer-top { display: grid; gap: clamp(2rem,4vw,3rem); padding-bottom: clamp(2.5rem,5vw,3.5rem); border-bottom: 1px solid var(--line-light); }
@media (min-width: 820px){ .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; } }
.footer-brand img { height: 82px; width: auto; }
.footer-brand p { margin-top: 1.2rem; max-width: 32ch; font-size: .92rem; }
.footer-brand .sig { font-family: var(--serif); font-style: italic; color: var(--gold-soft); margin-top: 1rem; font-size: 1.15rem; }
.footer-col h4 { font-family: var(--sans); font-weight: 400; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { font-size: .94rem; transition: color .3s; }
.footer-col a:hover { color: var(--ivory); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding: 1.8rem 0; font-size: .78rem; letter-spacing: .04em; }
.footer-bottom .legal-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--ivory); }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { background: radial-gradient(120% 100% at 50% 0%, #161616, var(--ink) 70%); color: var(--ivory); text-align: center; padding-top: clamp(9rem, 17vh, 13rem); padding-bottom: clamp(4rem,8vw,6rem); position: relative; overflow: hidden; }
.page-hero .breadcrumb { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--txt-light-muted); margin-bottom: 1.4rem; }
.page-hero .breadcrumb a:hover { color: var(--gold-soft); }
.page-hero .display { font-size: clamp(2.4rem,6.5vw,4.8rem); }
.page-hero .lead { margin: 1.4rem auto 0; color: var(--txt-light); }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero .hero__cta { margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.page-hero__mtn { position: absolute; inset: auto 0 0 0; height: 42%; color: var(--ivory); opacity: .14; }
.page-hero__mtn svg { width: 100%; height: 100%; }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.page-hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.56) 45%, rgba(0,0,0,.84) 100%); }
.page-hero .wrap { position: relative; z-index: 2; }

/* ---------- Cookie consent ---------- */
.cookie {
  position: fixed; left: 50%; bottom: 1.2rem; transform: translateX(-50%) translateY(140%);
  z-index: 500; width: min(640px, calc(100% - 2rem));
  background: rgba(10,10,10,.96); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--line-gold); border-radius: var(--radius); color: var(--txt-light);
  padding: 1.3rem 1.4rem; box-shadow: var(--shadow-lg);
  display: grid; gap: 1rem; transition: transform .6s var(--ease);
}
@media (min-width: 620px){ .cookie { grid-template-columns: 1fr auto; align-items: center; } }
.cookie.show { transform: translateX(-50%) translateY(0); }
.cookie p { font-size: .86rem; color: var(--txt-light-muted); }
.cookie p a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.cookie .actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.cookie .btn { padding: .7em 1.4em; font-size: .72rem; }

/* ---------- WhatsApp contact ---------- */
.whatsapp-float {
  position: fixed;
  right: max(1.2rem, env(safe-area-inset-right));
  bottom: var(--whatsapp-bottom, max(1.2rem, env(safe-area-inset-bottom)));
  z-index: 490;
  display: grid;
  place-items: center;
  width: 3.65rem;
  height: 3.65rem;
  color: #fff;
  background: #25d366;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0,0,0,.32), 0 0 0 1px rgba(0,0,0,.08);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), bottom .45s var(--ease);
}
.whatsapp-float svg { width: 2rem; height: 2rem; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 38px rgba(0,0,0,.38), 0 0 0 1px rgba(0,0,0,.08); }
.whatsapp-float:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 4px; }
@media (max-width: 619px) {
  .whatsapp-float { right: max(.9rem, env(safe-area-inset-right)); width: 3.4rem; height: 3.4rem; }
  .whatsapp-float svg { width: 1.9rem; height: 1.9rem; }
}
@media (prefers-reduced-motion: reduce) { .whatsapp-float { transition: none; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .05s; } .reveal.d2 { transition-delay: .1s; }
.reveal.d3 { transition-delay: .15s; } .reveal.d4 { transition-delay: .2s; }

/* ---------- Editorial image grade (cohesion) ---------- */
.hero__media img, .page-hero__bg, .feature__media img, .figure-frame .panel img,
.cat-card img, .exp-card img, .prop-card__img img, .tier__img img, .modal__main img {
  filter: saturate(.9) contrast(1.03) brightness(.99);
}

/* ---------- Hero entrance (slow, elegant) ---------- */
@keyframes heroIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero__inner > * { animation: heroIn 1.2s var(--ease) both; }
.hero__inner > .hero__title { animation-delay: .12s; }
.hero__inner > .hero__sub { animation-delay: .34s; }
.hero__inner > .hero__cta { animation-delay: .54s; }
@media (prefers-reduced-motion: reduce){ .hero__inner > * { animation: none; } }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1 !important; transform: none !important; } }

/* ---------- Prose (legal) ---------- */
.prose { max-width: 72ch; margin-inline: auto; }
.prose h2 { font-size: clamp(1.5rem,2.4vw,2rem); margin-top: 2.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.3rem; margin-top: 1.8rem; }
.prose p, .prose li { color: var(--txt-muted); font-size: 1rem; }
.prose p { margin-top: .9rem; }
.prose ul { margin-top: .9rem; display: grid; gap: .5rem; }
.prose ul li { position: relative; padding-left: 1.4rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .6rem; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
.prose a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose .placeholder { color: var(--gold-deep); font-style: italic; }
.prose hr { border: 0; height: 1px; background: var(--line-gold); margin: 2.4rem 0; }

/* ---------- FAQ (accordion, no-JS) ---------- */
.faq { max-width: 66rem; margin: clamp(2.5rem,5vw,3.5rem) auto 0; display: grid; gap: .8rem; }
.faq details { border: 1px solid var(--line-dark); border-radius: var(--radius); background: var(--ivory-2); overflow: hidden; }
.on-dark .faq details, .on-ink-2 .faq details { border-color: var(--line-light); background: var(--ink-2); }
.faq summary { list-style: none; cursor: pointer; padding: 1.2rem 1.5rem; font-family: var(--serif); font-size: clamp(1.2rem,2vw,1.45rem); line-height: 1.25; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-deep); font-family: var(--sans); font-weight: 300; font-size: 1.6rem; line-height: 1; transition: transform .35s var(--ease); flex: none; }
.on-dark .faq summary::after, .on-ink-2 .faq summary::after { color: var(--gold-soft); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold-deep); }
.on-dark .faq summary:hover, .on-ink-2 .faq summary:hover { color: var(--gold-soft); }
.faq details > div { padding: 0 1.5rem 1.4rem; color: var(--txt-muted); font-size: .98rem; line-height: 1.8; max-width: 62ch; }
.on-dark .faq details > div, .on-ink-2 .faq details > div { color: var(--txt-light-muted); }

/* ---------- Skip link & misc ---------- */
.skip { position: absolute; left: -999px; top: 0; z-index: 2100; background: var(--gold); color: var(--ink); padding: .8em 1.2em; letter-spacing: .1em; }
.skip:focus { left: 1rem; top: 1rem; }
.text-gold { color: var(--gold-deep); } .on-dark .text-gold, .on-ink-2 .text-gold { color: var(--gold-soft); }
