/* =====================================================================
   Consulting site — modern pass.
   Inter for UI, Fraunces for display headings and the pull-quote. One accent.
   No JS anywhere; details/summary handles the FAQ.
   ===================================================================== */
@font-face {
  font-family: "Inter";
  src: url("fonts/inter-normal-latin.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-normal-latin.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-italic-latin.woff2") format("woff2");
  font-weight: 100 900; font-style: italic; font-display: swap;
}

:root {
  --bg:        #fcfcfd;
  --ink:       #0e1726;
  --muted:     #55607a;
  --faint:     #8b94a9;
  --accent:    #0d8577;
  --accent-dk: #0a6a5f;
  --accent-soft: #e5f4f1;
  --dark:      #0b1220;
  --dark-2:    #101a2e;
  --line:      #e7e9ef;
  --card:      #ffffff;
  --shadow:    0 1px 2px rgba(14, 23, 38, .04), 0 8px 24px -12px rgba(14, 23, 38, .12);
  --radius:    16px;
  --max:       1080px;
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }

/* ---------------- mobile nav (combo pattern: CTA stays visible, links collapse) ---------------- */
.menu-btn {
  display: none; background: none; border: 1px solid var(--line); border-radius: 8px;
  padding: 7px 14px; font: 600 14px "Inter", sans-serif; color: var(--ink); cursor: pointer;
}
@media (max-width: 720px) {
  .menu-btn { display: block; }
  header nav { gap: 14px; }
  header nav a:not(.cta) { display: none; }
  header nav.open a:not(.cta) {
    display: block;
  }
  header nav.open {
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    display: grid; gap: 4px; padding: 12px 28px 18px;
  }
  header nav.open a { padding: 10px 0; font-size: 16px; }
  header nav.open a.cta { justify-self: start; margin-top: 6px; }
}

@media print {
  header, footer, .menu-btn, .mock, .hero-actions, .inline-cta, .cta-band, .skip { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .hero, section.dark { background: #fff !important; color: #000 !important; }
  .hero h1, section.dark h2, .card.case .big, .feature-body h3 { color: #000 !important; }
  section { padding: 12pt 0; break-inside: avoid; }
  .card, .svc { box-shadow: none; break-inside: avoid; }
}

/* scroll-reveal (classes added by site.js; no-JS users see everything) */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity .35s ease-out, transform .35s ease-out; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

a:focus-visible, .btn:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px;
}
::selection { background: rgba(13, 133, 119, .18); }

body {
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: "cv01", "ss03";  /* alternate glyphs — makes Inter read as custom type */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

h1, h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600; letter-spacing: -0.015em; line-height: 1.12;
}
h3 { font-weight: 650; letter-spacing: -0.02em; line-height: 1.2; }
section { scroll-margin-top: 76px; padding: clamp(56px, 9vw, 96px) 0; }

/* ---------------- header ---------------- */
header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(252, 252, 253, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
header.scrolled { border-bottom-color: var(--line); }
header .wrap { display: flex; align-items: center; gap: 28px; height: 64px; }
.wordmark {
  font-weight: 800; font-size: 17px; letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none; display: flex; align-items: center;
}
.wordmark span { color: var(--accent); margin: 0 1px; }
.logo-img { height: 38px; width: auto; display: block; }
footer .logo-img { height: 42px; margin-bottom: 12px; }
header nav { margin-left: auto; display: flex; gap: 26px; align-items: center; }
header nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; }
header nav a:hover { color: var(--ink); }
header nav a.cta {
  color: #fff; background: var(--ink); padding: 9px 18px; border-radius: 999px;
  font-weight: 600; transition: background .15s;
}
header nav a.cta:hover { background: var(--accent-dk); }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-block; text-decoration: none; font-size: 15px; font-weight: 600;
  color: #fff; background: var(--accent); padding: 13px 26px; border-radius: 999px;
  transition: transform .15s, background .15s, box-shadow .15s;
  box-shadow: 0 8px 20px -8px rgba(13, 133, 119, .5);
}
.btn:hover { background: var(--accent-dk); transform: translateY(-1px); }
.btn.outline {
  color: #dfe5f1; background: transparent; box-shadow: none;
  border: 1px solid rgba(223, 229, 241, .28);
}
.btn.outline:hover { border-color: rgba(223, 229, 241, .6); background: rgba(255,255,255,.05); }
.btn.soon {
  background: rgba(255,255,255,.1); color: #cbd5e6; box-shadow: none;
  border: 1px dashed rgba(203, 213, 230, .4); cursor: default; font-style: italic; font-weight: 500;
}
.btn.soon:hover { transform: none; }

/* ---------------- hero ---------------- */
.hero {
  background:
    radial-gradient(rgba(255,255,255,.05) 1px, transparent 1.5px),
    radial-gradient(900px 420px at 78% -10%, rgba(13, 133, 119, .22), transparent 65%),
    radial-gradient(700px 380px at 8% 110%, rgba(13, 133, 119, .1), transparent 60%),
    var(--dark);
  background-size: 26px 26px, auto, auto, auto;
  color: #f2f5fa;
  padding: 104px 0 0;
  overflow: hidden;
}
.eyebrow {
  color: #6fc7bc; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(36px, 5.4vw, 62px);
  max-width: 850px; margin-bottom: 24px; color: #fff;
}
.hero .lede { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,.72); max-width: 660px; }
.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-grid { display: grid; grid-template-columns: 1.05fr .9fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ---------------- dashboard mock ---------------- */
.mock {
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 20px 22px;
  box-shadow: 0 40px 80px -24px rgba(0,0,0,.55);
  transform: rotate(1.1deg);
  backdrop-filter: blur(4px);
}
@media (max-width: 900px) { .mock { transform: none; max-width: 480px; } }
.mock-bar { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; }
.mdot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.18); }
.mock-title { margin-left: 10px; font-size: 12.5px; font-weight: 600; color: #dfe5f1; }
.mock-fresh { margin-left: auto; font-size: 11px; color: #8b96ac; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-kpi { background: rgba(255,255,255,.05); border-radius: 10px; padding: 10px 12px; }
.mock-kpi small { display: block; font-size: 10.5px; color: #8b96ac; margin-bottom: 3px; }
.mock-kpi b { font-size: 17px; color: #fff; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.mock-kpi i { display: block; font-style: normal; font-size: 10.5px; color: #59d3a8; margin-top: 2px; }
.mock-chart { display: flex; gap: 6px; align-items: flex-end; height: 104px; margin: 18px 2px 16px; }
.mock-chart i { flex: 1; height: var(--h); background: rgba(111, 199, 188, .38); border-radius: 4px 4px 2px 2px; }
.mock-chart i.hot { background: linear-gradient(180deg, #2cc4ae, #0d8577); }
.mock-check {
  font-size: 12px; color: #59d3a8; border-top: 1px solid rgba(255,255,255,.09);
  padding-top: 13px;
}

.stats {
  margin-top: 72px; padding-top: 30px; padding-bottom: 34px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; gap: 20px; } }
.stat .n {
  font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: #fff;
  font-variant-numeric: tabular-nums;
}
.stat .l { color: rgba(255,255,255,.55); font-size: 13.5px; margin-top: 4px; max-width: 240px; }

/* ---------------- sections ---------------- */
section { padding: 92px 0; }
section.tint { background: #f5f6f9; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.dark { background: var(--dark); color: #f2f5fa; }
section.dark h2 { color: #fff; }

.kicker {
  color: var(--accent); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .13em; margin-bottom: 14px;
}
section.dark .kicker { color: #6fc7bc; }
h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 18px; max-width: 680px; }
h2 em { font-style: italic; color: var(--accent-dk); }
section.dark h2 em { color: #6fc7bc; }
.section-sub { color: var(--muted); max-width: 620px; margin-bottom: 36px; }

/* ---------------- quote ---------------- */
blockquote { max-width: 780px; margin: 8px 0 48px; }
blockquote p {
  font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 500;
  font-size: clamp(22px, 3vw, 30px); line-height: 1.4; color: var(--ink);
}
blockquote p::before { content: "\201C"; color: var(--accent); }
blockquote p::after { content: "\201D"; color: var(--accent); }
blockquote cite { display: block; margin-top: 16px; font-style: normal; color: var(--faint); font-size: 14px; }

/* ---------------- cards ---------------- */
.grid { display: grid; gap: 18px; }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(14,23,38,.04), 0 18px 36px -14px rgba(14,23,38,.18); }
.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }
.icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-dk);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.icon svg { width: 23px; height: 23px; }
.card .num {
  font-size: 13px; font-weight: 700; color: var(--accent);
  background: var(--accent-soft); display: inline-block;
  padding: 3px 10px; border-radius: 999px; margin-bottom: 16px;
}

section.dark .card { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.07); box-shadow: none; }
section.dark .card p { color: rgba(255,255,255,.68); }
.card.case .big {
  font-size: 30px; font-weight: 800; letter-spacing: -0.03em; color: #6fc7bc;
  margin-bottom: 14px; font-variant-numeric: tabular-nums;
}
.grid.two { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* featured case study */
.card.case.feature {
  display: grid; grid-template-columns: 240px 1fr; gap: 36px;
  padding: 40px 44px; margin-bottom: 18px;
  border: 1px solid rgba(111, 199, 188, .35);
  background: linear-gradient(135deg, rgba(13, 133, 119, .14), var(--dark-2) 60%);
}
@media (max-width: 760px) { .card.case.feature { grid-template-columns: 1fr; gap: 20px; } }
.card.case.feature:hover { transform: none; }
.feature-stat { align-self: center; }
.card.case.feature .big { font-size: 56px; margin-bottom: 2px; }
.big-label { color: #8b96ac; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.feature-body h3 { color: #fff; font-size: 21px; margin-bottom: 14px; }
.feature-body p { margin-bottom: 12px; }
.feature-body p:last-child { margin-bottom: 0; }
.feature-body strong { color: #dfe5f1; }
.feature-body em { color: #6fc7bc; font-style: normal; font-weight: 600; }

/* ---------------- diagram ---------------- */
.diagram {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr auto 1.4fr auto 1fr;
  gap: 18px; align-items: center;
}
.d-col { display: grid; gap: 8px; }
.d-box {
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 14px; font-size: 13.5px; font-weight: 500; color: var(--muted);
  text-align: center; box-shadow: var(--shadow);
}
.d-box.core {
  background: var(--dark); color: #fff; border: none;
  padding: 22px 24px; font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
  border-radius: 14px;
}
.d-box.core small {
  display: block; font-weight: 400; font-size: 12.5px; color: #8b96ac; margin-top: 6px;
  letter-spacing: 0;
}
.d-box.out { border-color: var(--accent); color: var(--accent-dk); background: var(--accent-soft); font-weight: 600; }
.d-arrow { color: var(--faint); font-size: 22px; text-align: center; }
.d-caption { margin-top: 18px; color: var(--faint); font-size: 14px; font-style: italic; text-align: center; }
@media (max-width: 760px) {
  .diagram { grid-template-columns: 1fr; }
  .d-arrow { transform: rotate(90deg); }
  .d-col { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); }
  .d-col:nth-child(3), .d-col:nth-child(5) { grid-template-columns: 1fr; }
}

/* ---------------- pricing note ---------------- */
.pricing-note {
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 12px; background: var(--card);
  padding: 24px 28px; margin-top: 22px;
}
.pricing-note h3 { font-size: 16px; margin-bottom: 12px; }
.pricing-note ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.pricing-note li { color: var(--muted); font-size: 15px; padding-left: 22px; position: relative; }
.pricing-note li::before {
  content: ""; position: absolute; left: 2px; top: 9px;
  width: 10px; height: 2px; border-radius: 1px; background: var(--accent);
}

/* ---------------- process timeline ---------------- */
.timeline { position: relative; max-width: 720px; margin-top: 12px; }
.timeline::before {
  content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--accent), var(--line));
}
.tl-item { display: flex; gap: 26px; padding-bottom: 34px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-marker {
  flex: 0 0 40px; height: 40px; border-radius: 50%;
  background: var(--paper, #fff); border: 2px solid var(--accent); color: var(--accent-dk);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; background: var(--bg); z-index: 1;
}
.tl-body h3 { font-size: 18px; margin-bottom: 6px; }
.tl-when {
  font-size: 12px; font-weight: 600; color: var(--accent-dk);
  background: var(--accent-soft); border-radius: 999px; padding: 3px 10px;
  margin-left: 8px; vertical-align: 2px; letter-spacing: 0;
}
.tl-body p { color: var(--muted); font-size: 15px; max-width: 620px; }
.solo-line {
  margin-top: 36px; padding: 18px 24px; max-width: 720px;
  background: var(--accent-soft); border-radius: 12px;
  color: var(--accent-dk); font-size: 15px;
}
.solo-line strong { color: var(--accent-dk); }

/* ---------------- inline CTA ---------------- */
.inline-cta { margin-top: 34px; text-align: right; }
.inline-cta a {
  color: var(--accent-dk); text-decoration: none; font-weight: 600; font-size: 15px;
  border-bottom: 1px solid transparent; transition: border-color .15s;
}
.inline-cta a:hover { border-bottom-color: var(--accent-dk); }
.inline-cta.dark-cta a { color: #6fc7bc; }
.inline-cta.dark-cta a:hover { border-bottom-color: #6fc7bc; }
.cta-sep { color: rgba(255,255,255,.25); margin: 0 14px; }

/* ---------------- services ---------------- */
.svc {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 30px; margin-bottom: 14px; box-shadow: var(--shadow);
}
.svc.flagship {
  border: 1.5px solid var(--accent);
  background: linear-gradient(135deg, var(--accent-soft), #fff 55%);
  position: relative; margin-bottom: 26px;
}
.pill {
  position: absolute; top: -12px; left: 26px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 4px 12px; border-radius: 999px;
}
.svc-body { width: 100%; }
.svc-label {
  font-size: 11px; font-weight: 700; color: var(--faint);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px;
}
.impact {
  margin-top: 14px; padding: 9px 14px; border-radius: 8px;
  background: var(--accent-soft); color: var(--accent-dk) !important;
  font-size: 13.5px !important; font-weight: 600; display: inline-block;
}
.svc { scroll-margin-top: 84px; }
.svc-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.svc-head h3 { font-size: 19px; }
.svc.flagship .svc-head h3 { font-size: 22px; }
.dur {
  color: var(--muted); font-size: 13px; font-weight: 600;
  background: #f0f1f5; border-radius: 999px; padding: 4px 12px; white-space: nowrap;
}
.svc.flagship .dur { background: #fff; color: var(--accent-dk); }
.svc p { color: var(--muted); font-size: 15px; max-width: 760px; }
.svc.fixes { border-style: dashed; box-shadow: none; background: transparent; }
.addon {
  font-size: 11px; font-weight: 700; color: var(--faint); text-transform: uppercase;
  letter-spacing: .08em; border: 1px solid var(--line); border-radius: 999px;
  padding: 2px 9px; vertical-align: 3px; margin-left: 8px;
}

/* ---------------- who I work with ---------------- */
.fit-col {
  border-radius: var(--radius); padding: 30px; border: 1px solid var(--line);
  background: var(--card); box-shadow: var(--shadow);
}
.fit-col.yes { border-top: 3px solid var(--accent); }
.fit-col h3 { font-size: 16px; margin-bottom: 18px; }
.fit-col ul { list-style: none; padding: 0; display: grid; gap: 12px; }
.fit-col li { padding-left: 30px; position: relative; color: var(--muted); font-size: 15px; }
.fit-col.yes li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700;
  background: var(--accent-soft); width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}

/* ---------------- stack ---------------- */
.tool-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.tool {
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 20px; font-size: 14.5px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow);
}
.build-notes { list-style: none; padding: 0; display: grid; gap: 12px; max-width: 780px; }
.build-notes li { padding-left: 30px; position: relative; color: var(--muted); font-size: 15px; }
.build-notes li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 12px; height: 12px; border-radius: 3px;
  background: var(--accent-soft); border: 2px solid var(--accent);
}

/* ---------------- FAQ ---------------- */
#faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 0; margin-bottom: 10px; overflow: hidden;
}
#faq summary {
  cursor: pointer; font-weight: 600; font-size: 15.5px;
  padding: 18px 22px; list-style: none; position: relative;
}
#faq summary::-webkit-details-marker { display: none; }
#faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: var(--faint); font-size: 20px; font-weight: 400; transition: transform .15s;
}
#faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--accent); }
#faq summary:hover { color: var(--accent-dk); }
#faq details p { color: var(--muted); font-size: 15px; padding: 0 22px 20px; max-width: 760px; }

/* ---------------- contact ---------------- */
#contact { padding-top: 40px; }
.cta-band {
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(13, 133, 119, .25), transparent 60%),
    var(--dark);
  color: #f2f5fa; border-radius: 24px;
  padding: 64px 56px;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #a9b4c9; max-width: 520px; margin-bottom: 28px; }

/* ---------------- work page ---------------- */
header nav a.active { color: var(--ink); font-weight: 600; }
.page-hero { padding: 84px 0 8px; }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 50px); margin-bottom: 18px; letter-spacing: -0.025em; }
.work-list { padding-top: 40px; }
.work-item {
  display: grid; grid-template-columns: 220px 1fr; gap: 40px;
  padding: 44px 0; border-top: 1px solid var(--line);
}
.work-item:first-child { border-top: none; }
@media (max-width: 760px) { .work-item { grid-template-columns: 1fr; gap: 16px; } }
.work-meta { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.tag {
  background: var(--accent-soft); color: var(--accent-dk); font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .09em;
  padding: 4px 12px; border-radius: 999px;
}
.work-stat {
  font-size: 40px; font-weight: 800; letter-spacing: -0.03em; color: var(--accent);
  font-variant-numeric: tabular-nums; margin-top: 8px;
}
.work-stat-label { color: var(--faint); font-size: 13px; max-width: 180px; }
.work-body h2 { font-size: 23px; margin-bottom: 14px; }
.work-body p { color: var(--muted); font-size: 15.5px; margin-bottom: 12px; max-width: 720px; }
.work-body strong { color: var(--ink); }
.work-cta { padding-top: 24px; }

/* ---------------- about page ---------------- */
.why { padding-top: 24px; padding-bottom: 40px; }
.creed { max-width: 720px; }
.creed p { color: var(--muted); font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
.creed p:first-child {
  font-family: "Fraunces", Georgia, serif; font-size: 21px; color: var(--ink);
  line-height: 1.6;
}
.bio { padding-top: 8px; }
.bio-grid { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
@media (max-width: 760px) { .bio-grid { grid-template-columns: 1fr; gap: 24px; } }
.bio-photo img { width: 100%; border-radius: var(--radius); display: block; }
.photo-stub {
  aspect-ratio: 4 / 5; border: 2px dashed var(--line); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--faint); font-size: 14px; font-style: italic; background: #f5f6f9;
}
.bio-body h2 { font-size: 28px; margin-bottom: 6px; }
.bio-body p { color: var(--muted); font-size: 15.5px; margin-bottom: 14px; max-width: 680px; }
.stub-note {
  color: #a05a12 !important; background: #fdf3e4; border: 1px dashed #eacb9a;
  border-radius: 8px; padding: 8px 14px; font-size: 13px !important;
  display: inline-block; font-style: italic;
}
.stub { color: var(--faint) !important; font-style: italic; }

/* ---------------- insights / article ---------------- */
.article-wrap { padding-top: 24px; }
.article { max-width: 720px; }
.article-meta {
  color: var(--faint); font-size: 13px; text-transform: uppercase;
  letter-spacing: .08em; font-weight: 600; margin-bottom: 14px;
}
.article h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 28px; max-width: none; }
.article h3 {
  font-family: "Fraunces", Georgia, serif; font-size: 22px;
  margin: 36px 0 14px; font-weight: 600;
}
.article p { color: var(--muted); font-size: 16.5px; line-height: 1.75; margin-bottom: 18px; }
.article strong { color: var(--ink); }
.article em { color: var(--ink); }
.article-sign { color: var(--ink) !important; font-weight: 600; margin-top: 30px; }
.more-soon {
  max-width: 720px; margin-top: 44px; padding: 20px 26px;
  border: 1px dashed var(--line); border-radius: 12px;
}
.more-soon p { color: var(--faint); font-size: 14.5px; }
.more-soon strong { color: var(--muted); }

/* ---------------- principal sign-off ---------------- */
.cta-sign {
  margin-top: 26px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6) !important; font-size: 14px !important;
}
.cta-sign b { color: #fff; font-weight: 600; }

/* ---------------- booking form ---------------- */
.book-band { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .book-band { grid-template-columns: 1fr; gap: 32px; } }
.book-pitch .cta-sign { margin-top: 30px; }
.book-form { display: grid; gap: 14px; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .bf-row { grid-template-columns: 1fr; } }
.bf-field label {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.65); margin-bottom: 6px;
}
.bf-opt { color: rgba(255,255,255,.35); font-weight: 400; margin-left: 4px; }
.book-form input, .book-form select {
  width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,.07); color: #fff;
  border: 1px solid rgba(255,255,255,.14); border-radius: 9px;
  padding: 11px 13px; font: 15px "Inter", sans-serif;
  color-scheme: dark;  /* native date picker renders dark */
  transition: border-color .15s, background .15s;
}
.book-form input:focus, .book-form select:focus {
  outline: none; border-color: var(--accent); background: rgba(255,255,255,.1);
}
.book-form select option { color: var(--ink); }
.bf-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.bf-slots { display: flex; flex-wrap: wrap; gap: 8px; min-height: 42px; }
.bf-slots-hint { color: rgba(255,255,255,.45); font-size: 13.5px; padding-top: 8px; }
.bf-slots-hint.err { color: #ff9d9d; }
.bf-slot {
  background: rgba(255,255,255,.07); color: #fff;
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px;
  padding: 8px 14px; font: 600 13.5px "Inter", sans-serif; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.bf-slot:hover { border-color: var(--accent); }
.bf-slot.sel { background: var(--accent); border-color: var(--accent); }
.bf-slot.taken {
  opacity: .3; cursor: not-allowed; text-decoration: line-through;
}
.bf-submit { justify-self: start; margin-top: 4px; border: none; cursor: pointer; font-family: "Inter", sans-serif; }
.bf-submit[disabled] { opacity: .6; cursor: wait; transform: none; }
.bf-note { font-size: 12.5px; color: rgba(255,255,255,.45); }
.bf-msg { font-size: 14px; font-weight: 600; min-height: 20px; }
.bf-msg.ok { color: #59d3a8; }
.bf-msg.err { color: #ff9d9d; }
.book-form.sent .bf-field, .book-form.sent .bf-row, .book-form.sent .bf-submit, .book-form.sent .bf-note { display: none; }
.book-form.sent .bf-msg { font-size: 16px; }

/* ---------------- footer ---------------- */
footer { border-top: 1px solid var(--line); padding: 48px 0 56px; background: #f5f6f9; }
.foot-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }
.foot-brand .wordmark { font-size: 16px; margin-bottom: 10px; }
.foot-brand p { color: var(--muted); font-size: 14px; max-width: 300px; margin-bottom: 14px; }
.copyright { color: var(--faint); font-size: 12.5px; }
.foot-nav { display: grid; gap: 10px; justify-items: start; }
.foot-nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
.foot-nav a:hover { color: var(--accent-dk); }
footer .tech { color: var(--faint); font-size: 13px; max-width: 320px; margin: 0; }
