@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600&display=swap');

/* ============================================================
   Verlavnir Conseil — brand tokens
   Navy #0e1b3d  ·  Gold #c8a35a
   ============================================================ */
:root {
  --navy:           #0e1b3d;
  --navy-2:         #142654;
  --navy-3:         #1a2f63;
  --gold:           #c8a35a;
  --gold-soft:      #d8b974;
  --gold-glow:      rgba(200, 163, 90, 0.22);

  --accent:         var(--gold);
  --accent-hover:   #b08a45;
  --accent-glow:    var(--gold-glow);

  --text:           #1f2937;
  --text-light:     #5b6577;
  --text-mute:      #94a0b3;

  --bg:             #f7f4ee;
  --bg-soft:        #fbf9f4;
  --white:          #ffffff;

  --card-border:    rgba(14, 27, 61, 0.08);
  --header-bg:      rgba(247, 244, 238, 0.92);
  --header-border:  rgba(14, 27, 61, 0.06);
  --input-bg:       rgba(14, 27, 61, 0.04);

  --radius:         18px;
  --radius-sm:      10px;
  --shadow:         0 6px 32px rgba(14, 27, 61, 0.08);
  --shadow-lg:      0 24px 64px rgba(14, 27, 61, 0.14);
  --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Map to gateka-core connect modal vars */
  --gk-bg:          var(--white);
  --gk-bg-surface:  var(--white);
  --gk-text:        var(--text);
  --gk-text-muted:  var(--text-light);
  --gk-border:      var(--card-border);
  --gk-primary:     var(--gold);
  --gk-accent:      var(--gold);
  --gk-radius:      var(--radius-sm);
  --gk-font:        'Inter', -apple-system, system-ui, sans-serif;
}

[data-theme="dark"] {
  --navy:           #f5efe3;
  --navy-2:         #d8c9a8;
  --gold:           #d8b974;
  --gold-soft:      #e7cc8d;

  --text:           #f5efe3;
  --text-light:     #c8c2b4;
  --text-mute:      #8b8576;

  --bg:             #0a142d;
  --bg-soft:        #0f1c3d;
  --white:          #142654;

  --card-border:    rgba(216, 185, 116, 0.14);
  --header-bg:      rgba(10, 20, 45, 0.9);
  --header-border:  rgba(216, 185, 116, 0.1);
  --input-bg:       rgba(255, 255, 255, 0.05);

  --shadow:         0 6px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg:      0 24px 64px rgba(0, 0, 0, 0.45);
}

/* ===== reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.serif { font-family: 'Cormorant Garamond', 'Times New Roman', serif; font-weight: 500; }

/* ===== lang switch fade ===== */
body.lang-switching > *:not(.header) {
  opacity: 0.3 !important; filter: blur(3px) !important;
  transition: opacity 0.3s ease, filter 0.3s ease !important;
}
body.lang-fadein > *:not(.header) { animation: langFadeIn 0.35s ease forwards; }
@keyframes langFadeIn {
  from { opacity: 0.3; filter: blur(3px); }
  to   { opacity: 1;   filter: blur(0); }
}

/* ===== reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s var(--transition), transform .7s var(--transition); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ===== container ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  transition: background var(--transition), border-color var(--transition);
}
.header.scrolled { box-shadow: 0 2px 18px rgba(14, 27, 61, 0.06); }
.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.header-logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.header-logo .mark {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1.5px solid var(--gold);
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600;
  color: var(--navy);
  background: linear-gradient(135deg, transparent 50%, var(--gold-glow) 50%);
  letter-spacing: -0.04em;
}
[data-theme="dark"] .header-logo .mark { color: var(--gold); }
.header-logo .word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy);
}
[data-theme="dark"] .header-logo .word { color: var(--text); }
.header-logo .word em { font-style: normal; color: var(--gold); }

.header-right { display: flex; align-items: center; gap: 28px; }

.nav-list {
  display: flex; gap: 28px; align-items: center;
  font-size: 14px; font-weight: 500;
}
.nav-list a {
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}
.nav-list a:hover, .nav-list a.active { color: var(--text); }
.nav-list a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--gold);
}
.nav-list .nav-features {
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
}

/* dropdown for signed-in users */
.nav-site { position: relative; }
.nav-site-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0; background: transparent; border: none; cursor: pointer;
  font-family: inherit; font-size: inherit; font-weight: inherit;
  color: var(--text-light); line-height: inherit;
}
.nav-site-btn i { font-size: 0.7em; opacity: .7; transition: transform .15s ease; }
.nav-site.is-open .nav-site-btn i { transform: rotate(180deg); }
.nav-site-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 170px; padding: 6px;
  display: none; flex-direction: column;
  z-index: 100;
}
.nav-site.is-open .nav-site-menu { display: flex; }
.nav-site-menu a {
  padding: 8px 12px; border-radius: 6px;
  font-size: 13px; color: var(--text);
  transition: background .12s ease, color .12s ease;
}
.nav-site-menu a:hover { background: var(--input-bg); color: var(--gold); }
.nav-site-menu a.active { color: var(--gold); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle, .theme-toggle {
  background: transparent; border: 1px solid var(--card-border);
  border-radius: 999px; cursor: pointer; padding: 6px 10px;
  display: inline-flex; align-items: center;
  color: var(--text); transition: all var(--transition);
}
.lang-toggle { gap: 4px; font-size: 11px; font-weight: 600; letter-spacing: .12em; padding: 6px 12px; position: relative; }
.lang-option { color: var(--text-mute); padding: 0 4px; transition: color var(--transition); position: relative; z-index: 2; }
.lang-option--active { color: var(--text); }
.lang-toggle:hover { border-color: var(--gold); }

.theme-toggle { width: 36px; height: 36px; padding: 0; justify-content: center; }
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.mobile-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; transition: transform .25s ease, opacity .25s ease; }

/* ============================================================
   HEADER AUTH (Connexion pill + signed-in dropdown)
   site-scoped per gateka-core convention — themed in navy + gold
   ============================================================ */
.header-auth {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}

/* Anonymous — primary CTA pill (gold on cream header) */
.header-auth--out {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 2px 12px var(--gold-glow);
}
.header-auth--out:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  box-shadow: 0 6px 18px var(--gold-glow);
  transform: translateY(-1px);
}
.header-auth--out svg { transition: transform var(--transition); }
.header-auth--out:hover svg { transform: translateX(3px); }
[data-theme="dark"] .header-auth--out { color: #0e1b3d; }

/* Signed-in — quieter avatar pill */
.header-auth--in {
  padding: 4px 12px 4px 4px;
  gap: 8px;
  background: var(--input-bg);
  color: var(--text);
  border-color: var(--card-border);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}
.header-auth--in:hover { border-color: var(--gold); background: var(--white); }
.header-auth-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: -0.02em;
  overflow: hidden; flex: none;
}
[data-theme="dark"] .header-auth-avatar { color: #0e1b3d; }
.header-auth-avatar--img { padding: 0; background: var(--input-bg); }
.header-auth-avatar--img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.header-auth-name {
  font-size: 13px; font-weight: 600; color: var(--text);
}
.header-auth-chev {
  color: var(--text-mute);
  transition: transform var(--transition);
  margin-right: 2px;
}
.header-auth-wrap.is-open .header-auth-chev { transform: rotate(180deg); }

/* Signed-in dropdown panel */
.header-auth-wrap { position: relative; }
.header-auth-menu {
  position: absolute; top: calc(100% + 12px); right: 0;
  min-width: 248px; padding: 8px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 1001;
}
.header-auth-wrap.is-open .header-auth-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.header-auth-menu-head {
  padding: 10px 12px 14px;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 6px;
}
.header-auth-menu-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; color: var(--text);
  letter-spacing: -0.005em;
}
.header-auth-menu-email {
  font-size: 12px; color: var(--text-light);
  margin-top: 2px; word-break: break-all;
}
.header-auth-menu-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.header-auth-menu-item:hover {
  background: var(--input-bg);
  color: var(--gold);
}
.header-auth-menu-item--danger:hover {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

@media (max-width: 768px) {
  .header-auth-name { display: none; }
  .header-auth { padding: 8px 14px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  color: #f5efe3;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before, .hero::after {
  content: ""; position: absolute; pointer-events: none; opacity: .55;
}
.hero::before {
  /* dotted corner tl */
  top: 38px; left: 38px; width: 110px; height: 110px;
  background-image: radial-gradient(circle, rgba(216,185,116,.55) 1.2px, transparent 1.4px);
  background-size: 12px 12px;
  mask-image: linear-gradient(135deg, #000 35%, transparent 70%);
  -webkit-mask-image: linear-gradient(135deg, #000 35%, transparent 70%);
}
.hero::after {
  /* dotted corner br */
  bottom: 38px; right: 38px; width: 110px; height: 110px;
  background-image: radial-gradient(circle, rgba(216,185,116,.55) 1.2px, transparent 1.4px);
  background-size: 12px 12px;
  mask-image: linear-gradient(315deg, #000 35%, transparent 70%);
  -webkit-mask-image: linear-gradient(315deg, #000 35%, transparent 70%);
}
.hero-arc {
  position: absolute; right: -180px; top: 50%; transform: translateY(-50%);
  width: 820px; height: 820px;
  pointer-events: none; opacity: .35; z-index: 0;
}
.hero-arc svg { width: 100%; height: 100%; }
.hero-inner { position: relative; z-index: 2; width: 100%; }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-mark {
  text-align: center; padding: 20px;
}
.hero-mark .mono {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(110px, 14vw, 180px); font-weight: 500;
  line-height: 1; letter-spacing: -0.04em;
  display: inline-block; position: relative;
}
.hero-mark .mono span:first-child { color: #fff; }
.hero-mark .mono span:last-child  { color: var(--gold); }
.hero-mark .mono::after {
  content: ""; position: absolute; left: 5%; right: 5%; bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  border-radius: 2px;
  filter: drop-shadow(0 0 6px var(--gold-glow));
}
.hero-mark .word {
  display: block;
  margin-top: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 44px); font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: #f5efe3;
}
.hero-mark .conseil {
  display: block;
  margin-top: 6px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold);
}
.hero-mark .triplet {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 22px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: rgba(245, 239, 227, 0.7);
}
.hero-mark .triplet .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.hero-text .eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-text .eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--gold);
}
.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.8vw, 72px); font-weight: 500;
  line-height: 1.04; letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: #fff;
}
.hero-text h1 em { font-style: normal; color: var(--gold); }
.hero-text .lead {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.7;
  color: rgba(245, 239, 227, 0.85);
  max-width: 50ch;
  margin-bottom: 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  cursor: pointer; transition: all var(--transition);
  border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

@media (max-width: 900px) {
  .hero { padding: 120px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-mark { order: -1; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  position: relative;
  padding: 110px 0;
}
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #f5efe3; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .section-eyebrow { color: var(--gold); }
.section--navy .section-eyebrow::before { background: var(--gold); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.section-eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.4vw, 56px); font-weight: 500;
  line-height: 1.08; letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 18px;
  max-width: 22ch;
}
.section--navy .section-title { color: #fff; }
.section-subtitle {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-light);
  max-width: 60ch; line-height: 1.7;
  margin: 0 0 56px;
}
.section--navy .section-subtitle { color: rgba(245,239,227,0.78); }
.section-header { margin-bottom: 48px; }

/* ============================================================
   MISSION strip — 3 values
   ============================================================ */
.values {
  background: var(--white);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 56px 0;
}
.values-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.value-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 0 32px;
  border-left: 1px solid var(--card-border);
}
.value-item:first-child { border-left: 0; padding-left: 0; }
.value-item:last-child  { padding-right: 0; }
.value-icon {
  width: 44px; height: 44px; min-width: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 17px;
}
.value-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin: 0 0 6px; color: var(--text);
}
.value-body p {
  font-size: 14px; color: var(--text-light); line-height: 1.6; margin: 0;
}
@media (max-width: 880px) {
  .values-row { grid-template-columns: 1fr; gap: 28px; }
  .value-item { padding: 0; border-left: 0; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text .lead {
  font-size: clamp(17px, 1.4vw, 20px);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 22px;
  max-width: 26ch;
}
.about-text p {
  font-size: 15px; line-height: 1.75; color: var(--text-light); margin-bottom: 16px;
}
.about-text .bullet {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500;
  color: var(--text); margin: 8px 0;
}
.about-text .bullet::before {
  content: ""; width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.about-quote {
  position: relative;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
}
.about-quote::before {
  content: """;
  position: absolute; top: -22px; left: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; line-height: 1;
  color: var(--gold); opacity: 0.6;
}
.about-quote em { font-style: normal; color: var(--gold); }
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   EXPERTISES — 3 verbs, navy background
   ============================================================ */
.expertises-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 24px;
  border-top: 1px solid rgba(216, 185, 116, 0.18);
}
.expertise {
  padding: 56px 36px;
  border-right: 1px solid rgba(216, 185, 116, 0.18);
  text-align: center;
  position: relative;
}
.expertise:last-child { border-right: 0; }
.expertise-icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 24px;
}
.expertise h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}
.expertise p {
  font-size: 14px; line-height: 1.7;
  color: rgba(245, 239, 227, 0.78);
  max-width: 28ch; margin: 0 auto;
}
.expertise-divider {
  display: block; width: 50px; height: 1px;
  background: var(--gold); margin: 18px auto 22px; opacity: .6;
}
@media (max-width: 880px) {
  .expertises-grid { grid-template-columns: 1fr; }
  .expertise { border-right: 0; border-bottom: 1px solid rgba(216, 185, 116, 0.14); padding: 44px 24px; }
  .expertise:last-child { border-bottom: 0; }
}

/* ============================================================
   APPROACH — 3 steps numbered
   ============================================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 18px;
}
.step {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 500;
  color: var(--gold);
  line-height: 1; margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.step h3 {
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text);
  margin: 0 0 10px;
}
.step p { font-size: 14px; line-height: 1.7; color: var(--text-light); margin: 0; }
@media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ============================================================
   FORMATIONS — 3 cards
   ============================================================ */
.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.program {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.program::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: var(--gold);
}
.program:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.program-icon {
  width: 52px; height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 19px;
  margin-bottom: 22px;
}
.program h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.program .lead {
  font-size: 14px; color: var(--text-light); line-height: 1.65;
  margin-bottom: 20px;
}
.program ul.bullets { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.program ul.bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text);
}
.program ul.bullets li::before {
  content: "✓"; color: var(--gold); font-weight: 700; font-size: 12px;
  width: 18px; text-align: center;
}
.program .public {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--card-border);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mute);
}
@media (max-width: 980px) { .programs-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ============================================================
   FOUNDERS
   ============================================================ */
.founders-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 16px;
}
.founder {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 36px;
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.founder-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.04em;
  box-shadow: 0 0 0 6px var(--gold-glow);
}
[data-theme="dark"] .founder-photo { color: var(--gold); }
.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text); margin: 0;
}
.founder-name em { font-style: normal; color: var(--gold); }
.founder-role {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin: 4px 0 24px;
}
.founder-bullets { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 320px; margin-bottom: 24px; }
.founder-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-light);
  text-align: left;
}
.founder-bullets li i { color: var(--gold); width: 20px; text-align: center; }
.founder-exp {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mute);
  padding-top: 18px; border-top: 1px solid var(--card-border);
  width: 100%;
}
@media (max-width: 880px) { .founders-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ============================================================
   INTERVENTIONS strip
   ============================================================ */
.interventions {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.interventions-row {
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center;
}
.interventions-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.interventions-list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.interv {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--text);
}
.interv i { color: var(--gold); width: 22px; text-align: center; font-size: 16px; }
@media (max-width: 880px) {
  .interventions-row { grid-template-columns: 1fr; }
  .interventions-list { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   DIFFERENTIATOR — promise
   ============================================================ */
.promise {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 16px;
  text-align: center;
}
.promise-card {
  padding: 36px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--card-border);
}
.promise-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px;
}
.promise-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: var(--text); margin: 0;
}
.promise-card h4 em { font-style: normal; color: var(--gold); }
.promise-signature {
  text-align: center; margin-top: 56px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
}
.promise-signature::before, .promise-signature::after {
  content: ""; display: inline-block; width: 32px; height: 1px;
  background: var(--gold); vertical-align: middle; margin: 0 18px;
}
@media (max-width: 880px) { .promise { grid-template-columns: 1fr; gap: 14px; } }

/* ============================================================
   FOOTER (contact)
   ============================================================ */
.footer {
  background: var(--navy);
  color: #f5efe3;
  padding: 96px 0 36px;
  position: relative;
  overflow: hidden;
}
.footer::before, .footer::after {
  content: ""; position: absolute; pointer-events: none; opacity: .35;
}
.footer::before {
  bottom: -160px; right: -120px; width: 480px; height: 480px;
  border: 1px solid var(--gold); border-radius: 50%;
}
.footer::after {
  top: 50px; left: 40px; width: 90px; height: 90px;
  background-image: radial-gradient(circle, rgba(216,185,116,.5) 1.2px, transparent 1.4px);
  background-size: 12px 12px;
  mask-image: linear-gradient(135deg, #000 35%, transparent 70%);
  -webkit-mask-image: linear-gradient(135deg, #000 35%, transparent 70%);
}
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  position: relative; z-index: 2;
}
.footer-left .section-eyebrow,
.footer-right .section-eyebrow { color: var(--gold); }
.footer-left .section-eyebrow::before,
.footer-right .section-eyebrow::before { background: var(--gold); }
.footer-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.6vw, 48px); font-weight: 500;
  line-height: 1.05; color: #fff;
  margin: 0 0 18px;
}
.footer-left p {
  color: rgba(245,239,227,0.78); font-size: 15px;
  line-height: 1.7;
  max-width: 40ch;
  margin-bottom: 28px;
}
.footer-info { display: grid; gap: 14px; margin-top: 14px; }
.footer-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  color: rgba(245,239,227,0.85); font-size: 15px;
}
.footer-info-item i {
  width: 36px; height: 36px;
  border: 1px solid rgba(216,185,116,0.45);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 13px;
  flex-shrink: 0;
}
.footer-info-item .label {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2px;
}
.footer-info-item a { color: #fff; transition: color var(--transition); }
.footer-info-item a:hover { color: var(--gold); }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(216,185,116,0.18);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-banner {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 14px; font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
}
.contact-banner i {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
.contact-banner--ok {
  background: rgba(216, 185, 116, 0.12);
  border-color: rgba(216, 185, 116, 0.45);
  color: #f5efe3;
}
.contact-banner--ok i { background: var(--gold); color: var(--navy); }
.contact-banner--err {
  background: rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.45);
  color: #f5efe3;
}
.contact-banner--err i { background: #dc2626; color: #fff; }
.form-group { position: relative; margin-bottom: 18px; }
.form-input {
  width: 100%;
  background: rgba(245,239,227,0.04);
  border: 1px solid rgba(245,239,227,0.16);
  border-radius: var(--radius-sm);
  padding: 16px 16px 8px;
  font-family: inherit; font-size: 14px;
  color: #fff;
  transition: border-color var(--transition), background var(--transition);
}
.form-input:focus {
  outline: none; border-color: var(--gold);
  background: rgba(216,185,116,0.06);
}
.form-textarea { min-height: 110px; resize: vertical; padding-top: 22px; }
.form-label {
  position: absolute; left: 16px; top: 16px;
  font-size: 14px; color: rgba(245,239,227,0.55);
  pointer-events: none;
  transition: top var(--transition), font-size var(--transition), color var(--transition);
}
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: 4px; font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.btn-send {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  background: var(--gold); color: var(--navy);
  border: 0; cursor: pointer;
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
}
.btn-send:hover { background: var(--gold-soft); transform: translateY(-1px); }

.footer-bottom {
  position: relative; z-index: 2;
  margin-top: 72px; padding-top: 24px;
  border-top: 1px solid rgba(245,239,227,0.12);
  display: flex; flex-wrap: wrap; gap: 18px;
  justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(245,239,227,0.6);
  max-width: 1180px; margin-left: auto; margin-right: auto; padding-left: 28px; padding-right: 28px;
}
.footer-bottom a { color: rgba(245,239,227,0.7); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer { padding-top: 72px; }
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 860px) {
  .nav-list { display: none; }
  .mobile-toggle { display: block; }
  .nav-list.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 24px;
    border-bottom: 1px solid var(--card-border); gap: 18px;
  }
}
