/* ═══════════════════════════════════════════════════════════════
   CABINET CHARRIÈRE · Étude d'avocats Genève · démo Khoma
   DA inspirée Advorus (Webflow legal) · serif premium + gold accent
   Mobile-first · navy/champagne/cream
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
  min-width: 0;
  position: relative;
}

/* ═══════════════ PREMIUM LAYER · dégradé beige diagonal ambient ═══════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(244, 240, 230, 0.85) 0%, rgba(244, 240, 230, 0.30) 30%, transparent 55%, rgba(232, 226, 210, 0.35) 80%, rgba(232, 226, 210, 0.70) 100%),
    linear-gradient(45deg, transparent 0%, rgba(197, 165, 114, 0.04) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(197, 165, 114, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 82% 82%, rgba(197, 165, 114, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ═══════════════ SCROLL PROGRESS BAR · gold thin ═══════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  z-index: 200;
  pointer-events: none;
  transition: width 80ms linear;
  box-shadow: 0 0 12px rgba(197, 165, 114, 0.55);
  animation: progressShimmer 3s linear infinite;
}
@keyframes progressShimmer {
  to { background-position: -200% 0; }
}

/* ═══════════════ CUSTOM CURSOR · gold orb (desktop only) ═══════════════ */
.cursor-orb {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 300;
  transform: translate(-50%, -50%);
  transition: width 260ms var(--ease), height 260ms var(--ease),
              border-color 260ms var(--ease), opacity 260ms var(--ease),
              background 260ms var(--ease);
  mix-blend-mode: difference;
  opacity: 0;
  will-change: transform;
}
.cursor-orb.is-visible { opacity: 1; }
.cursor-orb.is-hover {
  width: 52px;
  height: 52px;
  border-color: var(--gold-light);
  background: rgba(197, 165, 114, 0.12);
}
.cursor-orb.is-link {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-color: var(--gold);
}
@media (hover: none), (max-width: 980px) {
  .cursor-orb { display: none; }
}
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, .header__burger, [role="button"], input, textarea, select { cursor: none; }
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.1; }

/* ─── Tokens ─── */
:root {
  --ink:           #0C1B2E;   /* Navy ink */
  --ink-2:         #1F2C3F;   /* Navy soft */
  --ink-3:         #545E72;   /* Slate medium */
  --ink-4:         #8B92A3;   /* Slate light */
  --gold:          #C5A572;   /* Champagne gold accent */
  --gold-light:    #D9C19A;   /* Champagne light */
  --gold-soft:     rgba(197, 165, 114, 0.14);
  --bg:            #FFFFFF;
  --bg-cream:      #F4F0E6;   /* Cream warm */
  --bg-soft:       #FAF8F4;
  --border:        #E8E2D2;
  --border-soft:   #F0EBDD;

  --r-pill:        999px;
  --r-card:        12px;
  --r-card-lg:     20px;

  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --spring:        cubic-bezier(0.34, 1.36, 0.64, 1);
  --t-fast:        180ms;
  --t-base:        320ms;
  --t-med:         540ms;
  --t-slow:        800ms;
}

/* ─── Utilities ─── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.container--narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

.serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--ink);
}
.serif em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
}
.tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--spring),
              box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: white;
}
.btn--primary:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 27, 46, 0.28);
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197, 165, 114, 0.32);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.btn__arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: transform var(--t-fast) var(--ease);
}
.btn--gold .btn__arrow { background: var(--ink); color: white; }
.btn--ghost .btn__arrow { background: var(--bg-cream); }
.btn:hover .btn__arrow { transform: rotate(-45deg); }
.btn__arrow svg { width: 11px; height: 11px; }

/* ─── Header sticky ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--t-base) var(--ease);
}
.header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 4px 14px rgba(12, 27, 46, 0.06); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.header__logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}
.header__logo-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 12px;
  flex-shrink: 0;
}
.header__nav {
  display: flex;
  gap: 36px;
}
.header__nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  transition: color var(--t-fast) var(--ease);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.header__nav a:hover::after,
.header__nav a.is-current::after { transform: scaleX(1); }
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px 11px 18px;
  background: var(--ink);
  color: white;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 500;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--spring);
}
.header__cta:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); }
.header__cta svg { width: 12px; height: 12px; transition: transform var(--t-fast) var(--ease); }
.header__cta:hover svg { transform: translate(2px, -2px); }

/* ─── Menu burger mobile ─── */
.header__burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.header__burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: white;
  border-radius: 1px;
  transition: transform 320ms var(--ease),
              top 240ms var(--ease) 120ms,
              opacity 200ms var(--ease);
}
.header__burger span:nth-child(1) { top: 16px; }
.header__burger span:nth-child(2) { top: 21px; }
.header__burger span:nth-child(3) { top: 26px; }
.header__burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); transition: top 240ms var(--ease), transform 320ms var(--ease) 120ms; }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); transition: top 240ms var(--ease), transform 320ms var(--ease) 120ms; }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
  padding: 96px 28px 36px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 360ms var(--ease),
              transform 360ms var(--ease);
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav__list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: white;
}
.mobile-nav__list a span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(197, 165, 114, 0.7);
  text-transform: uppercase;
}
.mobile-nav__list a.is-current { color: var(--gold); }
.mobile-nav__foot {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.mobile-nav__phone {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 18px;
  color: white;
}
.mobile-nav__phone-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mobile-nav__cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
}
body.no-scroll { overflow: hidden; }

/* ═══════════════ HERO TITLE REVEAL · stagger mots ═══════════════ */
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal-word.is-visible { opacity: 1; transform: translateY(0); }

/* ═══════════════ SECTION DIVIDER · gold ligne animée ═══════════════ */
.section-divider {
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
  transition: width 1400ms var(--ease);
}
.section-divider.is-visible { width: 80%; max-width: 480px; }

/* ═══════════════ HOVER TILT · cards ═══════════════ */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 480ms var(--ease);
  will-change: transform;
}
.tilt-card__inner {
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 280ms var(--ease);
  transform-style: preserve-3d;
}
.tilt-card:hover .tilt-card__inner { transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(8px); }

/* ═══════════════ AWARDS MARQUEE · partenaires défilants ═══════════════ */
.awards {
  padding: clamp(40px, 5vw, 64px) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.awards__label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.awards__track-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.awards__track {
  display: flex;
  gap: clamp(48px, 6vw, 96px);
  width: max-content;
  animation: awardsScroll 38s linear infinite;
}
.awards__item {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
}
.awards__item::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes awardsScroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .awards__track { animation: none; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 96px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero__copy { max-width: 600px; }
.hero__copy .tag { margin-bottom: 32px; }
.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__cta-group { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  background: var(--bg-cream);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s var(--ease);
}
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 27, 46, 0.35) 100%);
  pointer-events: none;
}
.hero__visual-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: white;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: 0.005em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* ─── Stats trust bar ─── */
.trust {
  padding: clamp(40px, 4vw, 64px) 0;
  background: var(--ink);
  color: white;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
}
.trust__item { border-left: 1px solid rgba(255,255,255,0.14); padding-left: clamp(16px, 2vw, 28px); }
.trust__item:first-child { border-left: 0; padding-left: 0; }
.trust__value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 6px;
}
.trust__value sup { font-size: 0.5em; vertical-align: super; }
.trust__label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

/* ─── Section ─── */
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section--cream { background: var(--bg-cream); }
.section--ink { background: var(--ink); color: white; }
.section__head { margin-bottom: clamp(40px, 5vw, 64px); max-width: 900px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head .tag { margin-bottom: 22px; }
.section__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(34px, 5.2vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--ink);
}
.section--ink .section__title { color: white; }
.section__title em { font-style: italic; color: var(--gold); }
.section__lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-3);
  line-height: 1.65;
  margin-top: 20px;
  max-width: 640px;
}
.section--ink .section__lead { color: rgba(255,255,255,0.7); }

/* ─── About ─── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.about__visual {
  aspect-ratio: 4/5;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  background: var(--bg-cream);
}
.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.about__visual:hover img { transform: scale(1.04); }
.about__text p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.about__text p:last-child { margin-bottom: 0; }
.about__text strong {
  color: var(--ink);
  font-weight: 600;
}
.about__quote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--bg-soft);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.45;
}

/* ─── Domaines · 5 cards numérotés 01-05 ─── */
.domains__list { display: flex; flex-direction: column; }
.domain-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(28px, 4vw, 44px) clamp(12px, 2vw, 20px);
  border-bottom: 1px solid var(--border);
  align-items: center;
  position: relative;
  transition: background var(--t-base) var(--ease);
  cursor: pointer;
}
.domain-row:first-child { border-top: 1px solid var(--border); }
.domain-row:hover { background: var(--bg-cream); }
.domain-row__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.domain-row__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.domain-row__title em { font-style: italic; color: var(--gold); }
.domain-row__tags {
  font-size: 12.5px;
  color: var(--ink-3);
  text-align: right;
  letter-spacing: 0.02em;
}
.domain-row__tag::before { content: '·'; margin: 0 4px; }
.domain-row__tag:first-child::before { content: ''; margin: 0; }
.domain-row__arrow {
  position: absolute;
  right: clamp(12px, 2vw, 20px);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity var(--t-base) var(--ease),
              transform var(--t-base) var(--ease);
}
.domain-row__arrow svg { width: 13px; height: 13px; }
.domain-row:hover .domain-row__arrow { opacity: 1; transform: translateX(0); }
.domain-row:hover .domain-row__tags { opacity: 0; }

/* ─── Process · 4 piliers ─── */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.process__item {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.process__num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.process__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: white;
  margin-bottom: 14px;
}
.process__text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ─── Cas · grid 2x2 ─── */
.cases__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3.4vw, 48px);
}
.case-card {
  display: block;
  transition: transform var(--t-base) var(--spring);
}
.case-card:hover { transform: translateY(-6px); }
.case-card__media {
  aspect-ratio: 16/10;
  background: var(--bg-cream);
  border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.case-card:hover .case-card__media img { transform: scale(1.05); }
.case-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.case-card__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 10px;
}
.case-card__text { font-size: 14.5px; color: var(--ink-3); line-height: 1.6; max-width: 460px; }
.case-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.case-card__link svg { width: 12px; height: 12px; transition: transform var(--t-fast) var(--ease); }
.case-card:hover .case-card__link svg { transform: translate(3px, -3px); }

/* ─── Avocats · grid 4 portraits ─── */
.lawyers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.lawyer-card { transition: transform var(--t-base) var(--spring); }
.lawyer-card:hover { transform: translateY(-6px); }
.lawyer-card__media {
  aspect-ratio: 3/4;
  background: var(--bg-cream);
  border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.lawyer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: filter 600ms var(--ease), transform 1.2s var(--ease);
}
.lawyer-card:hover .lawyer-card__media img { filter: grayscale(0); transform: scale(1.03); }
.lawyer-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.lawyer-card__role { font-size: 12.5px; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.lawyer-card__bar { font-size: 12px; color: var(--ink-3); }

/* ─── Testimonials ─── */
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
}
.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(28px, 3vw, 36px);
  transition: transform var(--t-base) var(--spring), box-shadow var(--t-base) var(--ease);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(12, 27, 46, 0.08);
}
.section--cream .testi-card { background: white; }
.testi-card__quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 12px;
  letter-spacing: -0.05em;
}
.testi-card__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
}
.testi-card__author { padding-top: 18px; border-top: 1px solid var(--border); }
.testi-card__name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 500; color: var(--ink); }
.testi-card__role { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }

/* ─── Final CTA ink ─── */
.cta-final {
  background: var(--ink);
  color: white;
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.12) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(40px);
}
.cta-final__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(36px, 6vw, 80px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: white;
  position: relative;
  z-index: 1;
}
.cta-final__title em { font-style: italic; color: var(--gold); }
.cta-final__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.cta-final .btn--gold { position: relative; z-index: 1; padding: 18px 32px; font-size: 15px; }

/* ─── Footer ─── */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(60px, 7vw, 100px) 0 clamp(36px, 4vw, 56px);
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer__brand-logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: white;
  margin-bottom: 20px;
}
.footer__brand-logo .header__logo-dot { background: var(--gold); }
.footer__brand-text { line-height: 1.65; max-width: 320px; margin-bottom: 22px; color: rgba(255, 255, 255, 0.65); }
.footer__addr { font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, 0.55); }
.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: rgba(255, 255, 255, 0.78); transition: color var(--t-fast) var(--ease); }
.footer__col a:hover { color: white; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Sticky Khoma CTA ─── */
.khoma-cta {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px 12px 22px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.35),
              0 6px 14px rgba(10, 10, 10, 0.18);
  color: white;
  transition: transform var(--t-base) var(--ease),
              opacity var(--t-base) var(--ease),
              background var(--t-fast) var(--ease);
  max-width: calc(100% - 28px);
}
.khoma-cta:hover {
  background: rgba(10, 10, 10, 0.96);
  transform: translateX(-50%) translateY(-2px);
}
.khoma-cta__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5B3DF5;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(91, 61, 245, 0.7);
  animation: khomaDotPulse 2.2s var(--ease) infinite;
}
@keyframes khomaDotPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(91, 61, 245, 0.7); transform: scale(1); }
  50% { box-shadow: 0 0 16px rgba(91, 61, 245, 1); transform: scale(1.2); }
}
.khoma-cta__text { display: flex; flex-direction: column; gap: 1px; line-height: 1.25; min-width: 0; }
.khoma-cta__title { font-family: 'Inter Tight', sans-serif; font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em; }
.khoma-cta__sub { font-size: 11.5px; color: rgba(255, 255, 255, 0.62); }
.khoma-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #5B3DF5;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: white;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--spring);
  flex-shrink: 0;
}
.khoma-cta__btn:hover { background: #4530D6; transform: translateY(-1px); }
.khoma-cta__btn svg { width: 11px; height: 11px; }
.khoma-cta.is-hidden {
  transform: translateX(-50%) translateY(140%);
  opacity: 0;
  pointer-events: none;
}

/* ─── Reveals ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease),
              transform 900ms var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ═══════════ RESPONSIVE (Mobile-first overrides) ═══════════ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { aspect-ratio: 16/10; max-width: 100%; }
  .trust__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust__item { border-left: 0; border-top: 1px solid rgba(255,255,255,0.14); padding-left: 0; padding-top: 20px; }
  .trust__item:nth-child(-n+2) { border-top: 0; padding-top: 0; }
  .about__grid { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .lawyers__grid { grid-template-columns: 1fr 1fr; }
  .testi__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__burger { display: inline-flex; align-items: center; justify-content: center; }
  .header__inner { height: 64px; padding: 0 18px; }
  .header__logo { font-size: 16px; }

  .hero { padding: 32px 0 64px; }
  .hero__title { font-size: clamp(34px, 9vw, 56px); }
  .hero__sub { font-size: 15px; }
  .hero__visual { aspect-ratio: 4/5; }

  .trust__inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust__value { font-size: clamp(28px, 9vw, 40px); }
  .trust__label { font-size: 11.5px; }

  .domain-row { grid-template-columns: 50px 1fr; gap: 14px; padding: 22px 0; }
  .domain-row__tags { display: none; }
  .domain-row__arrow { display: none; }
  .domain-row__title { font-size: clamp(20px, 5.5vw, 28px); }

  .process__grid { grid-template-columns: 1fr; }
  .lawyers__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .khoma-cta {
    bottom: 14px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: calc(100% - 20px);
    width: calc(100% - 20px);
    padding: 8px 8px 8px 18px;
    gap: 14px;
    align-items: center;
  }
  .khoma-cta:hover { transform: translateX(-50%) translateY(-1px); }
  .khoma-cta.is-hidden { transform: translateX(-50%) translateY(140%); }
  .khoma-cta__dot { width: 7px; height: 7px; }
  .khoma-cta__text { flex: 1 1 auto; min-width: 0; gap: 2px; }
  .khoma-cta__title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.2; }
  .khoma-cta__sub { font-size: 10.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.25; }
  .khoma-cta__btn { padding: 10px 16px; font-size: 12.5px; flex-shrink: 0; }
}
@media (max-width: 420px) {
  .khoma-cta { padding: 8px 8px 8px 14px; gap: 10px; }
  .khoma-cta__title { font-size: 12.5px; }
  .khoma-cta__sub { font-size: 10px; }
  .khoma-cta__btn { padding: 9px 14px; font-size: 12px; }
  .lawyers__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM PLUS · 7 EFFETS POUR JUSTIFIER +3K CHF
   ═══════════════════════════════════════════════════════════════ */

/* ━━━━━━━━━━ 1. PRELOADER signature ━━━━━━━━━━ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity 700ms var(--ease), visibility 700ms var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.preloader__logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}
.preloader__logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: preDotFadeIn 600ms var(--ease) 200ms forwards;
}
.preloader__logo-text { opacity: 0; transform: translateX(-12px); animation: preTextSlide 800ms var(--ease) 400ms forwards; }
@keyframes preDotFadeIn { to { opacity: 1; } }
@keyframes preTextSlide { to { opacity: 1; transform: translateX(0); } }

.preloader__bar-wrap {
  width: clamp(180px, 22vw, 260px);
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  overflow: hidden;
  position: relative;
}
.preloader__bar {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
  animation: preBarLoad 1400ms var(--ease) 600ms forwards;
}
@keyframes preBarLoad { to { transform: scaleX(1); } }
.preloader__count {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

/* ━━━━━━━━━━ 2. CINEMAGRAPH hero (subtle CSS animation) ━━━━━━━━━━ */
.hero__visual {
  position: relative;
}
.hero__visual img {
  animation: cinemagraphZoom 18s var(--ease) infinite alternate;
  will-change: transform;
}
@keyframes cinemagraphZoom {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.06) translateX(-1.5%); }
}
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 75%, rgba(255, 200, 100, 0.16) 0%, transparent 25%),
    radial-gradient(circle at 30% 60%, rgba(120, 180, 255, 0.12) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  animation: cinemagraphGlow 6s var(--ease) infinite alternate;
}
@keyframes cinemagraphGlow {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}
.hero__visual::after {
  /* Vignette light pulsation simulating warm interior light */
  background:
    radial-gradient(circle at 75% 40%, rgba(255, 218, 145, 0.30) 0%, transparent 20%),
    linear-gradient(180deg, transparent 0%, rgba(12, 27, 46, 0.35) 100%);
  animation: cinemagraphPulse 4s var(--ease) infinite alternate;
}
@keyframes cinemagraphPulse {
  from { opacity: 0.85; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__visual img, .hero__visual::before, .hero__visual::after { animation: none; }
}

/* ━━━━━━━━━━ 3. PAGE TRANSITIONS overlay ━━━━━━━━━━ */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--ink);
  transform: translateY(-100%);
  pointer-events: none;
  transition: transform 720ms cubic-bezier(0.86, 0, 0.07, 1);
}
.page-transition.is-out { transform: translateY(0); }
.page-transition.is-in  { transform: translateY(100%); transition-duration: 800ms; }
.page-transition::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 400ms var(--ease) 200ms;
}
.page-transition.is-out::after { opacity: 1; }

/* ━━━━━━━━━━ 4. PINNED SCROLL · section Approche ━━━━━━━━━━ */
.pinned-story {
  position: relative;
  background: var(--ink);
  color: white;
}
.pinned-story__container {
  position: relative;
  /* hauteur égale à N steps × 100vh pour permettre scroll progress */
}
.pinned-story__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  padding: 0 clamp(20px, 4vw, 64px);
  overflow: hidden;
}
.pinned-story__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 78vh;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  background: var(--ink-2);
  margin-left: auto;
}
.pinned-story__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 700ms var(--ease), transform 1200ms var(--ease);
}
.pinned-story__visual-img.is-active { opacity: 1; transform: scale(1); }
.pinned-story__copy { max-width: 520px; position: relative; z-index: 2; }
.pinned-story__step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  pointer-events: none;
}
.pinned-story__step.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.pinned-story__num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.pinned-story__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: white;
  margin-bottom: 18px;
}
.pinned-story__title em { font-style: italic; color: var(--gold); }
.pinned-story__text {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}
.pinned-story__progress {
  position: absolute;
  top: 50%;
  left: clamp(12px, 2vw, 28px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
}
.pinned-story__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  transition: background var(--t-base) var(--ease), transform var(--t-base) var(--spring);
}
.pinned-story__dot.is-active { background: var(--gold); transform: scale(1.4); }
@media (max-width: 880px) {
  .pinned-story__stage { grid-template-columns: 1fr; padding: 80px 20px 40px; }
  .pinned-story__visual { display: none; }
  .pinned-story__progress { display: none; }
}

/* ━━━━━━━━━━ 5. MAGNETIC buttons + cursor blob ━━━━━━━━━━ */
.magnetic { display: inline-flex; will-change: transform; transition: transform 300ms var(--ease); }
.cursor-orb {
  border-radius: 50%;
  transition: width 320ms var(--ease), height 320ms var(--ease),
              border-radius 320ms var(--ease), background 320ms var(--ease),
              border-color 320ms var(--ease), opacity 260ms var(--ease);
}
.cursor-orb.is-blob {
  width: 64px;
  height: 64px;
  border-radius: 38% 62% 60% 40% / 40% 50% 50% 60%;
  background: rgba(197, 165, 114, 0.16);
  border-color: var(--gold);
  animation: blobMorph 4s var(--ease) infinite alternate;
}
@keyframes blobMorph {
  0%   { border-radius: 38% 62% 60% 40% / 40% 50% 50% 60%; }
  50%  { border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; }
  100% { border-radius: 50% 50% 70% 30% / 35% 60% 40% 65%; }
}

/* ━━━━━━━━━━ 6. CALCULATEUR honoraires ━━━━━━━━━━ */
.fee-calc {
  background: linear-gradient(180deg, var(--bg-cream) 0%, white 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-card-lg);
  padding: clamp(32px, 4vw, 56px);
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.fee-calc::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.18) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(35px);
}
.fee-calc__head { position: relative; z-index: 1; margin-bottom: 28px; }
.fee-calc__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.fee-calc__sub { font-size: 14px; color: var(--ink-3); line-height: 1.6; }
.fee-calc__field { position: relative; z-index: 1; margin-bottom: 22px; }
.fee-calc__field-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.fee-calc__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.fee-calc__chip {
  padding: 9px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.fee-calc__chip:hover { background: var(--bg-cream); }
.fee-calc__chip.is-active { background: var(--ink); color: white; border-color: var(--ink); }
.fee-calc__slider-wrap { display: flex; align-items: center; gap: 18px; }
.fee-calc__slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--border);
  border-radius: var(--r-pill);
  outline: none;
}
.fee-calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(197, 165, 114, 0.45);
  transition: transform var(--t-fast) var(--spring);
}
.fee-calc__slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.fee-calc__slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); cursor: pointer; border: 3px solid white; }
.fee-calc__slider-value {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
  min-width: 80px;
  text-align: right;
}
.fee-calc__output {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
}
.fee-calc__output-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.fee-calc__output-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color var(--t-fast) var(--ease);
}
.fee-calc__output-value em { font-style: italic; color: var(--gold); font-weight: 500; }
.fee-calc__note {
  width: 100%;
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-top: 6px;
}

/* ━━━━━━━━━━ 7. LANG SWITCHER ━━━━━━━━━━ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 4px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  margin-right: 14px;
}
.lang-switch button {
  padding: 6px 12px;
  background: transparent;
  border: 0;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.lang-switch button.is-active { background: var(--ink); color: white; }
.lang-switch button:not(.is-active):hover { color: var(--ink); }
@media (max-width: 760px) {
  .lang-switch { display: none; }
}
