/* ============================================================
   PSYCHALYST — Editorial Mental Health Practice
   Palette: Dusty Trust Blue · Muted Slate Blue · Sage Green
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Locked palette */
  --bg-main:        #DDE7F3;  /* Dusty Trust Blue */
  --bg-section:     #F7F5F2;  /* Warm White */
  --bg-card:        #EDF3FA;  /* Mist Blue */
  --heading:        #5A73A5;  /* Muted Slate Blue */
  --heading-deep:   #46598A;  /* darker variant (auto-derived, for hover/active) */
  --body:           #4A4A4A;  /* Deep Charcoal */
  --body-soft:      #6B6B6B;
  --cta:            #B7C9AA;  /* Sage Green */
  --cta-hover:      #A3B494;  /* Soft Olive Sage */

  /* Derived */
  --line:           rgba(90, 115, 165, 0.20);
  --line-strong:    rgba(90, 115, 165, 0.45);

  /* Type */
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg-main);
  color: var(--body);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02", "cv11";
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--cta); color: var(--body); }

/* ---------- Layout ---------- */
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, .display {
  font-family: var(--serif);
  font-weight: 380;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: var(--heading);
}
em { color: var(--cta-hover); font-style: italic; font-variation-settings: "SOFT" 100, "WONK" 1; }

h2.section-title {
  font-size: clamp(36px, 5.4vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  max-width: 18ch;
}

h3.title {
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 420;
  line-height: 1.08;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--body-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--body-soft);
  display: inline-block;
}

.lede {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.32;
  letter-spacing: -0.01em;
  max-width: 32ch;
  color: var(--heading);
}

.muted { color: var(--body-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--cta);
  color: var(--body);
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 500;
  transition: transform .4s var(--ease), background .3s ease, color .3s ease;
  will-change: transform;
}
.btn:hover { background: var(--cta-hover); transform: translateY(-2px); }
.btn .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--body);
  transition: background .3s ease;
}

.btn--ghost {
  background: transparent;
  color: var(--heading);
  border: 1px solid var(--heading);
}
.btn--ghost:hover { background: var(--heading); color: var(--bg-section); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  color: var(--heading);
  transition: gap .35s var(--ease), border-color .3s ease, color .3s ease;
}
.link-arrow:hover { gap: 18px; border-color: var(--heading); color: var(--heading-deep); }
.link-arrow svg { transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .4s var(--ease), padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(221, 231, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.brand {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--body);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--heading);
  transition: width .4s var(--ease);
}
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }

.nav-toggle {
  width: 44px; height: 44px;
  display: none;
  align-items: center; justify-content: center;
  border: 1px solid var(--heading);
  border-radius: 999px;
  color: var(--heading);
}
.nav-toggle span { width: 18px; height: 1px; background: var(--heading); position: relative; display: block; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1px; background: var(--heading);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

/* ---------- Hero ---------- */
.hero {
  padding: 200px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero-headline {
  font-size: clamp(44px, 7.4vw, 116px);
  font-family: var(--serif);
  font-weight: 360;
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-variation-settings: "SOFT" 30;
  color: var(--heading);
}
.hero-headline em { color: var(--cta-hover); }
.hero-sub {
  margin-top: 36px;
  max-width: 44ch;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--body);
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--heading);
  border-radius: 8px;
  overflow: hidden;
}
.hero-visual .swatch {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, var(--bg-card) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, var(--cta) 0%, transparent 55%),
    var(--heading);
}
.hero-visual .label {
  position: absolute;
  bottom: 24px; left: 24px;
  color: var(--bg-section);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.02);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(34,46,58,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-visual .frame {
  position: absolute; inset: 24px;
  border: 1px solid rgba(247,245,242,0.5);
  border-radius: 4px;
  pointer-events: none;
}
.hero-meta {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta div { font-size: 13px; color: var(--body-soft); letter-spacing: 0.04em; }
.hero-meta div strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 420;
  color: var(--heading);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

/* ---------- Marquee (dark anchor — using Muted Slate Blue) ---------- */
.marquee {
  background: var(--heading);
  color: var(--bg-section);
  padding: 22px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollx 38s linear infinite;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 380;
  letter-spacing: -0.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; white-space: nowrap; }
.marquee-track .sep {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cta); flex-shrink: 0;
}
@keyframes scrollx {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
section {
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: clamp(48px, 6vw, 100px);
  align-items: end;
}
.section-num {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--body-soft);
}

/* ---------- About / Approach ---------- */
.about { background: var(--bg-section); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-image {
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
  background: var(--cta);
  border-radius: 6px;
  overflow: hidden;
}
.about-image .swatch {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, var(--cta-hover) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 20%, var(--bg-card) 0%, transparent 50%),
    var(--cta);
}
.about-body p {
  font-family: var(--serif);
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.34;
  font-weight: 350;
  letter-spacing: -0.01em;
  margin-bottom: 1.5em;
  color: var(--heading);
}
.about-body p:last-of-type { margin-bottom: 40px; }

.about-pillars { margin-top: 60px; display: grid; gap: 20px; }
.pillar {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar .num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cta-hover);
  font-style: italic;
}
.pillar h4 {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--heading);
}
.pillar p { color: var(--body-soft); font-size: 15px; }

/* ---------- Audiences / Who we work with ---------- */
.audiences { background: var(--bg-main); }
.audience-list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}
.audience {
  display: grid;
  grid-template-columns: 220px 1fr 60px;
  gap: 60px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding 0.45s var(--ease);
  position: relative;
}
.audience::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: var(--bg-card);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.audience:hover::before { opacity: 1; }
.audience:hover { padding-left: 16px; padding-right: 16px; }
.audience-meta { display: flex; flex-direction: column; gap: 8px; padding-top: 12px; }
.audience-meta .num {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--cta-hover);
}
.audience-meta .cat {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--body-soft);
  font-weight: 500;
}
.audience-body h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 56px);
  font-weight: 380;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin-bottom: 14px;
}
.audience-body p {
  color: var(--body-soft);
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.55;
}
.audience-arrow {
  align-self: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  flex-shrink: 0;
}
.audience-arrow svg { transition: transform 0.4s var(--ease); }
.audience:hover .audience-arrow {
  background: var(--heading);
  border-color: var(--heading);
  color: var(--bg-section);
}
.audience:hover .audience-arrow svg { transform: translateX(2px); }

/* ---------- Featured Work ---------- */
.featured { background: var(--bg-section); }
.feature-list { display: grid; gap: clamp(48px, 6vw, 96px); }
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature:nth-child(even) { direction: rtl; }
.feature:nth-child(even) > * { direction: ltr; }

.feature-art {
  aspect-ratio: 5/4;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: transform .8s var(--ease);
}
.feature:hover .feature-art { transform: scale(1.01); }
.feature-art .swatch { position: absolute; inset: 0; }
.feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: brightness(0.85) saturate(0.92);
}
.feature:hover .feature-img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1);
}
.feature-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,46,58,0.2) 0%, rgba(34,46,58,0.55) 100%);
  pointer-events: none;
}
.feature-art .tag {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--bg-section);
  color: var(--heading);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.feature-1 .swatch { background: radial-gradient(ellipse at 80% 20%, var(--bg-card) 0%, transparent 60%), var(--heading); }
.feature-2 .swatch { background: radial-gradient(ellipse at 20% 80%, var(--bg-section) 0%, transparent 60%), var(--cta); }
.feature-3 .swatch { background: radial-gradient(ellipse at 60% 60%, var(--bg-card) 0%, transparent 60%), var(--cta-hover); }

.feature-body .meta {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body-soft);
  margin-bottom: 14px;
}
.feature-body h3 {
  font-size: clamp(28px, 3.3vw, 48px);
  font-weight: 380;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.feature-body p { color: var(--body-soft); margin-bottom: 28px; max-width: 38ch; }

/* ---------- Pull quote (Muted Slate Blue anchor) ---------- */
.pullquote {
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--heading);
  color: var(--bg-section);
}
.pullquote blockquote {
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.08;
  font-weight: 340;
  letter-spacing: -0.02em;
  max-width: 22ch;
  color: var(--bg-section);
}
.pullquote blockquote em { color: var(--cta); }
.pullquote footer {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(247,245,242,0.7);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.pullquote footer .line { width: 60px; height: 1px; background: var(--cta); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--bg-section);
  border-top: 1px solid var(--line);
}
.cta-banner .inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: end;
}
.cta-banner h2 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 360;
  font-family: var(--serif);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ---------- Footer (Muted Slate Blue) ---------- */
.site-footer {
  background: var(--heading);
  color: var(--bg-section);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(247,245,242,0.18);
}
.footer-grid h5 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 22px;
}
.footer-grid ul li { padding: 6px 0; }
.footer-grid ul li a { color: rgba(247,245,242,0.78); font-size: 15px; }
.footer-grid ul li a:hover { color: var(--bg-section); }
.footer-brand .display {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 360;
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: var(--bg-section);
}
.footer-brand p { color: rgba(247,245,242,0.78); font-size: 14px; max-width: 38ch; }

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(247,245,242,0.6);
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.page-hero {
  padding: 200px 0 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(56px, 10vw, 156px);
  font-family: var(--serif);
  font-weight: 360;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}
.page-hero .lede { font-size: clamp(20px, 1.8vw, 26px); color: var(--body); }

.portfolio-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.chip {
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--heading);
  transition: all .3s ease;
}
.chip:hover, .chip.is-active {
  background: var(--heading);
  color: var(--bg-section);
  border-color: var(--heading);
}

.portfolio-grid {
  padding: clamp(60px, 8vw, 120px) 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  row-gap: clamp(60px, 7vw, 100px);
}

.project {
  display: block;
  transition: transform .6s var(--ease);
  cursor: pointer;
}
.project:hover { transform: translateY(-4px); }
.project .cover {
  aspect-ratio: 5/4;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin-bottom: 22px;
}
.project .cover .swatch { position: absolute; inset: 0; }
.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: brightness(0.88) saturate(0.95);
  z-index: 0;
}
.project:hover .cover-img {
  transform: scale(1.04);
  filter: brightness(0.98) saturate(1);
}
.project .cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,46,58,0.15) 0%, rgba(34,46,58,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}
.project .cover .tag { z-index: 2; }
.project .cover .tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--bg-section);
  color: var(--heading);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.project .cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(74,74,74,0.15));
  opacity: 0;
  transition: opacity .4s ease;
}
.project:hover .cover::after { opacity: 1; }
.project h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin-bottom: 8px;
}
.project .meta { font-size: 13px; color: var(--body-soft); letter-spacing: 0.04em; }

/* Spans */
.col-12 { grid-column: span 12; }
.col-8  { grid-column: span 8; }
.col-7  { grid-column: span 7; }
.col-6  { grid-column: span 6; }
.col-5  { grid-column: span 5; }
.col-4  { grid-column: span 4; }

/* Project swatches */
.proj-1 .swatch { background: radial-gradient(ellipse at 75% 25%, var(--bg-card) 0%, transparent 60%), var(--heading); }
.proj-2 .swatch { background: radial-gradient(ellipse at 20% 70%, var(--bg-section) 0%, transparent 55%), var(--cta); }
.proj-3 .swatch { background: radial-gradient(ellipse at 70% 30%, var(--cta) 0%, transparent 60%), var(--bg-card); }
.proj-4 .swatch { background: radial-gradient(ellipse at 40% 60%, var(--bg-card) 0%, transparent 60%), var(--cta-hover); }
.proj-5 .swatch { background: radial-gradient(ellipse at 60% 40%, var(--bg-card) 0%, transparent 60%), var(--heading); }
.proj-6 .swatch { background: radial-gradient(ellipse at 30% 70%, var(--cta-hover) 0%, transparent 60%), var(--heading); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(60px, 8vw, 140px);
  padding: 60px 0 clamp(80px, 10vw, 140px);
  align-items: start;
}
.contact-info h1 {
  font-size: clamp(48px, 7vw, 112px);
  font-family: var(--serif);
  font-weight: 360;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}
.contact-info .lede {
  margin-bottom: 48px;
  font-size: clamp(20px, 1.7vw, 24px);
  color: var(--body);
}
.contact-channels {
  display: grid;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.channel { display: grid; grid-template-columns: 100px 1fr; gap: 20px; align-items: baseline; }
.channel .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--body-soft);
  font-weight: 500;
}
.channel .value {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 380;
  letter-spacing: -0.01em;
  color: var(--heading);
}
.channel a:hover { color: var(--cta-hover); }

/* Form */
.form-card {
  background: var(--bg-card);
  border-radius: 8px;
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--line);
}
.form-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 6px;
}
.form-card .subtle { color: var(--body-soft); font-size: 14px; margin-bottom: 32px; }

.field {
  position: relative;
  margin-bottom: 8px;
  padding: 22px 0 14px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color .3s ease;
}
.field:focus-within { border-color: var(--heading); }
.field label {
  position: absolute;
  top: 22px; left: 0;
  font-size: 15px;
  color: var(--body-soft);
  pointer-events: none;
  transition: all .3s var(--ease);
  letter-spacing: 0.01em;
}
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  font-size: 16px;
  padding: 6px 0 4px;
  color: var(--body);
  resize: none;
  font-family: var(--sans);
}
.field textarea { min-height: 100px; line-height: 1.5; }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--heading);
  font-weight: 500;
}
.form-actions {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.form-actions .small { font-size: 12px; color: var(--body-soft); letter-spacing: 0.04em; }

/* ============================================================
   REVEALS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
}
.reveal-scale.is-in { opacity: 1; transform: scale(1); }
.split-line { display: block; overflow: hidden; }
.split-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s var(--ease);
}
.is-in .split-line > span, .split-line.is-in > span { transform: translateY(0); }

.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--cta-hover);
  width: 0%;
  z-index: 200;
  transition: width 0.08s linear;
}

/* ============================================================
   HOW WE WORK (Online sessions)
   ============================================================ */
.how-we-work {
  background: var(--bg-section);
  border-top: 1px solid var(--line);
}

.how-we-work .lede {
  max-width: 720px;
  margin-top: 8px;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.7;
  color: var(--body);
}

.online-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.online-pillar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pillar-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 360;
  font-style: italic;
  color: var(--cta);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.online-pillar h3 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.6vw, 1.45rem);
  font-weight: 380;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin: 0;
}

.online-pillar p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  margin: 0;
  max-width: 32ch;
}

@media (max-width: 900px) {
  .online-pillars { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder { background: var(--bg-main); }

.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

.founder-visual {
  position: sticky;
  top: 120px;
}

.founder-photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  background: var(--heading);
  margin-bottom: 20px;
}

.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 30% 30%, var(--bg-card) 0%, transparent 60%), var(--heading);
  font-family: var(--serif);
  font-size: 120px;
  font-weight: 360;
  color: rgba(247,245,242,0.1);
  letter-spacing: -4px;
}

.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-card {
  padding: 20px 0 0;
  border-top: 1px solid var(--line-strong);
}

.founder-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 420;
  color: var(--heading);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.founder-role {
  font-size: 12px;
  color: var(--body-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}

.founder-since {
  font-size: 12px;
  color: var(--body-soft);
  opacity: 0.6;
  letter-spacing: 0.06em;
}

.founder-lede {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 340;
  font-style: italic;
  line-height: 1.38;
  color: var(--heading);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 80, "WONK" 1;
}

.founder-body p:not(.founder-lede) {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 20px;
  max-width: 58ch;
}

.founder-sig {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sig-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--heading);
  font-style: italic;
  letter-spacing: -0.01em;
}

.sig-role {
  font-size: 12px;
  color: var(--body-soft);
  letter-spacing: 0.08em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--heading); }

.testimonials .section-head { margin-bottom: 64px; }

.testimonials .section-num { color: rgba(247,245,242,0.35); }

.testimonials .section-title {
  color: var(--bg-section);
}

.testimonials .section-title em {
  color: var(--cta);
  opacity: 1;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid rgba(247,245,242,0.08);
}

.testi {
  padding: clamp(32px, 3.5vw, 52px);
  border: 1px solid rgba(247,245,242,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  transition: background 0.35s ease;
}

.testi:hover { background: rgba(247,245,242,0.04); }

.testi-quote p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 340;
  line-height: 1.72;
  color: rgba(247,245,242,0.78);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}

.testi-quote p:last-child { margin-bottom: 0; }

.testi-attr {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
}

.testi-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cta);
  flex-shrink: 0;
}

.testi-attr span:last-child {
  font-size: 12px;
  color: rgba(247,245,242,0.4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   HOMEPAGE IMAGES (Approach + How We Work)
   ============================================================ */
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.how-grid .lede {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.7;
  color: var(--body);
  margin: 0;
}
.how-image {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}
.how-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   CASE STUDY PAGES
   ============================================================ */
.case-hero {
  padding: 160px 0 60px;
  background: var(--bg-section);
}
.case-back {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--body);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.case-back:hover { color: var(--cta); }
.case-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 360;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--heading);
  margin: 16px 0 24px;
  max-width: 18ch;
}
.case-hero h1 em {
  color: var(--cta);
  font-style: italic;
}
.case-hero .lede {
  font-family: var(--inter);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body-soft);
}
.case-image {
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  margin: 40px 0 60px;
}
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-body {
  padding-bottom: 100px;
}
.case-content {
  max-width: 720px;
  margin: 0 auto;
}
.case-content p {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.85;
  color: var(--body);
  margin-bottom: 24px;
}
.case-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--heading);
  margin: 48px 0 20px;
  letter-spacing: -0.01em;
}
.case-content strong {
  color: var(--heading);
  font-weight: 500;
}

/* ============================================================
   WORK SECTIONS (audience-specific)
   ============================================================ */
.work-section {
  padding: 100px 0;
  background: var(--bg-section);
}
.work-section-alt {
  background: var(--bg-main);
}
.work-section .lede {
  max-width: 720px;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.75;
  color: var(--body);
  margin: 20px 0 0;
}
.work-section .lede + .lede {
  margin-top: 16px;
}
.work-section .lede strong {
  color: var(--heading);
  font-weight: 500;
}
.work-cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.work-cards .project {
  text-decoration: none;
  color: inherit;
}
.work-cards .col-12 { grid-column: span 12; }
.work-cards .col-7 { grid-column: span 7; }
.work-cards .col-6 { grid-column: span 6; }
.work-cards .col-5 { grid-column: span 5; }

@media (max-width: 900px) {
  .work-cards { grid-template-columns: 1fr; gap: 32px; }
  .work-cards .col-12, .work-cards .col-7, .work-cards .col-6, .work-cards .col-5 { grid-column: span 1; }
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg-main);
  z-index: 99;
  padding: 100px 32px 40px;
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu ul { display: grid; gap: 18px; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 380;
  letter-spacing: -0.02em;
  color: var(--heading);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid, .about-grid, .feature, .feature:nth-child(even),
  .contact-layout, .cta-banner .inner, .section-head {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  .hero { padding-top: 140px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-image { position: static; aspect-ratio: 16/10; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-visual { position: static; display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: end; }
  .founder-photo-wrap { margin-bottom: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; gap: 12px; text-align: center; }
  .col-12, .col-8, .col-7, .col-6, .col-5, .col-4 { grid-column: span 12; }
  .pullquote footer { flex-direction: column; align-items: flex-start; }
  .channel { grid-template-columns: 1fr; gap: 4px; }
  .audience { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .audience:hover { padding-left: 0; padding-right: 0; }
  .audience-arrow { justify-self: start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero-meta { grid-template-columns: 1fr; }
  .pillar { grid-template-columns: 60px 1fr; }
  .founder-visual { grid-template-columns: 1fr; }
  .founder-photo-wrap { aspect-ratio: 4/3; }
  .testi { padding: 32px 20px; }
}
