/* ──────────────────────────────────────────────────────────────
   Fonts (self-hosted variable WOFF2)
   ────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Geologica';
  src: url('fonts/Geologica.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('fonts/Lora-VariableFont_wght.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('fonts/Lora-Italic-VariableFont_wght.woff2') format('woff2');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

/* ──────────────────────────────────────────────────────────────
   Tokens
   ────────────────────────────────────────────────────────────── */
:root {
  --c-charcoal: #2C2E35;
  --c-olive: #ADB654;
  --c-teal: #3D8F8F;
  --c-teal-light: #E8F2F2;
  --c-navy: #3D588F;
  --c-bg: #F2EDE3;
  --c-bg-alt: #EBE4D8;
  --c-bg-card: #FFFFFF;
  --c-text-main: #2C2E35;
  --c-text-sub: #5E646B;
  --c-text-muted: #A3A6AA;
  --c-border: #D9D2C5;
  --c-border-hard: #D1D3D5;
  --c-on-dark-soft: rgba(255, 255, 255, 0.58);
  --c-on-dark-faint: rgba(255, 255, 255, 0.45);
  --c-on-dark-mute: rgba(255, 255, 255, 0.6);

  --accent: var(--c-olive);
  --accent-text: var(--c-charcoal);
  --headline: var(--c-navy);

  --font-sans: 'Geologica', system-ui, sans-serif;
  --font-serif: 'Lora', Georgia, serif;

  /* Fluid type — viewport scales smoothly across the whole range */
  --fs-2xs: clamp(11px, 0.5vw + 9.5px, 12px);
  --fs-xs:  clamp(12px, 0.7vw + 9.8px, 14px);
  --fs-sm:  clamp(13px, 0.7vw + 10.8px, 15px);
  --fs-base: clamp(14px, 0.7vw + 11.8px, 16px);
  --fs-md:  clamp(15px, 0.7vw + 12.8px, 17px);
  --fs-lg:  clamp(16px, 0.7vw + 13.8px, 18px);
  --fs-xl:  clamp(17px, 0.8vw + 14.4px, 19px);
  --fs-2xl: clamp(18px, 1vw + 14.9px, 22px);
  --fs-3xl: clamp(20px, 2vw + 13.6px, 28px);
  --fs-h3:  clamp(24px, 2.6vw + 16px, 38px);
  --fs-h2:  clamp(26px, 3vw + 16.5px, 42px);
  --fs-h1:  clamp(28px, 3.4vw + 17.1px, 52px);
  --fs-hero: clamp(32px, 4vw + 19.2px, 60px);

  /* Fluid spacing */
  --space-section-y: clamp(64px, 5vw + 47px, 100px);
  --space-section-x: clamp(20px, 3.5vw + 6.6px, 48px);
  --space-hero-x:    clamp(20px, 4.6vw + 2.6px, 64px);
  --space-card-pad:  clamp(28px, 1.5vw + 22px, 36px);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 12px;
  --r-pill: 999px;

  --nav-h: 72px;

  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
  --hairline-dark: 1px solid rgba(255, 255, 255, 0.07);
  --hairline-dark-soft: 1px solid rgba(255, 255, 255, 0.06);
}

/* ──────────────────────────────────────────────────────────────
   Base
   ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body, #root { min-height: 100%; }
body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  background: var(--c-bg);
  color: var(--c-text-main);
}
img { display: block; max-width: 100%; }
button { background: none; border: none; padding: 0; font: inherit; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--c-border-hard); border-radius: 3px; }

@media (max-width: 768px) {
  body { overflow-x: hidden; }
}

/* ──────────────────────────────────────────────────────────────
   Animation
   ────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.is-visible { animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.fade-up.d1 { animation-delay: 0.10s; }
.fade-up.d2 { animation-delay: 0.22s; }
.fade-up.d3 { animation-delay: 0.34s; }
.fade-up.d4 { animation-delay: 0.46s; }
.fade-up.d5 { animation-delay: 0.58s; }

/* ──────────────────────────────────────────────────────────────
   Typography helpers
   ────────────────────────────────────────────────────────────── */
.eyebrow {
  font-size: clamp(13px, 0.5vw + 11.5px, 14px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.eyebrow--accent { color: var(--accent); }
.eyebrow--olive  { color: var(--c-olive); }
.eyebrow--teal   { color: var(--c-teal); }
.eyebrow--muted  { color: var(--c-text-muted); letter-spacing: 0.08em; }
.eyebrow--footer { color: #5E646B; letter-spacing: 0.08em; }
.eyebrow--label  { color: var(--c-text-sub); letter-spacing: 0.06em; }

/* Lora italic body — already bumped one weight + one size step */
.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}
.serif--reg   { font-style: normal; }
.serif--600   { font-weight: 600; }

/* ──────────────────────────────────────────────────────────────
   Buttons
   ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-text);
  font-size: var(--fs-md);
  padding: 14px 34px;
}
.btn--primary:hover { filter: brightness(0.94); }
.btn--primary.btn--sm { font-size: var(--fs-xs); padding: 8px 16px; }
.btn--primary.btn--md { font-size: var(--fs-sm); padding: 9px 22px; }
.btn--primary.btn--cta { font-size: var(--fs-md); padding: 14px 32px; }
.btn--primary.btn--compact { font-size: var(--fs-sm); padding: 13px 28px; }
.btn--primary.btn--submit { font-size: var(--fs-md); padding: 15px 36px; align-self: flex-start; }

.btn--outline {
  border: 1px solid var(--c-border);
  color: var(--c-text-main);
  font-size: var(--fs-sm);
  padding: 12px 28px;
  border-radius: var(--r-sm);
}
.btn--outline:hover { border-color: var(--c-text-main); }

.btn--link {
  font-weight: 400;
  font-size: var(--fs-sm);
  color: var(--c-on-dark-faint);
  padding: 14px 0;
}
.btn--link:hover { color: rgba(255, 255, 255, 0.9); }

.btn--link-cta {
  font-weight: 400;
  font-size: var(--fs-sm);
  color: var(--c-on-dark-faint);
  padding: 10px 32px;
}
.btn--link-cta:hover { color: rgba(255, 255, 255, 0.9); }

/* ──────────────────────────────────────────────────────────────
   Layout helpers
   ────────────────────────────────────────────────────────────── */
.container { max-width: 960px; margin: 0 auto; }
.container--narrow { max-width: 800px; margin: 0 auto; }
.container--form   { max-width: 680px; margin: 0 auto; }
.container--narrow-form { max-width: 640px; margin: 0 auto; }

.section {
  padding: var(--space-section-y) var(--space-section-x);
}
.section--bg     { background: var(--c-bg); }
.section--bg-alt { background: var(--c-bg-alt); }
.section--top    { padding-top: var(--space-section-y); padding-bottom: 0; }
.section--bottom { padding-top: 0; padding-bottom: var(--space-section-y); }

.page { padding-top: var(--nav-h); min-height: 100vh; background: var(--c-bg); }
.page--alt { background: var(--c-bg-alt); }

/* ──────────────────────────────────────────────────────────────
   Nav
   ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(20px, 3vw + 8px, 48px);
  background: rgba(242, 237, 227, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: background 0.35s ease, border-color 0.35s ease;
}
.nav--on-dark {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.nav__logo {
  height: 50px;
  cursor: pointer;
  transition: filter 0.35s ease;
}
.nav--on-dark .nav__logo { filter: brightness(0) invert(1); }
@media (max-width: 768px) {
  .nav__logo { height: 40px; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--c-text-sub);
  transition: color 0.2s ease;
}
.nav__link.is-active { color: var(--c-text-main); font-weight: 500; }
.nav--on-dark .nav__link { color: var(--c-on-dark-mute); }
.nav--on-dark .nav__link.is-active { color: #fff; }

.nav__mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 4px;
  color: var(--c-text-main);
}
.nav--on-dark .menu-btn { color: #fff; }
.menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.15s ease;
}
.menu-btn.is-open span:nth-child(1) { transform: rotate(45deg) translate(0, 3.5px); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: rotate(-45deg) translate(0, -3.5px); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 8px 0 16px;
  background: rgba(242, 237, 227, 0.98);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu__link {
  text-align: left;
  padding: 14px 24px;
  font-size: var(--fs-lg);
  font-weight: 300;
  color: var(--c-text-sub);
}
.mobile-menu__link.is-active { color: var(--c-text-main); font-weight: 500; }

/* ──────────────────────────────────────────────────────────────
   Hero
   ────────────────────────────────────────────────────────────── */
.hero {
  display: flex;
  position: relative;
  min-height: 100vh;
  background: var(--c-charcoal);
  overflow: hidden;
}
.hero__photo {
  position: relative;
  flex-shrink: 0;
  width: 42%;
}
.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  opacity: 0.78;
}
.hero__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__fade--right {
  background: linear-gradient(to right, transparent 50%, var(--c-charcoal) 100%);
}
.hero__fade--bottom {
  background: linear-gradient(to top, var(--c-charcoal) 0%, transparent 25%);
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px var(--space-hero-x) 100px clamp(20px, 3.5vw + 6.5px, 52px);
  position: relative;
}
.hero__rule {
  width: 44px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 36px;
}
.hero__eyebrow { margin-bottom: 28px; }
.hero__title {
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.hero__lede {
  font-size: var(--fs-md);
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-on-dark-soft);
  max-width: 460px;
  margin-bottom: 48px;
}
.hero__ctas {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero__photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    margin-top: var(--nav-h);
  }
  .hero__fade--right {
    background: linear-gradient(to bottom, transparent 55%, var(--c-charcoal) 100%);
  }
  .hero__fade--bottom { display: none; }
  .hero__content {
    padding: clamp(24px, 4vw, 36px) 20px clamp(56px, 7vw, 72px);
  }
  .hero__rule { margin-bottom: 24px; }
  .hero__eyebrow { margin-bottom: 20px; }
  .hero__title { margin-bottom: 22px; }
  .hero__lede { margin-bottom: 36px; }
}

/* ──────────────────────────────────────────────────────────────
   Section: Gap
   ────────────────────────────────────────────────────────────── */
.gap-eyebrow { margin-bottom: 20px; }
.gap-title {
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--headline);
  max-width: 600px;
  margin-bottom: 24px;
}
.gap-sub {
  font-size: var(--fs-lg);
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-text-sub);
  margin-bottom: 44px;
}
.gap-signals {
  border-left: 1px solid var(--c-border);
  padding-left: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
}
.gap-signal {
  font-size: var(--fs-xl); /* Lora 17 → 18 → 19 */
  line-height: 1.8;
  color: var(--c-text-sub);
}
.gap-outro {
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-text-main);
  max-width: 560px;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .gap-signals { padding-left: 24px; }
}

/* ──────────────────────────────────────────────────────────────
   Section: Services
   ────────────────────────────────────────────────────────────── */
.services-eyebrow { margin-bottom: 16px; }
.services-title {
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--headline);
  max-width: 480px;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  height: 100%;
  border-radius: var(--r-md);
  padding: var(--space-card-pad);
}
.service-card--white {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-hard);
  box-shadow: var(--shadow-card);
}
.service-card--dark { background: var(--c-charcoal); }
.service-card--teal { background: var(--c-teal-light); }

.service-card__label {
  font-size: var(--fs-2xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-olive);
  margin-bottom: 16px;
}
.service-card__title {
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--c-text-main);
  text-wrap: balance;
}
.service-card--dark .service-card__title { color: #FFFFFF; }
.service-card__body {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-md); /* Lora 15 → 16 → 17 */
  line-height: 1.75;
  color: var(--c-text-sub);
}
.service-card--dark .service-card__body { color: var(--c-text-muted); }

/* ──────────────────────────────────────────────────────────────
   Home CTA strip
   ────────────────────────────────────────────────────────────── */
.cta-strip {
  background: var(--c-charcoal);
  border-radius: var(--r-lg);
  padding: clamp(36px, 3vw + 14px, 56px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-strip__copy { max-width: 500px; }
.cta-strip__eyebrow { color: var(--c-olive); margin-bottom: 16px; }
.cta-strip__lead {
  font-size: var(--fs-3xl);
  font-weight: 300;
  line-height: 1.4;
  color: #FFFFFF;
  margin-bottom: 12px;
  text-wrap: balance;
}
.cta-strip__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-lg); /* Lora 16 → 17 → 18 */
  line-height: 1.7;
  color: var(--c-text-muted);
}
.cta-strip__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-strip { flex-direction: column; align-items: flex-start; gap: 28px; }
  .cta-strip__btns { flex-direction: column; align-items: flex-start; width: 100%; }
}

/* ──────────────────────────────────────────────────────────────
   Approach
   ────────────────────────────────────────────────────────────── */
.approach-intro {
  padding: clamp(56px, 5vw + 36px, 80px) var(--space-section-x) 0;
  max-width: 960px;
  margin: 0 auto;
}
.approach-body {
  padding: 0 var(--space-section-x) var(--space-section-y);
  max-width: 960px;
  margin: 0 auto;
}
.approach-title {
  font-size: var(--fs-h1);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--headline);
  max-width: 620px;
  margin-bottom: 24px;
}
.approach-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-2xl); /* Lora 18 → 19 → 20 */
  line-height: 1.8;
  color: var(--c-text-sub);
  max-width: 560px;
  margin-bottom: 72px;
}
.approach-section-label { margin-bottom: 32px; }

.approach-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 80px;
}
.approach-step {
  background: var(--c-bg-alt);
  padding: 44px 40px;
  height: 100%;
}
.approach-step__arrow {
  font-size: var(--fs-lg);
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.approach-step__title {
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--c-text-main);
  margin-bottom: 12px;
  line-height: 1.3;
  text-wrap: balance;
}
.approach-step__body {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-md); /* Lora 15 → 16 → 17 */
  line-height: 1.75;
  color: var(--c-text-sub);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}
.approach-grid__eyebrow { margin-bottom: 20px; }
.approach-grid__lead {
  font-size: var(--fs-md);
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-text-sub);
  margin-bottom: 28px;
}
.approach-grid__lead--tight { margin-bottom: 24px; }

.who-list { display: flex; flex-direction: column; }
.who-list__item {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-md); /* Lora 15 → 16 → 17 */
  line-height: 1.75;
  color: var(--c-text-sub);
  padding: 20px 0;
  border-bottom: 1px solid var(--c-border);
}
.who-list__item:last-child { border-bottom: none; }

.why-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-md); /* Lora 15 → 16 → 17 */
  line-height: 1.75;
  color: var(--c-text-muted);
}

.approach-cta {
  background: var(--c-charcoal);
  border-radius: var(--r-lg);
  padding: clamp(32px, 3vw + 12px, 48px) clamp(28px, 3.5vw + 12px, 52px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.approach-cta__lead {
  font-size: var(--fs-2xl);
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.4;
  text-wrap: balance;
}
.approach-cta__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-base); /* Lora 14 → 15 → 16 */
  color: var(--c-text-muted);
}

@media (max-width: 768px) {
  .approach-steps { grid-template-columns: 1fr; }
  .approach-step { padding: 32px 24px; }
  .approach-grid { grid-template-columns: 1fr; gap: 40px; }
  .approach-cta { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ──────────────────────────────────────────────────────────────
   Investing
   ────────────────────────────────────────────────────────────── */
.investing-intro {
  padding: clamp(56px, 5vw + 36px, 80px) var(--space-section-x) 72px;
  max-width: 960px;
  margin: 0 auto;
}
.investing-title {
  font-size: var(--fs-h1);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--headline);
  max-width: 760px;
  margin-bottom: 24px;
}
.investing-lede {
  font-size: var(--fs-lg);
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-text-sub);
  max-width: 560px;
  margin-bottom: 56px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 64px;
}
.focus-card {
  background: var(--c-bg-card);
  padding: var(--space-card-pad);
}
.focus-card__label {
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--c-text-main);
  margin-bottom: 10px;
}
.focus-card__desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-base); /* Lora 14 → 15 → 16 */
  line-height: 1.75;
  color: var(--c-text-sub);
}

.pull-quote {
  border-left: 2px solid var(--c-olive);
  padding-left: 28px;
  max-width: 600px;
  margin-bottom: 80px;
}
.pull-quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 1.05vw + 15.4px, 23px); /* Lora 19 → 20 → 21 */
  line-height: 1.8;
  color: var(--c-text-main);
  margin-bottom: 14px;
}
.pull-quote__attr {
  display: block;
  font-style: normal;
  font-size: var(--fs-2xs);
  font-weight: 500;
  color: var(--c-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.investing-form-section { padding: var(--space-section-y) var(--space-section-x); background: var(--c-bg-alt); }
.investing-form-eyebrow { margin-bottom: 16px; }
.investing-form-title {
  font-size: var(--fs-h3);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--headline);
  margin-bottom: 16px;
}
.investing-form-intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-lg); /* Lora 16 → 17 → 18 */
  line-height: 1.75;
  color: var(--c-text-sub);
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .focus-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────────
   Contact
   ────────────────────────────────────────────────────────────── */
.contact-intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-lg); /* Lora bumped 17 → 18 */
  line-height: 1.8;
  color: var(--c-text-sub);
  margin-bottom: 44px;
}
.contact-title {
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--headline);
  margin-bottom: 16px;
}
.contact-eyebrow { margin-bottom: 16px; }

/* ──────────────────────────────────────────────────────────────
   Forms
   ────────────────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 24px; }
.form--tight { gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; }
.form-field__label {
  display: block;
  font-size: var(--fs-2xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-sub);
  margin-bottom: 6px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--c-border-hard);
  border-radius: var(--r-sm);
  font-size: var(--fs-base);
  font-weight: 300;
  color: var(--c-text-main);
  background: #FFFFFF;
  outline: none;
  line-height: 1.6;
  transition: border-color 0.2s ease;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--c-text-sub); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-textarea--lg { min-height: 130px; }
.form-textarea--sm { min-height: 80px; }
.form-select { appearance: none; cursor: pointer; }

.form-success {
  background: var(--c-teal-light);
  border-radius: var(--r-md);
  padding: 48px;
  text-align: center;
}
.form-success--sm { padding: 40px; }
.form-success__title {
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--c-teal);
  margin-bottom: 10px;
}
.form-success__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-base); /* Lora bumped 15 → 16 */
  color: var(--c-text-sub);
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .form-input, .form-textarea, .form-select { font-size: 16px; /* prevent iOS zoom */ }
}

/* ──────────────────────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--c-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: clamp(48px, 4vw + 32px, 64px) var(--space-section-x) 44px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: var(--hairline-dark);
}
.footer__logo {
  height: 58px;
  cursor: pointer;
  filter: brightness(0) invert(1) opacity(0.8);
}
.footer__linkedin {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.footer__linkedin:hover { opacity: 0.85; }
.footer__linkedin img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__about {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500; /* bumped 300 → 400, kept readable as 500 */
  font-size: var(--fs-base); /* Lora bumped 15 → 16 */
  line-height: 1.8;
  max-width: 300px;
  color: var(--c-text-muted);
}
@media (max-width: 768px) {
  .footer__about { max-width: 66.6667%; }
}
.footer__heading {
  font-size: var(--fs-2xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5E646B;
  margin-bottom: 16px;
}
.footer__nav-link,
.footer__focus-item {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--c-text-muted);
  padding: 5px 0;
  text-align: left;
}

.footer__bottom {
  border-top: var(--hairline-dark-soft);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copyright {
  font-size: var(--fs-2xs);
  font-weight: 300;
  color: #5E646B;
}
.footer__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer__pill {
  font-size: var(--fs-2xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  background: rgba(173, 182, 84, 0.1);
  color: var(--c-olive);
  padding: 4px 14px;
  border-radius: var(--r-pill);
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__top { flex-wrap: wrap; gap: 24px; }
}
