/* ============================================================
   GARNEX VENTURES — Global Stylesheet
   Brand Identity: Brand Manual 2026
   Fonts: Cormorant Garamond · Inter · Space Grotesk
   ============================================================ */

/* ─── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Colors */
  --midnight:    #0C1B33;
  --midnight-90: #0F2040;
  --navy:        #162848;
  --slate:       #2E4068;
  --blue-mid:    #3D5A8A;
  --gold:        #C6993A;
  --gold-light:  #D4AA55;
  --gold-pale:   #F0E0B0;
  --silver:      #E4EAF3;
  --silver-mid:  #BFC9DA;
  --off-white:   #F7F9FC;
  --white:       #FFFFFF;
  --text-dark:   #0A0F1A;
  --text-mid:    #2D3748;
  --text-light:  #6B7A99;

  /* Layout */
  --max-w:      1120px;
  --gutter:     clamp(24px, 5vw, 64px);
  --section-v:  clamp(72px, 10vw, 112px);
  --radius:     4px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.55s;
}

/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ─── BASE TYPOGRAPHY ──────────────────────────────────────── */
body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-v) 0;
}

/* ─── NAVIGATION ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 27, 51, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198, 153, 58, 0.15);
  transition: background var(--dur) var(--ease);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-mark svg { width: 32px; height: 32px; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.nav-logo-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid rgba(198,153,58,0.4);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background 0.25s, border-color 0.25s, color 0.25s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--midnight) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--midnight);
  border-top: 1px solid rgba(198,153,58,0.15);
  padding: 24px var(--gutter);
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}

.nav-mobile.is-open { display: flex; }

.nav-mobile a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold); }

/* ─── HERO (Dark) ──────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--midnight);
  overflow: hidden;
  padding-top: 68px; /* nav height */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero > .container {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 85%, rgba(198,153,58,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 88% 12%, rgba(198,153,58,0.05) 0%, transparent 50%);
}

/* Grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

/* ─── SECTION EYEBROW ──────────────────────────────────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.eyebrow span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.eyebrow--light::before { background: rgba(198,153,58,0.7); }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--midnight);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--silver-mid);
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Arrow icon */
.btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn-arrow { transform: translateX(3px); }

/* ─── SERVICE CARDS ────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--silver);
  border: 1px solid var(--silver);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
}

.card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  transition: background 0.3s var(--ease);
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.card:hover { background: #FAFBFE; }
.card:hover::after { transform: scaleX(1); }

.card-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--midnight);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.card-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── STAT BLOCKS ──────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--silver);
  background: var(--white);
}

.stat:last-child { border-right: none; }

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--midnight);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-caption {
  font-size: 13px;
  color: var(--text-light);
}

/* ─── PULL QUOTE ───────────────────────────────────────────── */
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 300;
  font-style: italic;
  color: var(--midnight);
  line-height: 1.4;
  padding: 32px 0 32px 32px;
  border-left: 2px solid var(--gold);
  max-width: 640px;
}

/* ─── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(198,153,58,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(198,153,58,0.04) 0%, transparent 50%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  text-align: center;
}

.cta-banner-inner h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── SECTION HEADINGS ─────────────────────────────────────── */
.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--midnight);
  margin-bottom: 16px;
}

.section-heading--light {
  color: var(--white);
}

.section-subtext {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.75;
}

.section-subtext--light { color: rgba(255,255,255,0.55); }

/* ─── ABOUT: VALUES GRID ───────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-item {
  padding: 32px;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.value-item:hover { border-color: rgba(198,153,58,0.35); }

.value-numeral {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgba(12,27,51,0.04);
  position: absolute;
  top: -8px;
  right: 16px;
  line-height: 1;
  user-select: none;
}

.value-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.value-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── ABOUT: ACTIVITY BLOCKS ───────────────────────────────── */
.activities-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  overflow: hidden;
}

.activity-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--silver);
  background: var(--white);
  transition: background 0.25s;
}

.activity-item:last-child { border-bottom: none; }
.activity-item:hover { background: #FAFBFE; }

.activity-label {
  padding: 28px 32px;
  border-right: 1px solid var(--silver);
  display: flex;
  align-items: flex-start;
}

.activity-label span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 2px;
}

.activity-body {
  padding: 28px 32px;
}

.activity-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--midnight);
  margin-bottom: 8px;
}

.activity-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ─── CONTACT FORM ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 48px;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--midnight);
  margin-bottom: 32px;
}

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--off-white);
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.25s;
  outline: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--silver-mid);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.6;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--midnight);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Contact details sidebar */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--midnight);
  margin-bottom: 20px;
}

.contact-detail-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--silver);
}

.contact-detail-row:last-child { border-bottom: none; }

.contact-detail-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-detail-value {
  font-size: 14px;
  color: var(--text-dark);
}

.contact-detail-value a {
  color: var(--gold);
  transition: color 0.2s;
}

.contact-detail-value a:hover { color: var(--gold-light); }

.contact-aside-note {
  padding: 24px;
  background: var(--navy);
  border-radius: var(--radius);
}

.contact-aside-note p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-style: italic;
}

/* ─── HERO (HOME) ──────────────────────────────────────────── */
.home-hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 6vw, 80px) 0;
  width: 100%;
}

.home-hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.9;
}

.home-hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 720px;
}

.home-hero-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.home-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.home-hero-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(198,153,58,0.4), transparent);
  margin: 0 0 0 0;
}

/* ─── ABOUT HERO ───────────────────────────────────────────── */
.page-hero-inner {
  padding: clamp(64px, 10vw, 112px) 0;
}

.page-hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.page-hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  max-width: 640px;
}

.page-hero-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── ABOUT: MISSION / VISION ──────────────────────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-item {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
}

.mv-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.mv-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--midnight);
  line-height: 1.6;
}

/* ─── APPROACH SECTION ─────────────────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--midnight);
  border-top: 1px solid rgba(198,153,58,0.12);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  max-width: 320px;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.05em;
}

.footer-entity {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  font-family: 'Space Grotesk', sans-serif;
}

/* ─── SCROLL REVEAL ────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }

/* ─── DIAMOND DIVIDER ──────────────────────────────────────── */
.diamond-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.diamond-divider::before,
.diamond-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--silver);
}

.diamond-divider svg {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .activity-item { grid-template-columns: 1fr; }
  .activity-label { border-right: none; border-bottom: 1px solid var(--silver); padding-bottom: 12px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--silver); }
  .stat:last-child { border-bottom: none; }
  .form-card { padding: 28px 20px; }
  .form-row-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .home-hero-ctas { flex-direction: column; }
}

/* ─── CONTACT PAGE COMPONENTS ──────────────────────────────── */
.contact-form-wrap {
  min-width: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: var(--silver-mid); }

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,153,58,0.12);
  background: var(--white);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A99' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 4px;
}

.contact-detail {
  padding: 18px 0;
  border-bottom: 1px solid var(--silver);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-detail-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 400;
}

.contact-detail-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

.contact-detail-link {
  color: var(--gold);
  transition: color 0.2s;
}

.contact-detail-link:hover { color: var(--gold-light); }

.contact-note {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--navy);
  border-radius: var(--radius);
}

.contact-note p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  font-style: italic;
}

/* Form status messages */
.form-message {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
}

.form-message--success {
  background: rgba(39,132,78,0.08);
  border: 1px solid rgba(39,132,78,0.25);
  color: #1a5c38;
}

.form-message--error {
  background: rgba(185,28,28,0.07);
  border: 1px solid rgba(185,28,28,0.2);
  color: #7f1d1d;
}

/* Hero short variant (interior pages) */
.hero--short .home-hero-inner {
  padding: clamp(72px, 12vw, 120px) 0 clamp(56px, 8vw, 80px);
}

/* ─── RESPONSIVE ADDITIONS ──────────────────────────────────── */
@media (max-width: 960px) {
  .form-row--2col { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .contact-form-wrap,
  .contact-sidebar { padding: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — CSS class-name compatibility aliases
   (about.html uses these names — aliased to match the CSS system)
   ═══════════════════════════════════════════════════════════════ */

/* .mv-card mirrors .mv-item */
.mv-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
}

/* .activity-row mirrors .activity-item */
.activity-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--silver);
  background: var(--white);
  transition: background 0.25s;
}
.activity-row:last-child { border-bottom: none; }
.activity-row:hover { background: #FAFBFE; }

/* .activity-num — left number column (combines .activity-label + span) */
.activity-num {
  padding: 28px 32px;
  border-right: 1px solid var(--silver);
  display: flex;
  align-items: flex-start;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* .activity-desc mirrors .activity-text */
.activity-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .activity-row { grid-template-columns: 1fr; }
  .activity-num { border-right: none; border-bottom: 1px solid var(--silver); padding-bottom: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   BRANDING KIT — .bk-* component styles
   ═══════════════════════════════════════════════════════════════ */

/* ─── Section wrappers ─────────────────────────────────────── */
.bk-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--silver);
}
.bk-section:last-child { border-bottom: none; }

.bk-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: var(--midnight);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 8px 0 16px;
}

.bk-section-sub {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.bk-code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.88em;
  background: rgba(12,27,51,0.06);
  color: var(--midnight);
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid rgba(12,27,51,0.1);
}

/* ─── Color swatches ───────────────────────────────────────── */
.bk-colors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bk-swatch {
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.bk-swatch-color {
  height: 80px;
  width: 100%;
}

.bk-swatch-info {
  padding: 14px 16px;
}

.bk-swatch-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.bk-swatch-hex {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  color: var(--midnight);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.bk-swatch-role {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--text-light);
  line-height: 1.4;
}

/* ─── Typography specimens ─────────────────────────────────── */
.bk-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bk-type-block {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.bk-type-meta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.bk-type-weights {
  border-top: 1px solid var(--silver);
  padding-top: 16px;
}

.bk-type-weight-row {
  padding: 8px 0;
  border-bottom: 1px solid rgba(228,234,243,0.6);
}
.bk-type-weight-row:last-child { border-bottom: none; }

/* ─── Logo variants ────────────────────────────────────────── */
.bk-logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bk-logo-block {
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  align-items: flex-end;
  min-height: 200px;
}

.bk-logo-block--dark    { background: var(--midnight); }
.bk-logo-block--navy    { background: var(--navy); }
.bk-logo-block--light   { background: var(--white);     border: 1px solid var(--silver); }
.bk-logo-block--offwhite{ background: var(--off-white); border: 1px solid var(--silver); }

.bk-logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bk-logo-lockup-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bk-logo-lockup-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
}

.bk-logo-lockup-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.bk-logo-caption {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─── Logo usage guidelines ────────────────────────────────── */
.bk-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  overflow: hidden;
}

.bk-rules-col {
  padding: 36px 40px;
}

.bk-rules-col--do   { background: var(--white); border-right: 1px solid var(--silver); }
.bk-rules-col--dont { background: rgba(12,27,51,0.02); }

.bk-rules-header {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.bk-rules-col--do .bk-rules-header   { color: var(--gold); }
.bk-rules-col--dont .bk-rules-header { color: #B8442A; }

.bk-rule-item {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  padding: 12px 0;
  border-bottom: 1px solid var(--silver);
}
.bk-rule-item:last-child { border-bottom: none; }

/* ─── Brand voice ──────────────────────────────────────────── */
.bk-voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.bk-voice-item {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.bk-voice-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--midnight);
  margin-bottom: 12px;
  line-height: 1;
}

.bk-voice-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── CSS token reference table ────────────────────────────── */
.bk-token-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.bk-token-table thead th {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--silver);
}

.bk-token-table tbody tr {
  border-bottom: 1px solid var(--silver);
  transition: background 0.2s;
}
.bk-token-table tbody tr:last-child { border-bottom: none; }
.bk-token-table tbody tr:hover { background: rgba(12,27,51,0.02); }

.bk-token-table td {
  padding: 14px 16px;
  vertical-align: middle;
  color: var(--text-mid);
  line-height: 1.4;
}

.bk-token-name {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  color: var(--midnight);
  font-weight: 600;
  white-space: nowrap;
}

.bk-token-value {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  color: var(--gold);
  white-space: nowrap;
}

.bk-token-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--silver);
  vertical-align: middle;
}

/* ─── Branding kit — responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .bk-colors-grid { grid-template-columns: repeat(2, 1fr); }
  .bk-type-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .bk-section     { padding: 52px 0; }
  .bk-logo-grid   { grid-template-columns: 1fr; }
  .bk-rules       { grid-template-columns: 1fr; }
  .bk-rules-col--do { border-right: none; border-bottom: 1px solid var(--silver); }
  .bk-voice-grid  { grid-template-columns: 1fr; }
  .bk-token-table { font-size: 11px; }
  .bk-token-table td { padding: 12px 10px; }
  .bk-token-table thead th { padding: 10px; }
}

@media (max-width: 480px) {
  .bk-colors-grid { grid-template-columns: 1fr 1fr; }
  .bk-logo-block  { padding: 32px 24px; min-height: 160px; }
  .bk-rules-col   { padding: 28px 24px; }
  .bk-voice-item  { padding: 28px 24px; }
  .bk-type-block  { padding: 28px 24px; }
}
