/* ============================================================
   STERLING PATH INVESTMENT GROUP
   Aesthetic: Editorial luxury — Bodoni Moda display (high-contrast
   serif, optical size variable), DM Sans UI (clean geometric),
   alternating dark/light sections, Elect-style overlay, pill buttons
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;900&family=Cinzel+Decorative:wght@400;700&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&display=swap');

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --ink:         #0B1220;   /* deep navy — matched to logo */
  --ink-2:       #0A1525;
  --gold:        #C9A840;   /* sterling gold — matched to logo */
  --gold-warm:   #C9B29B;   /* warm sand — Elect's gold tone */
  --gold-dim:    rgba(201,168,76,.18);
  --cream:       #F3F1EE;   /* Elect's exact light bg */
  --cream-2:     #EAE6E1;
  --white:       #FFFFFF;
  --body-text:   #4A5A5F;
  --muted:       rgba(255,255,255,.5);
  --border-l:    rgba(3,37,47,.1);
  --border-d:    rgba(201,168,76,.15);

  --display:  'Cinzel', 'Trajan Pro', 'Palatino', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;

  --nav-h:    76px;
  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,.55,.45,1);
}

/* ─── Reset ─────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display:block; max-width:100%; }
a   { color:inherit; text-decoration:none; }
ul  { list-style:none; }

/* ─── Typography ─────────────────────────────────────────── */
/* Bodoni Moda: use opsz 96 at large sizes for hairline serifs */
h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 7.5vw, 7.5rem);
  font-optical-sizing: auto;
  line-height: .9;
  letter-spacing: .02em;
  text-transform: uppercase;
}
h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 6rem);
  font-optical-sizing: auto;
  line-height: .93;
  text-transform: uppercase;
  letter-spacing: .015em;
}
h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  font-optical-sizing: auto;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .02em;
}
h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-optical-sizing: auto;
  text-transform: uppercase;
  letter-spacing: .04em;
}
p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .9rem;
  line-height: 1.85;
  color: var(--body-text);
}
.eyebrow {
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  display: block;
}

/* ─── Layout ─────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ─── Noise overlay (adds depth to dark sections) ────────── */
.dark-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION — white, elevated on scroll
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--ink);
  z-index: 1000;
  border-bottom: 1px solid rgba(201,168,64,.12);
  transition: box-shadow .4s var(--ease);
}
.nav.lifted { box-shadow: 0 2px 40px rgba(0,0,0,.45); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 64px;
}

/* Shared logo text classes (nav + footer) */
.logo-main {
  font-family: var(--display);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  line-height: 1;
}
.logo-sub {
  font-family: var(--display);
  font-size: .4rem;
  font-weight: 400;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  line-height: 1;
}

/* Nav logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}
.nav-links a {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* CTA pill */
.nav-pill {
  font-size: .58rem !important;
  font-weight: 600 !important;
  letter-spacing: .22em !important;
  background: var(--gold) !important;
  color: var(--ink) !important;
  padding: 10px 24px;
  border-radius: 30px;
  transition: background .25s, color .25s !important;
  border-bottom: none !important;
}
.nav-pill::after { display:none !important; }
.nav-pill:hover  { background: var(--white) !important; color: var(--ink) !important; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,.8);
  transition: .3s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--ink);
  border-top: 1px solid rgba(201,168,64,.12);
  padding: 2.5rem 64px;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
  opacity: 0;
  transition: opacity .25s;
}
.nav-mobile.open { display:flex; opacity:1; }
.nav-mobile a {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   BUTTONS — pill shaped
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s, border-color .25s;
}
/* Dark fill */
.btn-ink {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-ink:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* Gold fill */
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover { background: #b8943e; border-color: #b8943e; }

/* Ghost on dark */
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* Ghost on light */
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(3,37,47,.35);
}
.btn-ghost-dark:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* Text link with arrow */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .3s var(--ease);
}
.arrow-link::after {
  content: '→';
  font-size: .85rem;
  display: inline-block;
  transition: transform .3s var(--ease);
}
.arrow-link:hover { gap: 16px; }
.arrow-link:hover::after { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════
   HERO — full viewport, dark, massive Bodoni headline
   Layout: content sits at lower-third, left-aligned
   Breathing room: generous padding, staggered element spacing
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;          /* svh = small viewport height, avoids mobile bar overlap */
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* Background image */
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  opacity: .2;
  filter: grayscale(15%) saturate(.85);
  z-index: 0;
  transform: scale(1.05);
  transition: transform 12s ease;
}
.hero-img.ready { transform: scale(1); }

/* Subtle dark gradient at bottom — makes text pop */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(3,37,47,.95) 0%, rgba(3,37,47,.6) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Gold ring ornament — upper right, decorative */
.hero-ring {
  position: absolute;
  top: -80px; right: -120px;
  width: min(60vw, 700px);
  height: min(60vw, 700px);
  border: 1px solid rgba(201,168,76,.06);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.hero-ring::before {
  content: '';
  position: absolute;
  inset: 50px;
  border: 1px solid rgba(201,168,76,.04);
  border-radius: 50%;
}
.hero-ring::after {
  content: '';
  position: absolute;
  inset: 110px;
  border: 1px solid rgba(201,168,76,.025);
  border-radius: 50%;
}

/* Left vertical gold accent line */
.hero-accent-line {
  position: absolute;
  top: var(--nav-h); bottom: 0;
  left: 64px;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: .18;
  z-index: 2;
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 3;
  padding: var(--nav-h) 64px 8vh;   /* top clears nav, bottom breathing room */
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  /* Push content up slightly from flex-end so it sits at ~70% down */
  margin-top: auto;
}

.hero-eyebrow {
  color: var(--gold);
  margin-bottom: 2.25rem;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: .85;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: .25em;         /* tight — Bodoni's weight carries it */
  max-width: 12ch;              /* prevent overlong single lines */
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-sub {
  color: rgba(255,255,255,.58);
  font-size: .9rem;
  font-weight: 300;
  max-width: 420px;
  line-height: 1.9;
  margin: 1.75rem 0 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Scroll indicator — bottom right */
.hero-scroll {
  position: absolute;
  bottom: 2.75rem;
  right: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  opacity: .35;
}
.hero-scroll .eyebrow {
  color: var(--gold);
  font-size: .48rem;
  writing-mode: vertical-lr;
  letter-spacing: .28em;
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:.3; transform:scaleY(1); }
  50%      { opacity:1;  transform:scaleY(1.1); }
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO — compact for inner pages
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--ink);
  padding: 170px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { color: var(--gold); margin-bottom: 1.5rem; }
.page-hero h1 { color: var(--white); }
.page-hero h1 em { font-style:italic; color: var(--gold); }
.page-hero-desc {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  max-width: 520px;
  margin-top: 1.75rem;
  line-height: 1.85;
}
/* decorative gold line below eyebrow */
.page-hero-rule {
  width: 44px; height: 1px;
  background: var(--gold);
  opacity: .5;
  margin: 1.25rem 0 1.75rem;
}
/* Background circle ornament */
.page-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 520px; height: 520px;
  border: 1px solid rgba(201,168,76,.05);
  border-radius: 50%;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   INTRO STRIP — 3 pillars, light cream bg
═══════════════════════════════════════════════════════════ */
.intro-strip {
  background: var(--cream);
  padding: 88px 0;
  border-bottom: 1px solid var(--border-l);
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.intro-item {
  padding: 0 3.5rem;
  border-right: 1px solid var(--border-l);
}
.intro-item:first-child { padding-left: 0; }
.intro-item:last-child  { border-right: none; }
.intro-item .eyebrow { color: var(--gold); margin-bottom: 1.1rem; }
.intro-item h4 {
  color: var(--ink);
  margin-bottom: .75rem;
  font-size: 1.35rem;
}
.intro-item p { font-size: .85rem; }

/* ═══════════════════════════════════════════════════════════
   SECTOR CARDS — full-width stacked, Elect-signature overlay
═══════════════════════════════════════════════════════════ */
.sector-wrap { background: var(--ink); }
.sector-header {
  text-align: center;
  padding: 90px 64px 70px;
}
.sector-header .eyebrow { color: var(--gold); margin-bottom: 1.25rem; }
.sector-header h2 { color: var(--white); }

.sector-card {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.sector-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.38) saturate(.75);
  transition: transform .8s var(--ease), filter .5s;
  z-index: 0;
}
.sector-card:hover .sector-bg {
  transform: scale(1.05);
  filter: brightness(.25) saturate(.6);
}

/* ── Elect slide-in overlay ── */
.sector-panel {
  position: absolute;
  top: 0; left: 100%;
  width: 0;
  height: 100%;
  background: rgba(3,37,47,.96);
  transition: width .55s var(--ease), left .55s var(--ease);
  z-index: 3;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.sector-card:hover .sector-panel {
  width: 38%;
  left: 62%;
}
.sector-panel-inner {
  padding: 3.5rem;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .3s .3s, transform .3s .3s;
  white-space: nowrap;
}
.sector-card:hover .sector-panel-inner { opacity:1; transform:translateX(0); }
.sector-panel-inner .eyebrow { color: var(--gold); margin-bottom: .9rem; }
.sector-panel-inner h4 { color: var(--white); font-size: 1.15rem; margin-bottom: .8rem; }
.sector-panel-inner p {
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  white-space: normal;
  max-width: 26ch;
  margin-bottom: 1.5rem;
}

/* Card text (bottom-left) */
.sector-body {
  position: relative;
  z-index: 2;
  padding: 3.5rem 4rem;
  width: 100%;
  background: linear-gradient(to top,
    rgba(3,37,47,.9) 0%,
    rgba(3,37,47,.5) 50%,
    transparent 100%);
}
.sector-body .eyebrow { color: var(--gold); margin-bottom: .9rem; }
.sector-body h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 5rem);
  margin-bottom: 1rem;
}
.sector-body p {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  max-width: 52ch;
  margin-bottom: 1.5rem;
}
/* Divider between stacked cards */
.sector-card + .sector-card { margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════
   QUOTE / PHILOSOPHY TEASER — dark section
═══════════════════════════════════════════════════════════ */
.quote-section {
  background: var(--ink-2);
  padding: 110px 0;
  border-top: 1px solid var(--border-d);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.quote-left .eyebrow { color: var(--gold); margin-bottom: 2rem; }
.quote-left blockquote {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-optical-sizing: auto;
  font-size: clamp(1.75rem, 2.8vw, 2.8rem);
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 2rem;
}
.quote-left cite {
  font-style: normal;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
}
.quote-right .eyebrow { color: rgba(201,168,76,.5); margin-bottom: 1.25rem; }
.quote-right p { color: rgba(255,255,255,.5); font-size: .88rem; max-width: 100%; margin-bottom: 1.25rem; }

/* ═══════════════════════════════════════════════════════════
   OUR STORY — light section
═══════════════════════════════════════════════════════════ */
.story-section {
  background: var(--white);
  padding: 110px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 8rem;
  align-items: start;
}
.story-col .eyebrow { color: var(--gold); margin-bottom: 1.5rem; }
.story-col h2 { color: var(--ink); margin-bottom: 2.5rem; }
.story-col p { color: var(--body-text); font-size: .9rem; max-width: 100%; margin-bottom: 1.35rem; }

.story-stats { position: sticky; top: 110px; }
.stat-row {
  padding: 2.25rem 0;
  border-top: 1px solid var(--border-l);
}
.stat-row:last-child { border-bottom: 1px solid var(--border-l); }
.stat-num {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-lbl {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--body-text);
  opacity: .7;
}

/* ═══════════════════════════════════════════════════════════
   PHILOSOPHY PILLARS — dark, 2×2 grid
═══════════════════════════════════════════════════════════ */
.philosophy {
  background: var(--ink);
  padding: 110px 0;
}
.phil-header { margin-bottom: 4rem; }
.phil-header .eyebrow { color: var(--gold); margin-bottom: 1.25rem; }
.phil-header h2 { color: var(--white); }
.phil-header p { color: var(--muted); max-width: 500px; margin-top: 1rem; font-size: .88rem; }
.phil-rule { width: 44px; height:1px; background: var(--gold); opacity:.4; margin: 1.5rem 0 0; }

.pillars {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
}
.pillar {
  background: var(--ink);
  padding: 3.5rem;
  position: relative;
  transition: background .3s;
}
.pillar:hover { background: #051e28; }
.pillar::before {
  content: '';
  position: absolute;
  top:0; left:0; right:0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar-n {
  font-family: var(--display);
  font-size: 5.5rem;
  font-weight: 300;
  color: rgba(201,168,76,.07);
  line-height: 1;
  margin-bottom: .2rem;
  display: block;
}
.pillar h4 { color: var(--white); font-size: 1.4rem; margin-bottom: 1rem; }
.pillar p { color: rgba(255,255,255,.45); font-size: .85rem; max-width: 100%; }

/* ═══════════════════════════════════════════════════════════
   LEADERSHIP — light section
═══════════════════════════════════════════════════════════ */
.leadership {
  background: var(--cream);
  padding: 110px 0;
}
.lead-header { margin-bottom: 4rem; }
.lead-header .eyebrow { color: var(--gold); margin-bottom: 1.25rem; }
.lead-header h2 { color: var(--ink); }

.lead-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 7rem;
  align-items: start;
}
.lead-photo { position: relative; }
.lead-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream-2);
  overflow: hidden;
  position: relative;
}
.lead-photo-frame img { width:100%; height:100%; object-fit:cover; filter:grayscale(15%); }
.lead-placeholder {
  width:100%; height:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem;
  background: linear-gradient(135deg, var(--cream-2), #ddd8d0);
}
.lead-placeholder svg { width:60px; height:60px; color: var(--gold); opacity:.22; }
.lead-placeholder span {
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--body-text);
  opacity: .5;
}
/* offset border accent */
.lead-photo-accent {
  position: absolute;
  bottom: -14px; right: -14px;
  width: 55%; height: 55%;
  border: 1px solid rgba(3,37,47,.12);
  z-index: -1;
}

.lead-info { padding-top: .5rem; }
.lead-role {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}
.lead-name {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  font-optical-sizing: auto;
  color: var(--ink);
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 1.75rem;
}
.lead-rule { width:40px; height:1px; background:var(--gold); opacity:.45; margin-bottom:2rem; }
.lead-bio p { color: var(--body-text); font-size: .9rem; max-width:100%; margin-bottom:1.2rem; }

/* ═══════════════════════════════════════════════════════════
   CALLOUT STRIP — dark, centred, italic headline
═══════════════════════════════════════════════════════════ */
.callout {
  background: var(--ink);
  padding: 90px 0;
  text-align: center;
  border-top: 1px solid var(--border-d);
}
.callout .eyebrow { color: var(--gold); margin-bottom: 1.5rem; }
.callout h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 5rem);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO PAGE — full-width split cards (image + text panel)
═══════════════════════════════════════════════════════════ */
.pf-section { background: var(--white); }
.pf-header { padding: 90px 0 70px; }
.pf-header .eyebrow { color: var(--gold); margin-bottom: 1.25rem; }
.pf-header h2 { color: var(--ink); }

.pf-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.pf-card + .pf-card { margin-top: 3px; }
.pf-card.flip { direction: rtl; }
.pf-card.flip > * { direction: ltr; }

.pf-img {
  background-size: cover;
  background-position: center;
  filter: brightness(.72) saturate(.8);
  transition: filter .5s var(--ease), transform .6s var(--ease);
  overflow: hidden;
}
.pf-card:hover .pf-img { filter: brightness(.55) saturate(.7); transform: scale(1.03); }

.pf-body {
  background: var(--ink);
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pf-card:nth-child(even) .pf-body { background: var(--ink-2); }

.pf-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
}
.pf-dot { width: 7px; height: 7px; border-radius: 50%; }
.dot-green  { background: #4CAF7D; }
.dot-gold   { background: var(--gold); }
.pf-status span {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.pf-body .eyebrow { color: var(--gold); margin-bottom: 1.1rem; }
.pf-body h3 { color: var(--white); margin-bottom: 1.25rem; font-size: clamp(1.8rem,2.8vw,3rem); }
.pf-body p { color: rgba(255,255,255,.55); font-size: .88rem; max-width:100%; margin-bottom:.9rem; }

.pf-meta {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.pf-meta-row {
  display: flex;
  justify-content: space-between;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .75rem;
}
.pf-key { font-weight: 600; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.28); }
.pf-val { color: rgba(255,255,255,.65); }
.pf-val.green { color: #4CAF7D; }
.pf-val.amber { color: var(--gold); }

/* Coming soon card */
.coming {
  border: 1px dashed rgba(3,37,47,.15);
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 5rem 4.5rem;
  margin-top: 3px;
}
.coming-ico { color: rgba(201,168,76,.18); flex-shrink:0; }
.coming h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 2.2rem;
  color: rgba(3,37,47,.25);
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.coming p { color: rgba(3,37,47,.3); font-size: .88rem; max-width: 50ch; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--cream);
  padding: 90px 0 110px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 7rem;
  align-items: start;
}
.contact-left .eyebrow { color: var(--gold); margin-bottom: 1.25rem; }
.contact-left h2 { color: var(--ink); margin-bottom: 2.5rem; font-size: clamp(2rem,3.5vw,4rem); }

/* Underline-only inputs (Elect style) */
.cform { display:flex; flex-direction:column; gap:1.5rem; }
.fg { display:flex; flex-direction:column; gap:.5rem; }
.fg label {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--body-text);
  opacity: .7;
}
.fg input,
.fg textarea {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(3,37,47,.28);
  padding: 10px 0;
  outline: none;
  width: 100%;
  border-radius: 0;
  transition: border-color .25s;
}
.fg input:focus,
.fg textarea:focus { border-bottom-color: var(--gold); }
.fg input::placeholder,
.fg textarea::placeholder { color:rgba(3,37,47,.28); font-weight:300; }
.fg textarea { resize:vertical; min-height:120px; }
.frow { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.form-note { font-size:.72rem; color:var(--body-text); opacity:.55; margin-top:.5rem; }

.fmsg { font-size:.8rem; padding:12px; display:none; }
.fmsg.ok  { background:rgba(76,175,125,.1); border-left:3px solid #4CAF7D; color:#2e7d5a; display:block; }
.fmsg.err { background:rgba(200,60,60,.07); border-left:3px solid #e05050; color:#b83030; display:block; }

.contact-info { padding-top:.5rem; }
.contact-info .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.contact-info h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem,2.5vw,2.5rem);
  font-weight: 400;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.05;
}
.contact-info > p { color: var(--body-text); margin-bottom: 2.5rem; font-size:.88rem; max-width:100%; }
.crule { width:36px; height:1px; background:var(--gold); opacity:.35; margin:1.75rem 0; }
.cd { margin-bottom:1.5rem; }
.cd-label {
  font-size:.58rem; font-weight:600; letter-spacing:.22em;
  text-transform:uppercase; color:var(--gold); margin-bottom:.35rem;
}
.cd-value { font-size:.9rem; color:var(--ink); }
.cd-value a:hover { color:var(--gold); }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border-l);
  padding: 1.75rem;
  margin-top: .5rem;
}
.contact-card .eyebrow { color:var(--gold); margin-bottom:.6rem; }
.contact-card p { font-size:.82rem; max-width:100%; }

/* ═══════════════════════════════════════════════════════════
   FOOTER — dark, minimal
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink-2);
  padding: 64px 0 36px;
  border-top: 1px solid var(--border-d);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 2rem;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1.25rem;
}
.footer-brand p { font-size:.82rem; color:rgba(255,255,255,.35); max-width:34ch; line-height:1.8; }
.footer-col h6 {
  font-size:.52rem; font-weight:600; letter-spacing:.26em;
  text-transform:uppercase; color:rgba(255,255,255,.28); margin-bottom:1.25rem;
}
.footer-col ul { display:flex; flex-direction:column; gap:.65rem; }
.footer-col a { font-size:.82rem; color:rgba(255,255,255,.5); font-weight:300; transition:color .2s; }
.footer-col a:hover { color:var(--gold); }
.footer-bot { display:flex; justify-content:space-between; align-items:center; }
.footer-copy { font-size:.7rem; color:rgba(255,255,255,.2); }
.footer-reg  { font-size:.65rem; color:rgba(255,255,255,.14); }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS — fade-up on scroll
═══════════════════════════════════════════════════════════ */
.au {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.au.in { opacity:1; transform:translateY(0); }
.d1 { transition-delay:.1s; }
.d2 { transition-delay:.2s; }
.d3 { transition-delay:.3s; }
.d4 { transition-delay:.4s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .wrap, .nav-inner { padding-left: 40px; padding-right: 40px; }
  .hero-content { padding-left: 40px; padding-right: 40px; }
  .hero-accent-line { left: 40px; }
  .hero-scroll { right: 40px; }
  .story-grid { grid-template-columns: 1fr; gap:4rem; }
  .story-stats { position:static; }
  .lead-grid { grid-template-columns: 280px 1fr; gap:4rem; }
  .pf-card { grid-template-columns:1fr; min-height:auto; }
  .pf-img { min-height: 280px; }
  .pf-card.flip { direction:ltr; }
  .contact-grid { grid-template-columns:1fr; gap:4rem; }
  .quote-grid { grid-template-columns:1fr; gap:4rem; }
  .footer-top { grid-template-columns:1fr 1fr; gap:3rem; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { padding:2rem 40px; }

  .hero-content { padding: var(--nav-h) 28px 10vh; }
  .hero-scroll { display:none; }
  .hero-accent-line { display:none; }
  .hero-btns { flex-direction:column; align-items:flex-start; }

  .intro-grid { grid-template-columns:1fr; }
  .intro-item {
    padding: 2rem 0;
    border-right: none;
    border-bottom: 1px solid var(--border-l);
  }
  .intro-item:first-child { padding-top:0; }
  .intro-item:last-child { border-bottom:none; }

  .pillars { grid-template-columns:1fr; }
  .lead-grid { grid-template-columns:1fr; }
  .lead-photo { max-width:260px; }
  .sector-panel { display:none; }
  .coming { flex-direction:column; gap:1.5rem; padding:3rem 2rem; }
  .frow { grid-template-columns:1fr; gap:1.5rem; }
  .footer-top { grid-template-columns:1fr; gap:2.5rem; }
  .footer-bot { flex-direction:column; gap:.5rem; text-align:center; }
}

@media (max-width:480px) {
  .wrap, .nav-inner { padding-left:24px; padding-right:24px; }
  .nav-mobile { padding:2rem 24px; }
  .sector-header { padding:70px 24px 50px; }
}
