/* ============================================================
   Healing With Kosmiq: design system
   Palette pulled from the brand mark:
     charcoal  #121214  (night / ink)
     sage      #8FA08B  → #6E8470 / #E8EDE6 (accent)
     sand      #D8B99A  → #F3E8DB (warm)
     lilac     #B9A0B8  → #EDE3EC (soft)
     gold      #C9A67A  (highlights)
   Light theme primary; charcoal "night" band for podcast/footer.
   One radius scale (16px cards / pill buttons / 12px inputs).
   Font: Outfit (variable, self-hosted).
   ============================================================ */

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/Outfit-VF.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #F8F4EF;
  --surface: #FFFBF7;
  --surface-2: #F0E9E0;
  --ink: #121214;
  --ink-2: #2E2A28;
  --muted: #7A6F6B;
  --line: #E8DDD2;

  /* brand accents derived from the mark */
  --accent: #6E8470;        /* sage: links, icon tints, secondary */
  --accent-hover: #5A6F5D;
  --accent-soft: #E8EDE6;
  --accent-ink: #F8F4EF;

  --sand: #D8B99A;
  --sand-soft: #F3E8DB;
  --lilac: #B9A0B8;
  --lilac-soft: #EDE3EC;
  --gold: #C9A67A;          /* warm gold for eyebrows / stars */
  --amber: #C9A67A;
  --amber-soft: #F5EBDC;

  --night: #121214;
  --night-2: #1C1E22;
  --night-text: #F8F4EF;
  --night-muted: #C2B5C1;
  --night-line: #2A2A2E;

  --radius: 16px;
  --radius-input: 12px;
  --radius-pill: 999px;

  --font: "Outfit", "Avenir Next", system-ui, sans-serif;
  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 72px;
  --shadow: 0 1px 2px rgba(18, 18, 20, 0.06), 0 10px 30px rgba(18, 18, 20, 0.08);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121214;
    --surface: #1A1C1E;
    --surface-2: #1E2023;
    --ink: #F8F4EF;
    --ink-2: #D9D0CC;
    --muted: #A89FA0;
    --line: #2A2A2E;
    --accent: #8FA08B;
    --accent-hover: #A3B5A5;
    --accent-soft: #1E2A22;
    --accent-ink: #121214;
    --sand: #D8B99A;
    --sand-soft: #2A2420;
    --lilac: #B9A0B8;
    --lilac-soft: #2A232A;
    --gold: #C9A67A;
    --amber: #C9A67A;
    --amber-soft: #2E2620;
    --night: #0A0A0B;
    --night-2: #141416;
    --night-text: #F8F4EF;
    --night-muted: #B9A0B8;
    --night-line: #2A2A2E;
    --shadow: 0 1px 2px rgba(0,0,0,0.4), 0 12px 36px rgba(0,0,0,0.45);
  }
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
p { margin: 0 0 1.1em; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.015em; font-weight: 600; color: var(--ink); margin: 0 0 0.5em; }
h1 { font-weight: 400; letter-spacing: -0.025em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

::selection { background: var(--lilac); color: var(--ink); }

/* Skip link for a11y */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; background: var(--ink); color: var(--surface); padding: 10px 16px; border-radius: 8px; }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.site-nav.is-night {
  background: color-mix(in srgb, var(--night) 88%, transparent);
  border-bottom-color: var(--night-line);
  color: var(--night-text);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 17px; letter-spacing: -0.01em; color: var(--ink); }
.brand--lg { font-size: 22px; gap: 14px; letter-spacing: -0.02em; }
.brand--lg .brand-mark { width: 64px; height: 64px; flex: 0 0 64px; }
.brand--lg .brand-mark img { width: 64px; height: 64px; }
@media (max-width: 640px) {
  .brand--lg { font-size: 19px; }
  .brand--lg .brand-mark { width: 52px; height: 52px; flex: 0 0 52px; }
  .brand--lg .brand-mark img { width: 52px; height: 52px; }
}
.site-nav.is-night .brand { color: var(--night-text); }
.brand:hover { color: var(--ink); }
.brand-mark { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 999px; overflow: hidden; display: grid; place-items: center; background: var(--night); box-shadow: 0 1px 6px rgba(0,0,0,0.12); }
.brand-mark img { width: 44px; height: 44px; object-fit: cover; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-flex; align-items: center;
  padding: 9px 14px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.site-nav.is-night .nav-links a { color: var(--night-muted); }
.nav-links a:hover { background: var(--surface-2); color: var(--ink); }
.nav-links a.active { background: var(--ink); color: var(--surface); }
.site-nav.is-night .nav-links a.active { background: var(--surface); color: var(--night); }
.nav-cta { margin-left: 8px; }

.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; color: var(--ink); border-radius: 8px; }
.site-nav.is-night .nav-toggle { color: var(--night-text); }
.nav-toggle svg { width: 26px; height: 26px; display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 12px; display: none; box-shadow: var(--shadow);
  }
  .site-nav.is-night .nav-links { background: var(--night-2); border-bottom-color: var(--night-line); }
  .nav-links.open { display: flex; }
  .nav-links a { justify-content: center; padding: 14px; font-size: 17px; }
  .nav-cta { margin: 8px 0 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--radius-pill);
  font-family: var(--font); font-size: 16px; font-weight: 600; line-height: 1;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover { background: #1E1E20; color: var(--surface); }
@media (prefers-color-scheme: dark) {
  .btn-primary { background: var(--surface); color: var(--night); }
  .btn-primary:hover { background: #fff; color: var(--night); }
}
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { background: var(--surface-2); color: var(--ink); }
.btn-night { background: var(--night-text); color: var(--night); }
.btn-night:hover { background: #fff; color: var(--night); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn .icon { width: 18px; height: 18px; }

/* ---------- Typography utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); 
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.lead { font-size: 20px; line-height: 1.55; color: var(--ink-2); max-width: 60ch; }
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(32px, 4vw, 46px); font-weight: 400; letter-spacing: -0.02em; margin-top: 14px; }
.section-head p { color: var(--muted); font-size: 17px; max-width: 56ch; margin: 0; }
.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons row ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 28px; }

/* ---------- Hero ---------- */
.hero { padding: 88px 0 0; min-height: 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(40px, 5.4vw, 64px); font-weight: 300; letter-spacing: -0.03em; line-height: 1.06; margin-bottom: 22px; }
.hero h1 em { font-style: normal; font-weight: 500; color: var(--lilac); }
.hero .sub { font-size: 19px; line-height: 1.6; color: var(--ink-2); max-width: 52ch; margin-bottom: 0; }
.hero-figure { position: relative; }
.hero-figure .fig { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.hero-figure .fig--wide { aspect-ratio: 3/2; }
.hero-figure .fig img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure .corner-note {
  position: absolute; left: -18px; bottom: 24px; max-width: 230px;
  background: var(--ink); color: var(--surface);
  padding: 18px 20px; border-radius: var(--radius); box-shadow: var(--shadow);
  font-size: 15px; line-height: 1.45;
}
.hero-figure .corner-note strong { display: block; font-size: 17px; margin-bottom: 2px; }
@media (max-width: 900px) {
  .hero { padding: 48px 0 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure .corner-note { left: 12px; bottom: 12px; }
}

/* Hero: night band (podcast page) */
.hero-night {
  color: var(--night-text); background: var(--night);
  border-radius: 0 0 28px 28px;
}
.hero-night h1, .hero-night .sub, .hero-night .lead { color: var(--night-text); }
.hero-night .hero h1 em { color: var(--gold); }
.hero-night .site-nav { border-bottom-color: var(--night-line); }

/* ---------- Feature grid (services preview) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 30px 28px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--lilac); }
.feature-card .fi { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px; }
.feature-card:nth-child(1) .fi { background: var(--accent-soft); color: var(--accent); }
.feature-card:nth-child(2) .fi { background: var(--lilac-soft); color: var(--lilac); }
.feature-card:nth-child(3) .fi { background: var(--sand-soft); color: var(--sand); }
.feature-card .fi svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 20px; margin-bottom: 0; }
.feature-card p { color: var(--muted); font-size: 15.5px; margin: 0; }
.feature-card .meta { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--gold); }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Split feature (offset) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.flip > *:first-child { order: 2; }
.split .media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split .media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split .copy h2 { font-size: clamp(28px, 3.4vw, 38px); font-weight: 400; letter-spacing: -0.02em; margin-top: 12px; }
.split .copy .lead { font-size: 17.5px; }
.split ul.checks { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.split ul.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink-2); }
.split ul.checks svg { width: 20px; height: 20px; color: var(--accent); flex: 0 0 auto; margin-top: 2px; }
@media (max-width: 900px) {
  .split, .split.flip { grid-template-columns: 1fr; gap: 36px; }
  .split.flip > *:first-child { order: 0; }
  .split .media img { aspect-ratio: 16/10; }
}

/* ---------- Quote / pull ---------- */
.quote { max-width: 840px; margin: 0 auto; text-align: center; }
.quote blockquote { font-size: clamp(24px, 3.2vw, 34px); font-weight: 300; line-height: 1.4; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 24px; }
.quote cite { font-style: normal; color: var(--muted); font-size: 15px; }
.quote cite strong { color: var(--ink); }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 6px; }
.step .num { font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; }
.step h3 { font-size: 18px; margin-top: 8px; }
.step p { color: var(--muted); font-size: 15px; margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Bento (blog preview / connect) ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.bento-card { border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line); position: relative; }
.bento-card .bc-media { overflow: hidden; }
.bento-card .bc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.bento-card:hover .bc-media img { transform: scale(1.04); }
.bento-card .bc-body { padding: 26px 28px; }
.bento-card .bc-tag { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.bento-card h3 { font-size: 22px; margin: 8px 0 8px; }
.bento-card p { color: var(--muted); font-size: 15.5px; margin: 0; }
.bento-card.bc-dark { background: var(--night); border-color: var(--night-2); color: var(--night-text); }
.bento-card.bc-dark h3 { color: var(--night-text); }
.bento-card.bc-dark p { color: var(--night-muted); }
.bento-card.bc-dark .bc-tag { color: var(--gold); }
.bento-card.bc-dark .link { color: var(--gold); }
.bento-card.bc-tint { background: var(--accent-soft); border-color: transparent; }

/* bento spans */
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card { grid-column: span 1 !important; }
  .bento-card .bc-media img { aspect-ratio: 16/10; }
}
@media (min-width: 901px) {
  .bento-card.media-card .bc-media { aspect-ratio: 16/9; }
}

/* ---------- Podcast episode list ---------- */
.episodes { display: grid; gap: 18px; }
.episode {
  display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.episode:hover { border-color: var(--lilac); box-shadow: var(--shadow); }
.ep-display { width: 76px; height: 76px; border-radius: 14px; overflow: hidden; background: var(--lilac-soft); display: grid; place-items: center; }
.ep-display svg { width: 30px; height: 30px; color: var(--lilac); }
.ep-display img { width: 100%; height: 100%; object-fit: cover; }
.ep-info .num { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; color: var(--gold); text-transform: uppercase; }
.ep-info h3 { font-size: 19px; margin: 4px 0 4px; }
.ep-info p { color: var(--muted); font-size: 15px; margin: 0; max-width: 70ch; }
.ep-duration { font-size: 14px; color: var(--muted); white-space: nowrap; }
@media (max-width: 700px) {
  .episode { grid-template-columns: 1fr; }
  .ep-display { width: 100%; height: auto; aspect-ratio: 16/9; border-radius: 12px; }
  .ep-duration { display: none; }
}

/* On night background, episode cards invert */
.on-night { background: var(--night); }
.on-night .section-head h2 { color: var(--night-text); }
.on-night .section-head p { color: var(--night-muted); }
.on-night .episode { background: var(--night-2); border-color: var(--night-line); }
.on-night .episode .ep-info h3 { color: var(--night-text); }
.on-night .episode .ep-info p { color: var(--night-muted); }
.on-night .episode .ep-duration { color: var(--night-muted); }
.on-night .eyebrow { color: var(--gold); }
.on-night .eyebrow::before { background: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--surface); border-radius: 24px; padding: 64px 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { color: var(--surface); font-size: clamp(28px, 3.4vw, 38px); font-weight: 500; letter-spacing: -0.02em; margin: 0; }
.cta-band p { color: var(--surface); opacity: 0.78; margin: 10px 0 0; max-width: 46ch; font-size: 17px; }
.btn-onaccent { background: var(--surface); color: var(--ink); }
.btn-onaccent:hover { background: #fff; color: var(--ink); }
@media (max-width: 800px) {
  .cta-band { flex-direction: column; align-items: flex-start; padding: 44px 32px; }
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 40px; background: var(--surface-2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 48px; }
.footer-grid h4 { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a { color: var(--ink-2); font-size: 15.5px; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand p { color: var(--muted); font-size: 15px; max-width: 32ch; margin-top: 14px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); transition: 0.2s var(--ease); }
.footer-bottom .socials a:hover { background: var(--ink); border-color: var(--ink); color: var(--surface); }
.footer-bottom .socials svg { width: 17px; height: 17px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-grid .footer-brand { grid-column: span 2; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-grid .footer-brand { grid-column: span 1; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 88px 0 48px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 300; letter-spacing: -0.03em; line-height: 1.08; max-width: 20ch; margin-top: 16px; }
.page-hero .lead { margin-top: 8px; }

/* ---------- Services list page ---------- */
.service-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: start;
  padding: 40px 0; border-top: 1px solid var(--line);
}
.service-row:last-of-type { border-bottom: 1px solid var(--line); }
.service-row .fi { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; }
.service-row:nth-child(1) .fi { background: var(--accent-soft); color: var(--accent); }
.service-row:nth-child(2) .fi { background: var(--lilac-soft); color: var(--lilac); }
.service-row:nth-child(3) .fi { background: var(--sand-soft); color: var(--sand); }
.service-row:nth-child(4) .fi { background: var(--amber-soft); color: var(--gold); }
.service-row:nth-child(5) .fi { background: var(--accent-soft); color: var(--accent); }
.service-row .fi svg { width: 27px; height: 27px; }
.service-row h2 { font-size: 24px; font-weight: 500; margin-bottom: 8px; }
.service-row p { color: var(--muted); font-size: 16px; max-width: 60ch; margin: 0 0 12px; }
.service-row .rowextra { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14.5px; color: var(--ink-2); }
.service-row .rowextra span { display: inline-flex; align-items: center; gap: 7px; }
.service-row .rowextra svg { width: 17px; height: 17px; color: var(--gold); }
.service-row .price { text-align: right; }
.service-row .price .amt { font-size: 26px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.service-row .price .note { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
@media (max-width: 700px) {
  .service-row { grid-template-columns: 1fr; gap: 16px; }
  .service-row .price { text-align: left; }
}

/* ---------- Blog list ---------- */
.post-card { display: flex; flex-direction: column; height: 100%; }
.post-card .pc-media { aspect-ratio: 16/10; }
.post-row {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
  padding: 30px 0; border-top: 1px solid var(--line);
}
.post-row .pr-meta { color: var(--muted); font-size: 14px; display: flex; gap: 10px; align-items: center; }
.post-row h3 { font-size: 22px; margin-bottom: 6px; }
.post-row h3 a { color: var(--ink); }
.post-row h3 a:hover { color: var(--accent); }
.post-row p { color: var(--muted); font-size: 15.5px; margin: 0; max-width: 64ch; }
.post-row .arrow { color: var(--gold); }
@media (max-width: 640px) { .post-row { grid-template-columns: 1fr; } }

/* ---------- News form ---------- */
.newsletter { display: flex; gap: 12px; max-width: 460px; margin-top: 28px; }
.newsletter input {
  flex: 1; font-family: var(--font); font-size: 16px; padding: 13px 18px;
  border-radius: var(--radius-pill); border: 1px solid var(--line);
  background: var(--surface); color: var(--ink);
}
.newsletter input:focus { outline: 2px solid var(--lilac); outline-offset: 1px; border-color: transparent; }
.newsletter input::placeholder { color: var(--muted); }
.form-note { font-size: 13px; color: var(--muted); margin-top: 10px; max-width: 46ch; }

/* ---------- Connect / contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.social-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.social-list a { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); font-weight: 600; font-size: 17px; transition: 0.2s var(--ease); }
.social-list a:hover { border-color: var(--lilac); transform: translateX(3px); }
.social-list .si { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: 0 0 auto; }
.social-list li:nth-child(1) .si { background: var(--lilac-soft); color: var(--lilac); }
.social-list li:nth-child(2) .si { background: var(--accent-soft); color: var(--accent); }
.social-list li:nth-child(3) .si { background: var(--sand-soft); color: var(--sand); }
.social-list li:nth-child(4) .si { background: var(--amber-soft); color: var(--gold); }
.social-list .si svg { width: 22px; height: 22px; }
.social-list .subl { display: block; font-size: 14px; font-weight: 400; color: var(--muted); }

.contact-form { display: grid; gap: 18px; }
.contact-form label { font-size: 15px; font-weight: 600; display: grid; gap: 8px; color: var(--ink); }
.contact-form input, .contact-form textarea, .contact-form select {
  font-family: var(--font); font-size: 16px; padding: 13px 16px;
  border-radius: var(--radius-input); border: 1px solid var(--line);
  background: var(--surface); color: var(--ink); width: 100%;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 2px solid var(--lilac); outline-offset: 1px; border-color: transparent; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Audio player (podcast) ---------- */
.audio-player { background: var(--night); border-radius: var(--radius); padding: 30px 32px; display: grid; gap: 8px; color: var(--night-text); }
.audio-player .ap-title { font-size: 18px; font-weight: 600; }
.audio-player .ap-meta { font-size: 14px; color: var(--night-muted); }
.audio-player audio { width: 100%; margin-top: 14px; }

/* ---------- Divider ---------- */
.hr-light { border: 0; height: 1px; background: var(--line); margin: 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .bento-card:hover .bc-media img { transform: none; }
  .feature-card:hover { transform: none; }
}

/* ---------- Misc ---------- */
ul.tight, ol.tight { padding-left: 20px; }
.tagrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag { font-size: 13px; font-weight: 600; color: var(--ink-2); background: var(--surface-2); padding: 6px 12px; border-radius: var(--radius-pill); }
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.stat .num { font-size: 20px; font-weight: 600; color: var(--accent); letter-spacing: -0.01em; }
.stat .lbl { color: var(--muted); font-size: 15px; margin-top: 4px; }
.stat:nth-child(2) .num { color: var(--lilac); }
.stat:nth-child(3) .num { color: var(--gold); }
@media (max-width: 700px) { .stat-strip { grid-template-columns: 1fr; } }
