/* =================================================================
   Skyview Financial Group — Design System
   Brand: Charcoal #333 + Cyan #0099FF / #33CCFF
   Registered Investment Advisor — Ponte Vedra Beach, FL
   ================================================================= */

*, *::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%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

:root {
  /* Brand */
  --brand-blue: #0099FF;
  --brand-blue-soft: #33CCFF;
  --brand-blue-deep: #007acc;
  --charcoal: #333333;

  /* Surface */
  --ink: #1a1d22;
  --ink-soft: #2a2e36;
  --slate-700: #4a5160;
  --slate-500: #6b7689;
  --slate-300: #c8cfdb;
  --slate-200: #dee2e8;
  --slate-100: #eef0f4;
  --paper: #fafafa;
  --paper-warm: #f4f5f7;
  --line: #e0e4ea;
  --line-soft: #ebeef2;
  --white: #ffffff;

  /* Type */
  --serif: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --radius-sm: 2px;
  --radius-md: 4px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur: 480ms;
}

body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--paper);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ----- Typography ----- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-blue);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.eyebrow--light { color: var(--brand-blue-soft); }
.eyebrow--slate { color: var(--slate-500); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--charcoal);
}
h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.022em;
}
h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 400;
}
h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.22;
  font-weight: 500;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--sans);
  letter-spacing: -0.005em;
  color: var(--charcoal);
}
p { color: var(--slate-700); }
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  color: var(--slate-700);
  max-width: 62ch;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--brand-blue); color: var(--white); }
.btn--primary:hover { background: var(--brand-blue-deep); transform: translateY(-1px); }
.btn--dark { background: var(--charcoal); color: var(--white); }
.btn--dark:hover { background: var(--ink); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--ghost:hover { background: var(--charcoal); color: var(--white); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn--ghost-light:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn .arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--brand-blue);
  padding-bottom: 4px;
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}
.text-link:hover { gap: 14px; color: var(--brand-blue); }
.text-link--light { color: var(--white); border-color: var(--brand-blue-soft); }
.text-link--light:hover { color: var(--brand-blue-soft); }

/* ----- Container ----- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: var(--container-narrow); }
@media (max-width: 720px) { .container { padding: 0 22px; } }

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 250, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--sans);
  font-size: 24px; font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em; line-height: 1;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 9.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brand-blue);
  font-weight: 700; margin-top: 5px;
}
.brand-tag {
  font-family: var(--serif);
  font-style: italic; font-size: 11px;
  color: var(--slate-500);
  margin-top: 2px; font-weight: 400;
}

.nav-primary { display: flex; align-items: center; gap: 36px; }
.nav-primary a {
  font-size: 14px; font-weight: 500; color: var(--slate-700);
  position: relative; padding: 4px 0;
  transition: color var(--dur) var(--ease);
}
.nav-primary a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--brand-blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-primary a:hover, .nav-primary a.is-active { color: var(--charcoal); }
.nav-primary a:hover::after, .nav-primary a.is-active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-cta .btn { padding: 12px 22px; font-size: 12px; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 1.5px; background: var(--charcoal);
  transition: transform var(--dur) var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

@media (max-width: 1024px) {
  .nav-primary, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { height: 72px; }
}

.mobile-nav {
  position: fixed; inset: 0; background: var(--ink); color: var(--white);
  z-index: 200; transform: translateX(100%);
  transition: transform 500ms var(--ease);
  display: flex; flex-direction: column; padding: 22px 22px 48px;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav-close { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; color: var(--white); font-size: 28px; }
.mobile-nav .brand-name { color: var(--white); }
.mobile-nav .brand-sub { color: var(--brand-blue-soft); }
.mobile-nav .brand-tag { color: rgba(255,255,255,0.55); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-top: 48px; }
.mobile-nav ul a {
  display: block; padding: 16px 0;
  font-family: var(--serif); font-size: 30px; font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav .btn { margin-top: 28px; align-self: flex-start; }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  background: var(--ink); color: var(--white);
  overflow: hidden;
  padding: clamp(88px, 14vh, 140px) 0 clamp(100px, 16vh, 180px);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 75% 25%, rgba(0, 153, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 80%, rgba(51, 204, 255, 0.10), transparent 60%);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5; mix-blend-mode: overlay;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--white); font-weight: 300; letter-spacing: -0.025em; max-width: 14ch; }
.hero h1 em { font-style: italic; color: var(--brand-blue-soft); font-weight: 400; }
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 36px; color: var(--brand-blue-soft);
  font-family: var(--sans); font-size: 11px;
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-meta-line { width: 48px; height: 1px; background: var(--brand-blue-soft); }
.hero-lead {
  margin-top: 32px; max-width: 56ch;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}
.hero-actions { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 16px; }

.hero-credentials {
  display: flex; flex-wrap: wrap; gap: 36px 56px;
  margin-top: clamp(60px, 9vh, 96px);
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-credential { display: flex; flex-direction: column; gap: 6px; max-width: 240px; }
.hero-credential .num {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: var(--white); line-height: 1;
}
.hero-credential .num em { color: var(--brand-blue-soft); font-style: italic; font-weight: 400; }
.hero-credential .label {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 600;
}

/* Page hero (smaller, for inner pages) */
.page-hero {
  background: var(--ink); color: var(--white);
  padding: clamp(80px, 12vh, 130px) 0 clamp(70px, 10vh, 110px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(0, 153, 255, 0.14), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: var(--white); font-weight: 300;
  font-size: clamp(2.4rem, 5.8vw, 4.4rem);
  max-width: 18ch; letter-spacing: -0.02em;
}
.page-hero h1 em { font-style: italic; color: var(--brand-blue-soft); font-weight: 400; }
.page-hero .lead { color: rgba(255,255,255,0.78); margin-top: 28px; }
.breadcrumbs {
  display: flex; gap: 8px; margin-bottom: 28px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 500;
}
.breadcrumbs a { color: rgba(255,255,255,0.55); transition: color var(--dur) var(--ease); }
.breadcrumbs a:hover { color: var(--brand-blue-soft); }
.breadcrumbs span { color: rgba(255,255,255,0.3); }

/* =================================================================
   SECTION
   ================================================================= */
section { padding: clamp(80px, 12vh, 140px) 0; }
.section-head { margin-bottom: clamp(48px, 8vh, 80px); max-width: 720px; }
.section-head .eyebrow { margin-bottom: 24px; }
.section-head .lead { margin-top: 24px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* =================================================================
   PILLARS
   ================================================================= */
.pillars { background: var(--paper-warm); }
.pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 48px 32px 56px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background var(--dur) var(--ease);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--white); }
.pillar-num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; color: var(--slate-500);
  margin-bottom: 32px; display: block;
}
.pillar h3 { margin-bottom: 16px; }
.pillar p { font-size: 15px; line-height: 1.7; }

@media (max-width: 980px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none !important; border-bottom: 1px solid var(--line); padding: 36px 0 40px; }
  .pillar:last-child { border-bottom: none; }
}

/* =================================================================
   SERVICES PREVIEW
   ================================================================= */
.services-preview { background: var(--paper); }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.service-card {
  background: var(--paper);
  padding: 48px 40px 44px;
  display: flex; flex-direction: column; gap: 18px;
  transition: background var(--dur) var(--ease);
}
.service-card:hover { background: var(--white); }
.service-card .icon { width: 44px; height: 44px; color: var(--charcoal); margin-bottom: 4px; }
.service-card h3 { font-size: 1.6rem; }
.service-card p { font-size: 15px; line-height: 1.7; flex: 1; }
.service-card .text-link { margin-top: 8px; align-self: flex-start; font-size: 12px; }

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }
}

/* =================================================================
   PHILOSOPHY
   ================================================================= */
.philosophy { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.philosophy::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0, 153, 255, 0.14), transparent 60%);
}
.philosophy .container { position: relative; z-index: 2; }
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.philosophy h2 { color: var(--white); font-weight: 300; }
.philosophy h2 em { font-style: italic; color: var(--brand-blue-soft); font-weight: 400; }
.philosophy p { color: rgba(255,255,255,0.78); font-size: 1.05rem; }
.philosophy p + p { margin-top: 20px; }
.philosophy .eyebrow { color: var(--brand-blue-soft); margin-bottom: 24px; }
.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--white);
  font-weight: 400;
  border-left: 1px solid var(--brand-blue-soft);
  padding-left: 36px;
}
@media (max-width: 900px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
  .philosophy-quote { padding-left: 24px; }
}

/* =================================================================
   AUDIENCE / WHO WE SERVE
   ================================================================= */
.audience { background: var(--paper-warm); }
.audience-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px;
}
.audience-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 28px 32px;
  display: flex; flex-direction: column;
  transition: all var(--dur) var(--ease);
  min-height: 240px;
}
.audience-card:hover {
  background: var(--white);
  border-color: var(--brand-blue);
  transform: translateY(-3px);
}
.audience-card .num {
  font-family: var(--mono); font-size: 11px;
  color: var(--slate-500); letter-spacing: 0.12em;
  margin-bottom: auto;
}
.audience-card h4 {
  font-family: var(--serif); font-size: 1.5rem;
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-top: 36px; margin-bottom: 8px;
}
.audience-card p { font-size: 14px; line-height: 1.6; color: var(--slate-700); }

@media (max-width: 980px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .audience-grid { grid-template-columns: 1fr; } }

/* =================================================================
   PARTNERS
   ================================================================= */
.partners { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 80px 0; }
.partners-head { text-align: center; margin-bottom: 48px; }
.partners-head h3 {
  font-family: var(--serif); font-size: 1.4rem;
  font-weight: 400; color: var(--slate-700); margin-top: 16px;
}
.partners-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 56px 80px;
}
.partner-logo {
  font-family: var(--serif); font-size: 22px;
  color: var(--slate-500); font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.7;
  transition: all var(--dur) var(--ease);
  text-align: center;
}
.partner-logo:hover { opacity: 1; color: var(--charcoal); }
.partner-logo small {
  display: block; font-family: var(--sans);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate-500); margin-top: 4px;
}

/* =================================================================
   PROCESS
   ================================================================= */
.process { background: var(--paper); }
.process-list { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 48px; }
.process-step {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr;
  gap: 48px; padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step .num {
  font-family: var(--serif); font-size: 2.4rem;
  color: var(--brand-blue); font-weight: 400; font-style: italic;
}
.process-step h3 { font-size: 1.6rem; margin-bottom: 0; }
.process-step p { color: var(--slate-700); }
@media (max-width: 780px) {
  .process-step { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
}

/* =================================================================
   CTA BAND
   ================================================================= */
.cta-band {
  background: var(--ink); color: var(--white);
  padding: clamp(80px, 11vh, 120px) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(0, 153, 255, 0.16), transparent 60%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 {
  color: var(--white); font-weight: 300;
  max-width: 18ch; margin: 0 auto 28px;
}
.cta-band h2 em { font-style: italic; color: var(--brand-blue-soft); font-weight: 400; }
.cta-band p {
  color: rgba(255,255,255,0.78);
  max-width: 50ch; margin: 0 auto 40px;
  font-size: 1.05rem;
}

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 80px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-sub { color: var(--brand-blue-soft); }
.footer-brand .brand-tag { color: rgba(255,255,255,0.5); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 38ch; line-height: 1.65; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-blue-soft);
  font-weight: 600; margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color var(--dur) var(--ease);
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.7); font-style: normal; }
.footer-contact strong {
  display: block; color: var(--brand-blue-soft);
  font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
  margin-top: 16px; margin-bottom: 4px;
}
.footer-contact strong:first-child { margin-top: 0; }
.footer-contact a:hover { color: var(--white); }
.footer-meta {
  display: flex; flex-wrap: wrap; gap: 28px;
  align-items: center; justify-content: space-between;
  padding-top: 28px;
  font-size: 12px; color: rgba(255,255,255,0.45);
}
.footer-meta a { color: rgba(255,255,255,0.6); }
.footer-meta a:hover { color: var(--white); }
.footer-disclosure {
  font-size: 11.5px; line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 90ch;
  margin-top: 28px;
}
.footer-disclosure p + p { margin-top: 12px; }
.footer-disclosure a { color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.2); }
.footer-disclosure a:hover { color: var(--white); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   ABOUT PAGE
   ================================================================= */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  margin-top: 56px;
}
.value-block { border-top: 1px solid var(--charcoal); padding-top: 24px; }
.value-block h4 {
  font-family: var(--serif); font-size: 1.4rem;
  font-weight: 500; margin-bottom: 12px;
  color: var(--charcoal);
}
.value-block p { font-size: 15px; }
@media (max-width: 780px) { .values-grid { grid-template-columns: 1fr; gap: 32px; } }

.split-section { padding: clamp(80px, 12vh, 140px) 0; }
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.split-grid--narrow { gap: 60px; }
.split-grid h2 { margin-bottom: 24px; }
.split-grid p + p { margin-top: 18px; }
.split-image {
  background: var(--paper-warm);
  aspect-ratio: 4 / 5;
  position: relative; overflow: hidden;
}
.split-image-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: rgba(255,255,255,0.45);
  background-size: cover;
  background-position: center;
}
.split-image-photo {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.split-image-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.split-image-placeholder svg {
  position: relative; z-index: 2;
  width: 64px; height: 64px;
  color: var(--brand-blue-soft);
}
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 48px; }
  .split-image { aspect-ratio: 16 / 10; max-width: 540px; }
}

/* Team grid */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 56px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 32px;
  transition: all var(--dur) var(--ease);
}
.team-card:hover { border-color: var(--brand-blue); transform: translateY(-3px); }
.team-card .avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--serif); font-size: 32px; font-weight: 500;
  margin-bottom: 22px;
  overflow: hidden;
  flex-shrink: 0;
}
.team-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-card h4 {
  font-family: var(--serif); font-size: 1.4rem;
  font-weight: 500; margin-bottom: 4px;
}
.team-card .role {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-blue); font-weight: 600;
  margin-bottom: 16px;
}
.team-card p { font-size: 14px; line-height: 1.7; }
@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr; gap: 24px; } }

/* =================================================================
   SERVICES PAGE
   ================================================================= */
.service-detail {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 56px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.service-detail:last-of-type { border-bottom: 1px solid var(--line); }
.service-detail-num {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.14em; color: var(--slate-500);
  text-transform: uppercase; font-weight: 500;
}
.service-detail h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}
.service-detail p { font-size: 15.5px; line-height: 1.75; }
.service-detail p + p { margin-top: 16px; }
.service-detail ul { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.service-detail ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.6;
}
.service-detail ul li::before {
  content: ''; position: absolute; left: 0; top: 0.7em;
  width: 10px; height: 1px; background: var(--brand-blue);
}
@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; gap: 20px; padding: 48px 0; }
}

/* =================================================================
   AUDIENCE DETAIL
   ================================================================= */
.audience-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; padding: 80px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.audience-detail:nth-child(even) > div:first-child { order: 2; }
.audience-detail:last-of-type { border-bottom: 1px solid var(--line); }
.audience-detail .num {
  font-family: var(--serif);
  font-style: italic; color: var(--brand-blue);
  font-size: 2.6rem; font-weight: 400;
  display: block; margin-bottom: 16px;
}
.audience-detail h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 24px;
}
.audience-detail p + p { margin-top: 16px; }
.audience-detail ul { margin-top: 24px; }
.audience-detail ul li {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--slate-700);
}
.audience-detail ul li:last-child { border-bottom: 1px solid var(--line); }
.audience-detail ul li strong {
  color: var(--charcoal); font-weight: 600;
  flex-shrink: 0; min-width: 130px;
  font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding-top: 2px;
}
@media (max-width: 900px) {
  .audience-detail { grid-template-columns: 1fr; gap: 28px; padding: 56px 0; }
  .audience-detail:nth-child(even) > div:first-child { order: 0; }
  .audience-detail ul li { flex-direction: column; gap: 6px; }
  .audience-detail ul li strong { min-width: 0; }
}

/* =================================================================
   BLOG
   ================================================================= */
.blog-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.blog-card {
  background: var(--paper);
  padding: 44px 36px 40px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background var(--dur) var(--ease);
}
.blog-card:hover { background: var(--white); }
.blog-card .meta {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; color: var(--slate-500);
  text-transform: uppercase;
  display: flex; gap: 12px;
}
.blog-card .meta span { color: var(--brand-blue); }
.blog-card h3 { font-size: 1.55rem; line-height: 1.2; font-weight: 500; }
.blog-card p { font-size: 14.5px; line-height: 1.65; color: var(--slate-700); }
.blog-card .text-link { margin-top: auto; align-self: flex-start; font-size: 12px; padding-top: 8px; }
@media (max-width: 720px) { .blog-list { grid-template-columns: 1fr; } }

.blog-featured {
  background: var(--ink); color: var(--white);
  padding: 80px 0; margin-bottom: 80px;
}
.blog-featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.blog-featured h2 { color: var(--white); font-weight: 300; }
.blog-featured h2 em { font-style: italic; color: var(--brand-blue-soft); font-weight: 400; }
.blog-featured p { color: rgba(255,255,255,0.78); }
.blog-featured .meta {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; color: var(--brand-blue-soft);
  text-transform: uppercase;
  margin-bottom: 20px; display: flex; gap: 12px;
}
@media (max-width: 900px) { .blog-featured-grid { grid-template-columns: 1fr; gap: 32px; } }

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: start;
}
.contact-info h3 {
  font-size: 1.4rem; font-family: var(--serif);
  font-weight: 500; margin-bottom: 14px; margin-top: 32px;
}
.contact-info h3:first-of-type { margin-top: 0; }
.contact-info address {
  font-style: normal; font-size: 16px;
  line-height: 1.75; color: var(--slate-700);
}
.contact-info a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease);
}
.contact-info a:hover { border-bottom-color: var(--brand-blue); }

.office-card {
  background: var(--paper-warm);
  border-left: 2px solid var(--brand-blue);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.office-card .label {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-blue); font-weight: 700;
  margin-bottom: 10px;
}
.office-card address {
  font-style: normal; font-size: 15px;
  line-height: 1.7; color: var(--slate-700);
}
.office-card address strong {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 500;
  display: block; margin-bottom: 6px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 48px 44px;
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form p.sub { font-size: 14px; color: var(--slate-500); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--slate-500);
  font-weight: 600;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px; color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur) var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brand-blue);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; margin-top: 10px; }
.form-disclaimer {
  font-size: 12px; line-height: 1.6;
  color: var(--slate-500); margin-top: 14px;
}
.form-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 36px 28px; }
}

/* =================================================================
   FAQ
   ================================================================= */
.faq-list { margin-top: 48px; max-width: 880px; }
.faq-item { border-top: 1px solid var(--line); padding: 24px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px; cursor: pointer; list-style: none;
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 500;
  color: var(--charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--sans);
  font-weight: 300; font-size: 1.6rem;
  color: var(--brand-blue);
  transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin-top: 14px; color: var(--slate-700); font-size: 15.5px; line-height: 1.75; }

/* =================================================================
   LEGAL / DISCLAIMERS PAGE
   ================================================================= */
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-size: 1.6rem; margin-top: 48px; margin-bottom: 16px;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.legal-content h2:first-child { padding-top: 0; border-top: none; margin-top: 0; }
.legal-content p { font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.legal-content a { color: var(--brand-blue); border-bottom: 1px solid currentColor; }

/* =================================================================
   REVEAL ANIMATION
   ================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =================================================================
   UTILITIES
   ================================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
/* ============================================
   BIO PAGE LAYOUT
   ============================================ */

.bio-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.bio-sidebar {
  position: sticky;
  top: 100px;
}

.bio-content {
  max-width: none;
}

.bio-lead {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .bio-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bio-sidebar {
    position: static;
    max-width: 320px;
  }
  .bio-lead {
    font-size: 1.25rem;
  }
}

/* ============================================
   SOCIAL ICONS (FOOTER)
   ============================================ */

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: rgba(0, 153, 255, 0.08);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
