/* ============================================================
   Scotch Creek Consulting — scotchcreekconsulting.com
   Single production stylesheet. Tokens + components + responsive.
   ============================================================ */

/* ---------- Self-hosted variable fonts ---------- */
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-Variable.ttf") format("truetype-variations"),
       url("../fonts/HankenGrotesk-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/HankenGrotesk-Italic-Variable.ttf") format("truetype-variations"),
       url("../fonts/HankenGrotesk-Italic-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/SourceSerif4-Variable.ttf") format("truetype-variations"),
       url("../fonts/SourceSerif4-Variable.ttf") format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/SourceSerif4-Italic-Variable.ttf") format("truetype-variations"),
       url("../fonts/SourceSerif4-Italic-Variable.ttf") format("truetype");
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/JetBrainsMono-Variable.ttf") format("truetype-variations"),
       url("../fonts/JetBrainsMono-Variable.ttf") format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   Design tokens
   ============================================================ */
:root {
  --scc-slate:        #2C3744;
  --scc-slate-deep:   #1F2530;
  --scc-slate-soft:   #3F4B5C;
  --scc-slate-haze:   #5B6675;

  --scc-rust:         #B85C38;
  --scc-rust-deep:    #984828;
  --scc-rust-soft:    #E8B8A1;

  --scc-amber:        #D89A3D;
  --scc-ochre:        #A8721C;

  --scc-cream:        #F5F1EA;
  --scc-cream-deep:   #ECE5D6;
  --scc-paper:        #FBF8F2;
  --scc-bone:         #E3DDD0;
  --scc-stone:        #B5AC9A;
  --scc-charcoal:     #1F2530;
  --scc-graphite:     #4A5260;
  --scc-fog:          #7A7E85;

  --scc-pine:         #3F6B4E;
  --scc-clay:         #B04B36;

  --bg:              var(--scc-cream);
  --bg-deep:         var(--scc-cream-deep);
  --surface:         var(--scc-paper);
  --surface-dark:    var(--scc-slate);
  --fg:              var(--scc-charcoal);
  --fg-1:            var(--scc-slate-deep);
  --fg-2:            var(--scc-graphite);
  --fg-3:            var(--scc-fog);
  --fg-on-dark:      var(--scc-cream);
  --fg-on-dark-2:    #B9BFC8;
  --accent:          var(--scc-rust);
  --accent-fg:       var(--scc-cream);
  --border:          var(--scc-bone);
  --border-strong:   #D3CCBA;
  --link:            var(--scc-slate);
  --link-hover:      var(--scc-rust);

  --font-display:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:       "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --font-ui:         "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:       "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(31,37,48,0.05);
  --shadow-sm: 0 1px 3px rgba(31,37,48,0.06), 0 1px 2px rgba(31,37,48,0.04);
  --shadow-md: 0 4px 12px rgba(31,37,48,0.07), 0 2px 4px rgba(31,37,48,0.04);
  --shadow-lg: 0 12px 32px rgba(31,37,48,0.10), 0 4px 8px rgba(31,37,48,0.05);

  --ease-standard: cubic-bezier(0.2, 0, 0.2, 1);
  --dur-fast:    140ms;
  --dur-base:    220ms;
  --dur-slow:    420ms;

  --measure: 64ch;
  --max-w: 1200px;
}

/* ============================================================
   Reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--fg-1);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0 0 1em;
  max-width: var(--measure);
  text-wrap: pretty;
}

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--scc-stone);
  transition: color var(--dur-fast) var(--ease-standard),
              text-decoration-color var(--dur-fast) var(--ease-standard);
}
a:hover { color: var(--link-hover); text-decoration-color: currentColor; }

:focus-visible {
  outline: 2px solid var(--scc-rust);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection { background: var(--scc-rust-soft); color: var(--scc-slate-deep); }

/* Skip link for keyboard users / screen readers */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--scc-slate-deep); color: var(--scc-cream);
  padding: 10px 16px; border-radius: var(--r-sm);
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; text-decoration: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 720px) { .container { padding: 0 32px; } }

.section { padding: 72px 0; }
.section.tight { padding: 48px 0; }
.section.deep { background: var(--bg-deep); }
.section.slate { background: var(--scc-slate); color: var(--scc-cream); }
.section.slate h1, .section.slate h2, .section.slate h3, .section.slate h4 { color: var(--scc-cream); }
@media (min-width: 900px) {
  .section { padding: 96px 0; }
  .section.tight { padding: 64px 0; }
}

.eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--scc-rust);
  margin: 0 0 14px;
}
.section.slate .eyebrow { color: var(--scc-amber); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  padding: 12px 22px; border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; line-height: 1; white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard);
}
.btn > svg { flex: 0 0 auto; }
.btn-primary {
  background: var(--scc-rust); color: var(--scc-cream);
  font-weight: 600; letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--scc-rust-deep); color: var(--scc-cream); text-decoration: none; }
.btn-primary:active { transform: translateY(0.5px); background: var(--scc-rust-deep); }
.btn-ghost { background: transparent; color: var(--scc-slate); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--scc-cream-deep); border-color: var(--scc-slate); color: var(--scc-slate-deep); text-decoration: none; }
.btn-on-dark { background: var(--scc-cream); color: var(--scc-slate-deep); }
.btn-on-dark:hover { background: var(--scc-paper); color: var(--scc-slate-deep); text-decoration: none; }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-nav-cta {
  padding: 13px 22px;
  font-size: 14px;
  margin-left: 6px;
}
@media (min-width: 1040px) {
  .btn-nav-cta { padding: 14px 26px; }
}

.btn-link {
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  color: var(--scc-slate); text-decoration: underline;
  text-underline-offset: 5px; text-decoration-thickness: 1px;
  text-decoration-color: var(--scc-stone);
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 0; cursor: pointer;
  transition: color var(--dur-fast) var(--ease-standard),
              text-decoration-color var(--dur-fast) var(--ease-standard);
}
.btn-link:hover { color: var(--scc-rust); text-decoration-color: var(--scc-rust); }
.btn-link svg { transition: transform var(--dur-fast) var(--ease-standard); }
.btn-link:hover svg { transform: translateX(2px); }

/* ============================================================
   Top nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-standard);
}
.nav.is-scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand img { width: 42px; height: 42px; }
.nav-brand .wordmark {
  font-family: var(--font-display); font-weight: 600;
  font-size: 17px; color: var(--scc-slate-deep);
  letter-spacing: -0.014em; line-height: 1;
}
@media (max-width: 360px) { .nav-brand .wordmark { font-size: 15px; } }

.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a:not(.btn) {
  font-family: var(--font-ui); font-size: 14px; font-weight: 500;
  color: var(--scc-graphite); text-decoration: none; padding: 6px 0;
  position: relative; white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-standard);
}
.nav-links a:not(.btn):hover { color: var(--scc-slate-deep); }
.nav-links a:not(.btn)[aria-current="page"] { color: var(--scc-slate-deep); font-weight: 600; }
.nav-links a:not(.btn)[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -10px;
  height: 2px; background: var(--scc-rust);
}
@media (max-width: 980px) {
  .nav-links { display: none; }
}

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  color: var(--scc-slate-deep);
}
.nav-toggle:hover { background: var(--scc-cream-deep); }
.nav-toggle svg { width: 22px; height: 22px; }
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
}

/* Mobile menu sheet */
.nav-sheet {
  display: none;
  position: fixed; inset: 72px 0 0;
  background: var(--scc-cream);
  z-index: 60;
  padding: 24px 20px 40px;
  overflow-y: auto;
}
.nav-sheet[data-open="true"] { display: block; }
.nav-sheet ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.nav-sheet a:not(.btn) {
  display: block;
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--scc-slate-deep);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.nav-sheet a:not(.btn)[aria-current="page"] { color: var(--scc-rust); }
.nav-sheet .sheet-cta { margin-top: 24px; }
.nav-sheet .sheet-cta .btn { width: 100%; justify-content: center; }

body.nav-open { overflow: hidden; }

/* ============================================================
   Hero — home
   ============================================================ */
.hero { position: relative; padding: 64px 0 80px; overflow: hidden; }
@media (min-width: 900px) { .hero { padding: 88px 0 104px; } }
.hero .h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(36px, 6.5vw, 68px);
  letter-spacing: -0.035em; line-height: 1.0;
  color: var(--scc-slate-deep); max-width: 18ch;
  margin: 0;
}
.hero .sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55; color: var(--scc-graphite);
  max-width: 56ch; margin: 24px 0 32px;
}
.hero .cta-row {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.hero .watermark {
  position: absolute; right: -180px; top: 60px;
  width: min(640px, 80vw); height: auto; opacity: 0.07;
  pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
@media (max-width: 700px) {
  .hero .watermark { right: -40%; top: auto; bottom: -12%; opacity: 0.05; }
}

/* ============================================================
   Past-client proof row
   ============================================================ */
.proof {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof .label {
  text-align: center;
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--scc-fog);
  margin: 0 0 28px;
}
.proof-row {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; align-items: center;
  list-style: none; padding: 0; margin: 0;
}
@media (min-width: 560px) { .proof-row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .proof-row { grid-template-columns: repeat(6, 1fr); gap: 24px; } }
.proof-row li {
  font-family: var(--font-display); font-weight: 600;
  font-size: 17px; letter-spacing: -0.02em;
  color: var(--scc-stone); text-align: center;
  opacity: 0.9;
}

/* ============================================================
   Selected outcomes — homepage proof tier
   ============================================================ */
.proof-tier { padding: 56px 0; }
@media (min-width: 900px) { .proof-tier { padding: 72px 0; } }

.outcomes {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 760px) {
  .outcomes { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

.outcome {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.outcome-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.0;
  color: var(--scc-slate-deep);
  margin: 0 0 14px;
  text-wrap: balance;
}
.outcome-cap {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.55;
  color: var(--scc-charcoal);
  margin: 0; max-width: 36ch;
}
.outcome-cap strong {
  color: var(--scc-slate-deep);
  font-weight: 600;
}

.outcome-floor {
  margin: 40px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--scc-graphite);
  opacity: 0.75;
  max-width: none;
  text-wrap: pretty;
}
.outcome-floor span {
  color: var(--scc-slate-deep);
  font-weight: 500;
}

/* ============================================================
   Engagement teaser cards
   ============================================================ */
.eng-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600; letter-spacing: -0.025em;
  color: var(--scc-slate-deep);
  margin: 0 0 32px; max-width: 22ch; line-height: 1.08;
}
.eng-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 760px) { .eng-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .eng-grid { grid-template-columns: repeat(3, 1fr); } }

.eng-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 26px 24px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard);
}
.eng-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit; text-decoration: none;
}
.eng-card .num {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--scc-rust);
  margin: 0 0 14px;
}
.eng-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  letter-spacing: -0.018em; color: var(--scc-slate-deep);
  margin: 0 0 8px;
}
.eng-card p {
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: var(--scc-graphite); margin: 0; flex: 1;
}
.eng-card .meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 12px; color: var(--scc-fog);
}
.eng-card .meta strong { color: var(--scc-slate); font-weight: 500; }

/* ============================================================
   Engagements page — full detail rows
   ============================================================ */
.eng-detail {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  padding: 36px 0; border-bottom: 1px solid var(--border);
}
.eng-detail:last-of-type { border-bottom: 0; }
@media (min-width: 900px) {
  .eng-detail { grid-template-columns: 1fr 2fr; gap: 48px; }
}
.eng-detail .label-col .num {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--scc-rust); margin: 0 0 10px;
}
.eng-detail .label-col h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 32px); font-weight: 600;
  letter-spacing: -0.022em; color: var(--scc-slate-deep);
  margin: 0 0 16px; line-height: 1.08;
}
.pricing-row {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 16px;
  font-family: var(--font-ui); font-size: 13px;
  margin: 18px 0 0; padding-top: 18px;
  border-top: 1px solid var(--border);
}
.pricing-row dt {
  color: var(--scc-fog); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600;
  align-self: center;
}
.pricing-row dd {
  color: var(--scc-slate-deep); font-family: var(--font-mono); font-size: 15px;
  margin: 0;
}
.eng-detail .body-col p {
  font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--scc-charcoal); max-width: 56ch;
}
.eng-detail .body-col h3 {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--scc-graphite);
  margin: 28px 0 12px;
}
.deliverables {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.deliverables li {
  font-family: var(--font-body); font-size: 15px; color: var(--scc-charcoal);
  padding-left: 22px; position: relative;
  line-height: 1.5;
}
.deliverables li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 12px; height: 1px; background: var(--scc-rust);
}

/* ============================================================
   Approach strip — slate slab on home
   ============================================================ */
.approach-strip { background: var(--scc-slate); color: var(--scc-cream); }
.approach-strip .lead {
  font-family: var(--font-body); font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.4; color: var(--scc-cream); max-width: 32ch;
  letter-spacing: -0.01em; margin: 0;
}
.approach-strip .lead em {
  font-style: italic; color: var(--scc-amber);
}
.principles {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  margin-top: 48px; padding: 0; list-style: none;
}
@media (min-width: 760px) { .principles { grid-template-columns: repeat(3, 1fr); } }
.principle .n {
  font-family: var(--font-mono); font-size: 12px; color: var(--scc-amber);
  letter-spacing: 0.08em; margin: 0 0 12px;
}
.principle h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  letter-spacing: -0.01em; color: var(--scc-cream); margin: 0 0 6px;
}
.principle p {
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: #B9BFC8; margin: 0; max-width: 32ch;
}

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta { padding: 72px 0; text-align: center; }
@media (min-width: 900px) { .final-cta { padding: 96px 0; } }
.final-cta .eyebrow { display: block; text-align: center; }
.final-cta h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 600; letter-spacing: -0.028em; color: var(--scc-slate-deep);
  margin: 0 auto 18px; max-width: 22ch; line-height: 1.05;
}
.final-cta p {
  font-family: var(--font-body); font-size: 18px; color: var(--scc-graphite);
  margin: 0 auto 32px; max-width: 50ch; line-height: 1.55;
}

/* ============================================================
   Page hero (Engagements, Approach, About, etc.)
   ============================================================ */
.page-hero { padding: 56px 0 40px; }
@media (min-width: 900px) { .page-hero { padding: 72px 0 48px; } }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 600; letter-spacing: -0.03em; color: var(--scc-slate-deep);
  line-height: 1.05; margin: 0; max-width: 18ch;
}
.page-hero p {
  font-family: var(--font-body); font-size: 18px; line-height: 1.6;
  color: var(--scc-graphite); margin: 18px 0 0; max-width: 56ch;
}

/* ============================================================
   About page
   ============================================================ */
.about-hero { padding: 56px 0 40px; }
@media (min-width: 900px) { .about-hero { padding: 80px 0 56px; } }
.about-hero .grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start;
}
@media (min-width: 900px) {
  .about-hero .grid { grid-template-columns: 5fr 4fr; gap: 64px; }
}
.about-hero h1 {
  font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 600; letter-spacing: -0.032em; color: var(--scc-slate-deep);
  margin: 0; line-height: 1.04; max-width: 14ch;
}
.about-hero .lede {
  font-family: var(--font-body); font-size: 19px; line-height: 1.6;
  color: var(--scc-charcoal); margin: 24px 0 0; max-width: 48ch;
}
.about-hero .actions {
  margin-top: 32px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
}
.headshot {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--scc-cream-deep);
}

.acts {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  padding-top: 32px; border-top: 1px solid var(--border);
  list-style: none; margin: 0; padding-inline: 0;
}
@media (min-width: 720px) { .acts { grid-template-columns: repeat(2, 1fr); gap: 36px 40px; } }
.acts .act:nth-child(2) {
  /* The Interlude — distinguishable from numbered acts */
}
.act .n {
  font-family: var(--font-mono); font-size: 11px; color: var(--scc-rust);
  letter-spacing: 0.1em; margin: 0 0 12px;
}
.act .n .years { color: var(--scc-fog); }
.act h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  letter-spacing: -0.018em; color: var(--scc-slate-deep); margin: 0 0 12px;
}
.act p {
  font-family: var(--font-body); font-size: 15px; line-height: 1.65;
  color: var(--scc-charcoal); margin: 0 0 12px;
}

/* ============================================================
   Approach page — prose
   ============================================================ */
.prose { max-width: 64ch; }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--scc-slate-deep);
  margin: 56px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose p {
  font-family: var(--font-body); font-size: 17px; line-height: 1.7;
  color: var(--scc-charcoal); margin: 0 0 1.1em;
}
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 1.2em; }
.prose li {
  font-family: var(--font-body); font-size: 17px; line-height: 1.65;
  color: var(--scc-charcoal); margin-bottom: 0.5em;
}
.prose blockquote {
  margin: 24px 0;
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--scc-rust);
  font-family: var(--font-body); font-style: italic;
  font-size: 19px; line-height: 1.55; color: var(--scc-slate-deep);
  max-width: 56ch;
}

/* ============================================================
   Case studies
   ============================================================ */
.case-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 24px;
}
@media (min-width: 900px) { .case-list { gap: 28px; } }

.case-card {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none; color: inherit;
  transition: box-shadow var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard);
}
.case-card:hover {
  box-shadow: var(--shadow-md); border-color: var(--border-strong);
  color: inherit; text-decoration: none;
}
@media (min-width: 800px) {
  .case-card { grid-template-columns: 1fr 1.6fr; gap: 40px; padding: 40px; }
}
.case-card .tag {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--scc-rust); margin: 0 0 12px;
}
.case-card h2 {
  font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600; letter-spacing: -0.02em; color: var(--scc-slate-deep);
  margin: 0 0 12px; line-height: 1.1;
}
.case-card .meta-row {
  font-family: var(--font-mono); font-size: 12px; color: var(--scc-fog);
  letter-spacing: 0.04em;
}
.case-card p {
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  color: var(--scc-charcoal); margin: 0 0 16px;
}
.case-numbers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 16px;
  list-style: none; padding: 0;
  border-top: 1px solid var(--border); padding-top: 20px;
}
.case-numbers .k {
  display: block;
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--scc-fog); margin-bottom: 6px;
}
.case-numbers .v {
  font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--scc-slate-deep);
}

.case-closer {
  margin: 32px 0 0; padding: 24px 0 0;
  border-top: 1px solid var(--border);
  font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--scc-graphite); max-width: 64ch;
  font-style: italic;
}

/* ============================================================
   Insights list
   ============================================================ */
.insight-list { list-style: none; margin: 0; padding: 0; }
.insight-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 720px) {
  .insight-row { grid-template-columns: 140px 1fr; gap: 32px; padding: 28px 0; align-items: baseline; }
}
.insight-row .date {
  font-family: var(--font-mono); font-size: 12px; color: var(--scc-fog);
  letter-spacing: 0.04em;
}
.insight-row h2 {
  font-family: var(--font-display); font-size: clamp(20px, 2vw, 24px);
  font-weight: 600; letter-spacing: -0.018em; color: var(--scc-slate-deep);
  margin: 0 0 6px;
}
.insight-row p {
  font-family: var(--font-body); font-size: 15px; color: var(--scc-graphite);
  line-height: 1.55; margin: 0; max-width: 60ch;
}
.insight-row a { text-decoration: none; color: inherit; display: block; }
.insight-row a:hover h2 { color: var(--scc-rust); }

.insights-empty {
  margin-top: 24px; padding: 28px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  font-family: var(--font-body); font-size: 16px; color: var(--scc-graphite);
  max-width: 56ch;
}

.insights-parked { max-width: 62ch; padding: 8px 0; }
.insights-parked .date-stamp {
  font-family: var(--font-mono); font-size: 12px; color: var(--scc-rust);
  letter-spacing: 0.08em; margin: 0 0 14px;
}
.insights-parked h2 {
  font-family: var(--font-display); font-size: clamp(28px, 3vw, 36px);
  font-weight: 600; letter-spacing: -0.022em; color: var(--scc-slate-deep);
  margin: 0 0 20px; line-height: 1.1;
}
.insights-parked p {
  font-family: var(--font-body); font-size: 17px; line-height: 1.65;
  color: var(--scc-charcoal); margin: 0 0 1em; max-width: 56ch;
}
.insights-parked p:last-child { color: var(--scc-graphite); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-heading {
  font-family: var(--font-display); font-size: clamp(28px, 3vw, 36px);
  font-weight: 600; letter-spacing: -0.022em; color: var(--scc-slate-deep);
  margin: 0 0 28px; line-height: 1.15; max-width: 28ch;
}
.faq-list {
  margin: 0; padding: 0;
  max-width: 72ch;
  border-top: 1px solid var(--scc-stone);
}
.faq-item { border-bottom: 1px solid var(--scc-stone); padding: 22px 0; }
.faq-item dt {
  font-family: var(--font-display); font-weight: 600;
  font-size: 19px; line-height: 1.35; color: var(--scc-slate-deep);
  letter-spacing: -0.012em; margin: 0 0 10px;
}
.faq-item dd {
  margin: 0;
  font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--scc-charcoal); max-width: 64ch;
}
.faq-item dd a { color: var(--scc-rust); }

/* ============================================================
   404 page
   ============================================================ */
.four-oh-four-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 0;
  max-width: 68ch;
  border-top: 1px solid var(--scc-stone);
}
.four-oh-four-list li { border-bottom: 1px solid var(--scc-stone); }
.four-oh-four-list a {
  display: block; padding: 18px 0;
  font-family: var(--font-body); font-size: 17px; line-height: 1.5;
  color: var(--scc-charcoal); text-decoration: none;
  transition: color 0.15s ease, padding-left 0.15s ease;
}
.four-oh-four-list a:hover {
  color: var(--scc-rust); padding-left: 6px; text-decoration: none;
}
.four-oh-four-list a strong {
  color: var(--scc-slate-deep); font-weight: 600;
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 56px; }
}
.contact-methods { list-style: none; padding: 0; margin: 0; }
.contact-methods li {
  padding: 20px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-methods li:last-child { border-bottom: 0; }
.contact-methods .icon {
  width: 36px; height: 36px;
  flex: 0 0 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--scc-cream-deep); border-radius: var(--r-sm);
  color: var(--scc-slate-deep);
}
.contact-methods .k {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--scc-fog); margin: 0 0 4px;
}
.contact-methods .v {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  letter-spacing: -0.014em; color: var(--scc-slate-deep);
}
.contact-methods a { color: inherit; text-decoration: none; }
.contact-methods a:hover { color: var(--scc-rust); }

.calendly-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.calendly-placeholder .eyebrow { display: block; }
.calendly-placeholder h2 {
  font-family: var(--font-display); font-size: 24px;
  font-weight: 600; color: var(--scc-slate-deep); margin: 8px 0 12px;
}
.calendly-placeholder p {
  font-family: var(--font-body); font-size: 15px;
  color: var(--scc-graphite); margin: 0 auto 24px; max-width: 38ch;
}

.booking {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-sm);
}
.booking .eyebrow { display: block; }
.booking h2 {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 600; color: var(--scc-slate-deep); margin: 8px 0 10px;
  letter-spacing: -0.015em;
}
.booking > p {
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: var(--scc-graphite); margin: 0 0 20px; max-width: 44ch;
}
.booking-embed {
  position: relative;
  border-top: 1px solid var(--border);
  margin: 0 -28px -24px;
  border-radius: 0 0 var(--r-md) var(--r-md);
  overflow: hidden;
  background: var(--scc-paper);
}
.booking-embed iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
}
.booking-fallback {
  margin: 0 0 16px;
  padding: 12px 14px;
  background: var(--scc-cream-deep);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--scc-graphite);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.booking-fallback a {
  color: var(--scc-slate);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--scc-stone);
  text-decoration-thickness: 1px;
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.booking-fallback a:hover {
  color: var(--scc-rust);
  text-decoration-color: var(--scc-rust);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  background: var(--scc-cream);
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.footer-brand { grid-column: 1 / -1; }
@media (min-width: 760px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }
}
.footer-brand .nav-brand { margin-bottom: 14px; }
.footer-brand p {
  font-family: var(--font-body); font-size: 14px; line-height: 1.55;
  color: var(--scc-graphite); max-width: 40ch; margin: 0;
}
.footer h2 {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--scc-fog);
  margin: 0 0 16px;
}
.footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer ul a {
  font-family: var(--font-ui); font-size: 14px;
  color: var(--scc-graphite); text-decoration: none;
}
.footer ul a:hover { color: var(--scc-rust); }
.footer ul a.with-icon { display: inline-flex; align-items: center; gap: 8px; }
.footer ul a.with-icon svg { color: var(--scc-fog); }

.colophon {
  display: flex; flex-direction: column; gap: 8px;
  justify-content: space-between; align-items: flex-start;
  border-top: 1px solid var(--border); margin-top: 48px; padding-top: 24px;
  font-family: var(--font-ui); font-size: 12px; color: var(--scc-fog);
}
@media (min-width: 700px) { .colophon { flex-direction: row; align-items: center; } }

/* Print: lay it flat */
@media print {
  .nav, .footer, .nav-sheet, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .hero .watermark { display: none; }
}
