/* ═══════════════════════════════════════════
   ZEVANA — GLOBAL STYLESHEET
   zevana.net
═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --ink:        #0B0E18;
  --ink-rich:   #060810;
  --surf:       #111827;
  --surf-2:     #1A2235;
  --surf-3:     #1E2A40;
  --gold:       #C4A052;
  --gold-lt:    #D4B46A;
  --gold-dim:   rgba(196,160,82,.15);
  --gold-glow:  rgba(196,160,82,.08);
  --steel:      #3D6A8A;
  --steel-lt:   #5B8FA8;
  --bone:       #F4F4F1;
  --bone-2:     #EEECEA;
  --white:      #FFFFFF;
  --on-dark:    #B8BBCA;
  --on-dark-2:  #8B90A8;
  --dim:        #525870;
  --rule-dark:  rgba(255,255,255,.06);
  --rule-light: rgba(0,0,0,.08);
  --fd: 'Syne', sans-serif;
  --fb: 'Barlow', sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--fb);
  background: var(--ink);
  color: var(--on-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: var(--fb); }

/* ── TYPOGRAPHY SCALE ── */
.t-display {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(48px, 6.5vw, 88px);
  letter-spacing: -.01em;
  line-height: 1.05;
  color: var(--white);
}
.t-h1 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 58px);
  letter-spacing: .01em;
  line-height: 1.1;
  color: var(--white);
}
.t-h2 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: .01em;
  line-height: 1.15;
  color: var(--white);
}
.t-h3 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: .02em;
  line-height: 1.3;
  color: var(--white);
}
.t-h3.dk { color: var(--ink); }
.t-h4 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .04em;
  line-height: 1.4;
  color: var(--white);
}
.t-body-lg { font-size: 17px; font-weight: 300; line-height: 1.85; }
.t-body    { font-size: 15px; font-weight: 300; line-height: 1.85; }
.t-body-sm { font-size: 13px; font-weight: 400; line-height: 1.8; }
.t-caption {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.on-dark  { color: var(--on-dark); }
.on-dark2 { color: var(--on-dark-2); }
.on-bone  { color: #3A3C42; }
.gold     { color: var(--gold); }
.white    { color: var(--white); }
.dim      { color: var(--dim); }
.steel    { color: var(--steel-lt); }

/* ── LAYOUT ── */
.container { max-width: 1360px; margin: 0 auto; padding: 0 60px; }
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.section-xs { padding: 56px 0; }
.rule { height: 1px; }
.rule.dark  { background: var(--rule-dark); }
.rule.light { background: var(--rule-light); }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.dk { color: #8A7040; }
.eyebrow.dk::before { background: #8A7040; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 15px 34px;
  transition: all .3s var(--ease);
  cursor: pointer;
}
.btn-gold {
  color: var(--gold);
  border: 1px solid var(--gold);
  background: transparent;
}
.btn-gold:hover {
  background: var(--gold-dim);
  color: var(--gold-lt);
}
.btn-gold-fill {
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
}
.btn-gold-fill:hover { background: var(--gold-lt); }
.btn-ghost {
  color: var(--on-dark-2);
  border: 1px solid var(--rule-dark);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.2); }
.btn-arrow::after {
  content: '→';
  font-size: 13px;
  transition: transform .3s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── MEDIA PLACEHOLDERS ── */
.media-placeholder {
  background: var(--surf-2);
  border: 1px dashed rgba(196,160,82,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.media-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(196,160,82,.03) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,.02) 39px,
      rgba(255,255,255,.02) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,.02) 39px,
      rgba(255,255,255,.02) 40px
    );
}
.media-placeholder-icon {
  font-size: 28px;
  opacity: .3;
  position: relative;
  z-index: 1;
}
.media-placeholder-label {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .5;
  position: relative;
  z-index: 1;
}
.media-placeholder-sub {
  font-size: 11px;
  color: var(--dim);
  font-weight: 300;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  line-height: 1.6;
}
.video-placeholder {
  position: relative;
  background: #000;
  overflow: hidden;
}
.video-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(11,14,24,.8);
}
.video-play-btn {
  width: 72px;
  height: 72px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
  transition: all .3s var(--ease);
  cursor: pointer;
}
.video-play-btn:hover {
  background: var(--gold-dim);
  transform: scale(1.08);
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,8,16,.97);
  border-bottom-color: var(--rule-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--on-dark-2);
  font-weight: 400;
  transition: color .2s var(--ease);
  position: relative;
}
.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(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 9px !important;
  letter-spacing: .2em !important;
  color: var(--gold) !important;
  border: 1px solid rgba(196,160,82,.5);
  padding: 10px 24px;
  transition: all .3s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-dim) !important;
  border-color: var(--gold) !important;
  color: var(--gold-lt) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--on-dark);
  transition: all .3s var(--ease);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--ink-rich);
  z-index: 999;
  padding: 48px 32px;
  flex-direction: column;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .04em;
  color: var(--on-dark);
  border-bottom: 1px solid var(--rule-dark);
  padding-bottom: 24px;
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100svh; /* iOS Safari safe viewport height */
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--ink-rich);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6,8,16,.97) 0%, rgba(6,8,16,.75) 55%, rgba(6,8,16,.4) 100%),
    linear-gradient(to bottom, transparent 60%, var(--ink-rich) 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg, transparent, transparent 79px,
      rgba(255,255,255,.025) 79px, rgba(255,255,255,.025) 80px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 79px,
      rgba(255,255,255,.025) 79px, rgba(255,255,255,.025) 80px
    );
}
.hero-bg-glow {
  position: absolute;
  top: -200px; right: -100px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(196,160,82,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-media-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-placeholder-label {
  position: absolute;
  top: 24px; right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(196,160,82,.4);
  background: rgba(6,8,16,.6);
  padding: 6px 12px;
  border: 1px dashed rgba(196,160,82,.2);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 80px) 0 120px;
}
.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-pre {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-pre-line {
  width: 40px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-pre-text {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.hero-heading {
  margin-bottom: 28px;
}
.hero-heading em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  color: var(--on-dark);
  max-width: 520px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 400;
}
.hero-scroll-line {
  width: 48px; height: 1px;
  background: var(--dim);
}
.hero-panel {
  background: rgba(17,24,39,.7);
  border: 1px solid var(--rule-dark);
  backdrop-filter: blur(8px);
  padding: 36px 32px;
}
.hero-panel-title {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-stat {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-dark);
}
.hero-stat:last-child { border-bottom: none; }
.hero-stat-num {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: .02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--on-dark-2);
  font-weight: 300;
  letter-spacing: .04em;
}
.hero-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--rule-dark);
  padding: 24px 0;
  background: rgba(6,8,16,.5);
  backdrop-filter: blur(4px);
}
.hero-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-footer-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-footer-label {
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 400;
}
.hero-footer-val {
  font-family: var(--fd);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--on-dark);
  font-weight: 700;
}
.hero-footer-sep {
  width: 1px;
  height: 32px;
  background: var(--rule-dark);
}

/* ══════════════════════════════════
   SERVICES (HOMEPAGE OVERVIEW)
══════════════════════════════════ */
.services-section { background: var(--surf); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.services-header-right p { max-width: 400px; }
.services-list { display: flex; flex-direction: column; }
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 0 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule-dark);
  transition: background .3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.service-item:first-child { border-top: 1px solid var(--rule-dark); }
.service-item::before {
  content: '';
  position: absolute;
  inset: 0 -60px;
  background: var(--gold-glow);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.service-item:hover::before { opacity: 1; }
.service-item-num {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--gold);
  padding-top: 2px;
}
.service-item-content { position: relative; z-index: 1; }
.service-item-name {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: 6px;
  transition: color .3s var(--ease);
}
.service-item:hover .service-item-name { color: var(--gold-lt); }
.service-item-hook {
  font-size: 13px;
  font-weight: 300;
  color: var(--on-dark-2);
  line-height: 1.5;
}
.service-item-action {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
.service-arrow {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .3s var(--ease);
}
.service-item:hover .service-arrow { color: var(--gold); }
.service-arrow-line {
  width: 32px; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.service-item:hover .service-arrow-line { width: 48px; }

/* ══════════════════════════════════
   SEGMENTS
══════════════════════════════════ */
.segments-section { background: var(--ink); }
.segments-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 64px;
}
.segment-card {
  border: 1px solid rgba(255,255,255,.07);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: border-color .4s var(--ease);
}
.segment-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background .4s var(--ease);
}
.segment-card:hover { border-color: rgba(196,160,82,.2); }
.segment-card:hover::after { background: var(--gold); }
.segment-card.primary {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, var(--surf-3) 0%, var(--surf) 100%);
  border-color: rgba(196,160,82,.15);
}
.segment-card.primary::after { background: var(--gold); }
.segment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,160,82,.2);
  padding: 5px 14px;
  margin-bottom: 32px;
}
.segment-badge-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.segment-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(196,160,82,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 18px;
}
.segment-name {
  margin-bottom: 10px;
}
.segment-ind {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 20px;
}
.segment-desc { max-width: 480px; }
.segment-card.secondary { background: var(--surf); }
.segment-card.horizon { background: var(--surf); }
.horizon-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid rgba(101,108,136,.2);
  padding: 5px 12px;
}
.segment-bg-num {
  position: absolute;
  bottom: -20px; right: 24px;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 120px;
  color: rgba(255,255,255,.02);
  line-height: 1;
  letter-spacing: -.02em;
  user-select: none;
  pointer-events: none;
}

/* ══════════════════════════════════
   WHY ZEVANA WORKS
══════════════════════════════════ */
.why-section { background: var(--bone); }
.why-header { margin-bottom: 72px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.why-card {
  padding-top: 36px;
  border-top: 2px solid var(--gold);
  position: relative;
}
.why-num {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .24em;
  color: #B09040;
  margin-bottom: 20px;
}
.why-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 16px;
}
.why-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: #3A3C45;
}

/* ══════════════════════════════════
   THE FIRM
══════════════════════════════════ */
.firm-section {
  background: var(--surf);
  overflow: hidden;
}
.firm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.firm-image-col {
  position: relative;
  min-height: 500px;
}
.firm-image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.firm-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--surf) 100%);
}
.firm-content {
  padding: 80px 72px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.firm-quote {
  margin: 36px 0;
  padding: 32px 36px;
  border-left: 2px solid var(--gold);
  background: rgba(196,160,82,.05);
}
.firm-quote-text {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .01em;
  line-height: 1.55;
  color: var(--white);
}
.firm-meta {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule-dark);
  display: flex;
  gap: 36px;
}
.firm-meta-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.firm-meta-label {
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
}
.firm-meta-val {
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--on-dark);
  font-weight: 400;
}

/* ══════════════════════════════════
   STRATA TEASER
══════════════════════════════════ */
.strata-section {
  background: var(--ink-rich);
  border-top: 1px solid rgba(61,106,138,.15);
  position: relative;
  overflow: hidden;
}
.strata-section::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(61,106,138,.08) 0%, transparent 65%);
  pointer-events: none;
}
.strata-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.strata-logo-lockup { margin-bottom: 16px; }
.strata-wordmark {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .16em;
  color: var(--white);
}
.strata-divname {
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--steel-lt);
  font-weight: 300;
  margin-left: 12px;
}
.strata-descriptor {
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 400;
  margin-bottom: 40px;
}
.strata-why-now {
  font-size: 12px;
  letter-spacing: .06em;
  line-height: 2;
  color: var(--steel-lt);
  margin-bottom: 20px;
  font-weight: 400;
}
.strata-focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.strata-focus-item {
  border: 1px solid rgba(61,106,138,.2);
  padding: 24px 22px;
  transition: border-color .3s var(--ease);
}
.strata-focus-item:hover { border-color: rgba(61,106,138,.5); }
.strata-focus-label {
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--steel-lt);
  font-weight: 400;
  margin-bottom: 10px;
}
.strata-focus-name {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1.4;
}

/* ══════════════════════════════════
   INSIGHTS
══════════════════════════════════ */
.insights-section { background: var(--bone-2); }
.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.insight-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
  overflow: hidden;
}
.insight-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.insight-card-image {
  height: 200px;
}
.insight-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.insight-tag {
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 16px;
}
.insight-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 14px;
  flex: 1;
}
.insight-excerpt {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
  margin-bottom: 28px;
}
.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid rgba(11,14,24,.2);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color .2s, border-color .2s;
}
.insight-link:hover { color: var(--gold); border-color: var(--gold); }

/* ══════════════════════════════════
   CTA BAND
══════════════════════════════════ */
.cta-band {
  background: var(--ink);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,160,82,.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band-eyebrow { justify-content: center; margin-bottom: 24px; }
.cta-band-h { margin-bottom: 16px; }
.cta-band-sub {
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--ink-rich);
  border-top: 1px solid var(--rule-dark);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--rule-dark);
  margin-bottom: 40px;
}
.footer-logo { height: 40px; width: auto; object-fit: contain; object-position: left; margin-bottom: 16px; }
.footer-descriptor {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--dim);
  max-width: 220px;
  letter-spacing: .04em;
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--rule-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--dim);
  transition: all .3s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 8px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 24px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  font-size: 13px;
  color: var(--dim);
  font-weight: 300;
  letter-spacing: .04em;
  transition: color .2s var(--ease);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  font-size: 11px;
  color: var(--dim);
  font-weight: 300;
  letter-spacing: .04em;
}
.footer-bases {
  font-size: 11px;
  color: var(--dim);
  font-weight: 300;
  letter-spacing: .14em;
}

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--ink);
  border-bottom: 1px solid var(--rule-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,160,82,.05) 0%, transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.breadcrumb {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--dim);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--dim); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--dim); opacity: .4; }
.breadcrumb-current { color: var(--gold); }
.page-hero-sub {
  padding-top: 24px;
  border-top: 1px solid var(--rule-dark);
}

/* ══════════════════════════════════
   AOS OVERRIDES
══════════════════════════════════ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .hero-content .container { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .services-header { grid-template-columns: 1fr; gap: 24px; }
  .service-item { grid-template-columns: 60px 1fr; }
  .service-item-action { display: none; }
  .segments-grid { grid-template-columns: 1fr 1fr; }
  .segment-card.primary { grid-row: auto; grid-column: 1 / 3; }
  .firm-grid { grid-template-columns: 1fr; }
  .firm-image-col { min-height: 380px; }
  .firm-content { padding: 60px 40px; }
  .strata-inner { grid-template-columns: 1fr; gap: 64px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .insights-grid { grid-template-columns: 1fr; }
  .insights-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .strata-focus-grid { grid-template-columns: 1fr; }
  .segments-grid { grid-template-columns: 1fr; }
  .segment-card.primary { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  /* ── SMALL TEXT FIXES ── */
  .eyebrow { font-size: 10px; letter-spacing: .18em; }
  .hero-pre-text { font-size: 10px; letter-spacing: .18em; }
  .t-caption { font-size: 10px; }
  .hero-panel-title { font-size: 10px; }
  .segment-ind { font-size: 10px; }
  .footer-col-title { font-size: 10px; }
  .strata-descriptor { font-size: 10px; }

  /* ── HERO FOOTER BAR ── */
  .hero-footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
  }
  .hero-footer-sep { display: none; }
  .hero-footer-label { font-size: 9px; }
  .hero-footer-val { font-size: 11px; }

  /* ── HERO SCROLL INDICATOR ── */
  .hero-scroll { display: none; }

  /* ── SERVICE ITEMS ── */
  .service-item { grid-template-columns: 48px 1fr; gap: 0 16px; padding: 24px 0; }
  .service-item-name { font-size: 15px; }
  .service-item-hook { font-size: 12px; }

  /* ── FIRM SECTION ── */
  .firm-content { padding: 48px 24px; }
  .firm-meta { gap: 20px; flex-wrap: wrap; }

  /* ── STRATA ── */
  .strata-inner { gap: 48px; }

  /* ── WHY CARDS ── */
  .why-title { font-size: 17px; }

  /* ── SEGMENT CARDS ── */
  .segment-card { padding: 36px 28px; }
  .segment-bg-num { font-size: 80px; }

  /* ── CTA BAND ── */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-band { padding: 72px 0; }
}
