/* ============================================================
   SAINCLAIR CORP. — INSTITUTIONAL DESIGN SYSTEM
   Version 2.0 | June 2026
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --black:      #07070A;
  --surface:    #0D0D10;
  --card:       #141418;
  --card-hover: #1A1A1F;
  --gold:       #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dim:   rgba(201,169,110,0.15);
  --white:      #F4F4F0;
  --gray-1:     #B0B0A8;
  --gray-2:     #6A6A65;
  --gray-3:     #2E2E33;
  --border:     rgba(201,169,110,0.18);
  --border-sub: rgba(255,255,255,0.07);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h: 80px;
  --section-pad: clamp(80px, 10vw, 140px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container {
  width: min(1280px, 92vw);
  margin-inline: auto;
}

.gold       { color: var(--gold); }
.gold-line  {
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── TYPOGRAPHY SCALE ─────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.3;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg  { font-size: clamp(16px, 1.2vw, 19px); line-height: 1.8; color: var(--gray-1); }
.body-md  { font-size: 15px; line-height: 1.75; color: var(--gray-1); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1px solid var(--border);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.btn-nav-cta {
  border: 1px solid rgba(201,169,110,0.55);
  color: var(--gold);
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: 0.13em;
}
.btn-nav-cta:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
}
.btn-ghost {
  color: var(--gold);
  padding: 0;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.btn-ghost::after {
  content: '→';
  transition: transform 0.3s var(--ease-out);
}
.btn-ghost:hover::after { transform: translateX(4px); }

/* ── NAVIGATION ───────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(7,7,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border-sub);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-item {
  position: relative;
}
.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-1);
  transition: color 0.25s;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link .chevron {
  font-size: 8px;
  transition: transform 0.25s;
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;          /* flush — no gap so hover stays active */
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--card);
  border: 1px solid var(--border-sub);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
/* Transparent bridge: keeps hover active while mouse travels into dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -24px;
  right: -24px;
  height: 14px;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(4px);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-1);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-dropdown a:hover {
  color: var(--gold);
  padding-left: 24px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.lang-btn {
  color: var(--gray-2);
  padding: 4px 6px;
  transition: color 0.2s;
  text-transform: uppercase;
}
.lang-btn.active { color: var(--gold); }
.lang-btn:hover  { color: var(--white); }
.lang-sep { color: var(--gray-3); font-size: 10px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--black);
  z-index: 999;
  padding: 40px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--gray-1);
  border-bottom: 1px solid var(--border-sub);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .mobile-sub a {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 0 10px 20px;
  border: none;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;      /* fallback for older browsers */
  min-height: 100svh;     /* avoids mobile browser chrome overlap */
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}

.hero-photo-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=2560&q=90');
  background-size: cover;
  background-position: center 35%;
  opacity: 0.45;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,169,110,0.06) 0%, transparent 70%),
              linear-gradient(180deg, rgba(7,7,10,0.15) 0%, transparent 40%, var(--black) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--gray-1);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-2);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── SECTION STRUCTURE ────────────────────────────────────── */
section { padding: var(--section-pad) 0; }

.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-header .eyebrow { margin-bottom: 16px; }

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: var(--section-pad) 0;
}

/* ── INTRO BAND ───────────────────────────────────────────── */
.intro-band {
  padding: 80px 0;
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  background: var(--surface);
}
.intro-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--white);
  font-style: italic;
}
.intro-quote span { color: var(--gold); }

/* ── STATS ROW ────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-sub);
  border: 1px solid var(--border-sub);
  margin: 60px 0 0;
}
.stat-cell {
  background: var(--surface);
  padding: 40px 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-2);
}

/* ── PILLARS ──────────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-sub);
}
.pillar-card {
  background: var(--card);
  padding: 48px 40px;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pillar-card:hover { background: var(--card-hover); }

.pillar-number {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 400;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}
.pillar-text {
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.8;
  flex: 1;
}

/* ── TWO-COL LAYOUT ───────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── PLACEHOLDER PHOTO ────────────────────────────────────── */
.photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--card);
  border: 1px solid var(--border-sub);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
}
.photo-initials {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.photo-placeholder-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-2);
  position: relative;
  z-index: 1;
}

.photo-placeholder-sq {
  aspect-ratio: 1;
  max-width: 260px;
  background: var(--card);
  border: 1px solid var(--border-sub);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.photo-placeholder-sq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
}
.photo-placeholder-sq .photo-initials { font-size: 42px; }

/* ── FOUNDERS GRID ────────────────────────────────────────── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 40px;
  align-items: flex-start;
}
.founder-entry {}
.founder-secondary {
  padding-top: 4px;
  border-left: 1px solid var(--border);
  padding-left: 48px;
}
.founder-header { display: flex; flex-direction: column; }

/* ── LEADERSHIP GRID ──────────────────────────────────────── */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.leader-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border-sub);
}
.leader-card-accent {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 4px;
}
.leader-info { display: flex; flex-direction: column; gap: 6px; }
.leader-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}
.leader-title {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.leader-bio {
  font-size: 13.5px;
  color: var(--gray-1);
  line-height: 1.75;
}

/* ── STRATEGY CARDS ───────────────────────────────────────── */
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-sub);
}
.strategy-card {
  background: var(--card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.strategy-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.strategy-card:hover { background: var(--card-hover); }
.strategy-card:hover::before { transform: scaleX(1); }

.strategy-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.strategy-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.strategy-desc {
  font-size: 13.5px;
  color: var(--gray-1);
  line-height: 1.8;
  flex: 1;
}

/* ── FEATURE ROW ──────────────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0;
  border-top: 1px solid var(--border-sub);
}
.feature-item { display: flex; flex-direction: column; gap: 14px; }
.feature-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}
.feature-text {
  font-size: 13.5px;
  color: var(--gray-1);
  line-height: 1.8;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 100px);
  padding-bottom: 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border-sub);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,7,10,0.88) 0%, rgba(7,7,10,0.72) 60%, rgba(7,7,10,0.88) 100%);
  z-index: 0;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 32px;
}
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span { color: var(--gray-3); }

/* ── INVESTOR RELATIONS SECTION ───────────────────────────── */
.ir-band {
  background: var(--surface);
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  padding: 80px 0;
}
.ir-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

/* ── DISCLAIMER ───────────────────────────────────────────── */
.disclaimer-box {
  background: var(--surface);
  border: 1px solid var(--border-sub);
  border-left: 2px solid var(--gold);
  padding: 24px 28px;
  margin-top: 48px;
}
.disclaimer-box p {
  font-size: 11.5px;
  color: var(--gray-2);
  line-height: 1.7;
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border-sub);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-stack { display: flex; flex-direction: column; gap: 20px; }

.form-privacy {
  font-size: 11px;
  color: var(--gray-2);
  line-height: 1.6;
  margin-top: 8px;
}
.form-privacy a { color: var(--gold); }
.form-privacy a:hover { text-decoration: underline; }

.office-card {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-sub);
}
.office-card:last-child { border: none; }
.office-city {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.office-detail {
  font-size: 13px;
  color: var(--gray-1);
  line-height: 1.7;
}
.office-detail a { color: var(--gold); }
.office-detail a:hover { text-decoration: underline; }

/* ── SUSTAINABILITY ───────────────────────────────────────── */
.esg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-sub);
  margin-top: 48px;
}
.esg-card {
  background: var(--card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.esg-card-icon {
  display: flex;
  align-items: center;
  height: 40px;
  margin-bottom: 4px;
}
.esg-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}
.esg-card-text {
  font-size: 13.5px;
  color: var(--gray-1);
  line-height: 1.8;
}

/* ── REGULATORY NOTICE ────────────────────────────────────── */
.reg-notice {
  background: var(--surface);
  border-top: 1px solid var(--border-sub);
  padding: 28px 0;
}
.reg-notice p {
  font-size: 11px;
  color: var(--gray-2);
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.reg-notice a { color: var(--gold); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border-sub);
  padding: 64px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--gray-2);
  line-height: 1.7;
  max-width: 240px;
}
.footer-col-title {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: var(--gray-2);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border-sub);
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 11px;
  color: var(--gray-2);
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  font-size: 11px;
  color: var(--gray-2);
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--gold); }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  padding: 100px 0;
  text-align: center;
}
.cta-band .display-md { margin-bottom: 12px; }
.cta-band .body-lg    { max-width: 500px; margin: 0 auto 40px; }

/* ── PROCESS STEPS ────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-sub);
  margin-top: 48px;
}
.process-step {
  background: var(--card);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}
.process-step-text {
  font-size: 13px;
  color: var(--gray-1);
  line-height: 1.8;
}

/* ── HIGHLIGHT QUOTE ──────────────────────────────────────── */
.highlight-quote {
  border-left: 1px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 32px 0;
}
.highlight-quote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
}

/* ── TAGS ─────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-1);
}
.tag-gold {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── HIDDEN LANG ──────────────────────────────────────────── */
[data-lang="fr"] { display: none; }
.lang-fr-active [data-lang="en"] { display: none; }
.lang-fr-active [data-lang="fr"] { display: initial; }
.lang-fr-active p[data-lang="fr"],
.lang-fr-active div[data-lang="fr"],
.lang-fr-active li[data-lang="fr"],
.lang-fr-active span[data-lang="fr"] { display: block; }
.lang-fr-active a[data-lang="fr"],
.lang-fr-active button[data-lang="fr"] { display: inline-flex; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }
  .lang-switcher { display: flex; }

  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; }
  .founders-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-secondary { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 40px; }
  .intro-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .strategies-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .esg-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .ir-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 68px; }
  .strategies-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}


/* ── REAL PHOTO FRAMES ─────────────────────────────────────── */
.photo-real {
  overflow: hidden;
  position: relative;
  border: none;
  background: var(--surface);
}
.photo-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.photo-real:hover img {
  transform: scale(1.04);
}
.photo-real::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,10,0.45) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
