/* ============================================================
   Summer Park — portfolio
   Design tokens. Swap --font-display / --font-body here to
   match the faces used in Framer; nothing else needs editing.
   ============================================================ */

:root {
  /* type */
  --font-display: "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* light palette — warm paper, cool-biased ink */
  --paper:      #FAF8F4;
  --paper-2:    #F2EFE9;
  --ink:        #16181C;
  --ink-2:      #4B4F55;
  --muted:      #6E7278;
  --faint:      #9A9EA4;
  --rule:       #DDD9D1;
  --rule-soft:  #E9E5DE;
  --accent:     #F0BE00;
  --link:       #16181C;

  /* metrics */
  --nav-h: 4.25rem;
  --container: 68rem;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
}

:root[data-theme="dark"] {
  --paper:      #17181A;
  --paper-2:    #1F2124;
  --ink:        #ECEDEF;
  --ink-2:      #B9BDC3;
  --muted:      #969AA1;
  --faint:      #70747A;
  --rule:       #34373C;
  --rule-soft:  #2A2D31;
  --link:       #ECEDEF;
}

:root[data-theme="light"] {
  --paper:      #FAF8F4;
  --paper-2:    #F2EFE9;
  --ink:        #16181C;
  --ink-2:      #4B4F55;
  --muted:      #6E7278;
  --faint:      #9A9EA4;
  --rule:       #DDD9D1;
  --rule-soft:  #E9E5DE;
  --link:       #16181C;
}

/* ---------- reset ---------- */

*, *::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: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;           /* belt-and-braces: page never scrolls sideways */
}

h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--link); text-decoration: none; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- layout ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(4rem, 10vw, 8rem); }
.section + .section { border-top: 1px solid var(--rule-soft); }
:target, [id] { scroll-margin-top: calc(var(--nav-h) + 1.5rem); }

.stack { display: flex; flex-direction: column; }
.gap-xs { gap: .5rem }  .gap-sm { gap: 1rem }
.gap-md { gap: 2rem }   .gap-lg { gap: 3.5rem }

/* ---------- type ---------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.02em;
  text-wrap: pretty;
}

.h1 { font-size: clamp(2.75rem, 9vw, 5.5rem); }
.h2 { font-size: clamp(2rem, 5.5vw, 3.25rem); }
.h3 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }

.lede {
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 34ch;
  text-wrap: pretty;
}
.lede-full {
  max-width: none;
  text-wrap: wrap;
}

.prose { max-width: none; width: 100%; }
.prose p + p { margin-top: 1.1rem; }
.prose p { color: var(--ink-2); }
.prose strong { color: var(--ink); font-weight: 600; }

.section-label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* content gaps you still need to fill — searchable */
.todo {
  background: color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--ink);
  padding: 0 .3em;
  border-radius: 2px;
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.nav[data-scrolled="true"] { border-bottom-color: var(--rule-soft); }

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-width: 0;
}
.nav-brand { font-weight: 600; letter-spacing: -.01em; font-size: .95rem; white-space: nowrap; flex-shrink: 0; }
.brand-short { display: none; }
.nav-links {
  display: flex;
  gap: clamp(.85rem, 3vw, 2.5rem);
  align-items: center;
  min-width: 0;
}
.nav-links a { color: var(--muted); font-size: .92rem; transition: color .15s ease; white-space: nowrap; }

/* Below ~30rem the full name, three links and the toggle no longer fit on one
   line. Collapse the wordmark to initials rather than let the bar overflow —
   body has overflow-x:hidden, so an overflowing nav silently clips the whole page. */
@media (max-width: 30rem) {
  .brand-full { display: none; }
  .brand-short { display: inline; }
  .nav-links { gap: .9rem; }
  .nav-links a { font-size: .88rem; }
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"] { font-weight: 600; }

.theme-toggle {
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--muted);
  width: 2rem; height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  font-size: .8rem;
  line-height: 1;
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--muted); }

/* ---------- hero ---------- */

.hero {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 8vw, 5rem);
}
.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: end;
  width: 100%;
}
@media (min-width: 62rem) {
  .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
}
.hero-headline {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.015em;
  font-size: clamp(1.85rem, 3.4vw, 2.9rem);
  text-wrap: pretty;
  max-width: 18ch;
}
.hero h1 .it { font-style: italic; }
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: .5rem;
}
.hero-fact {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 38ch;
}
.hero-fact b { color: var(--ink); font-weight: 600; }

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue:hover { color: var(--ink); }
.scroll-cue span { display: inline-block; animation: nudge 2.4s ease-in-out infinite; }
@keyframes nudge { 0%,100% { transform: translateY(0) } 50% { transform: translateY(3px) } }

/* ---------- work ---------- */

.group-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.group-title {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 650;
  letter-spacing: -.01em;
}
.group-meta {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--muted);
  margin-top: .6rem;
  font-variant-numeric: tabular-nums;
}
.group-note { margin-top: 1rem; color: var(--muted); font-size: .97rem; }

.projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 48rem) {
  .projects { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.project { display: block; }
.project-figure {
  aspect-ratio: 16 / 10;
  background: var(--paper-2);
  border: 1px solid var(--rule-soft);
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.project-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.6,.2,1); }
.project:hover .project-figure img { transform: scale(1.03); }
.project-figure .placeholder {
  font-family: var(--font-mono);
  font-size: .72rem;
  line-height: 1.6;
  color: var(--faint);
  text-align: center;
  padding: 1.5rem;
}
.project-name {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.project-head {
  width: 100%;
  max-width: none;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.008em;
  text-wrap: pretty;
  margin-bottom: .55rem;
}
.project:hover .project-head { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.project-scope {
  font-family: var(--font-mono);
  font-size: .74rem;
  line-height: 1.7;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}


/* Keep the About statement on one line on desktop; allow natural wrapping on small screens. */
@media (min-width: 56rem) {
  .about-heading {
    white-space: nowrap;
    text-wrap: nowrap;
  }
}

/* ---------- about ---------- */

.about-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 56rem) {
  .about-grid { grid-template-columns: minmax(0, 1fr) minmax(0, .85fr); }
}

.cv { display: flex; flex-direction: column; }
.cv-row {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1.1rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--rule-soft);
  align-items: start;
}
.cv-row:first-of-type { border-top: 0; padding-top: 0; }
.cv-logo {
  width: 2.75rem; height: 2.75rem;
  background: var(--paper-2);
  border: 1px solid var(--rule-soft);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: .58rem; color: var(--faint);
  overflow: hidden;
}
.cv-logo img { width: 100%; height: 100%; object-fit: contain; }
.cv-org { font-weight: 600; font-size: .98rem; }
.cv-role { font-size: .9rem; color: var(--muted); margin-top: .15rem; }
.cv-role .yr { font-family: var(--font-mono); font-size: .8rem; font-variant-numeric: tabular-nums; }
.cv-note { font-size: .9rem; color: var(--muted); margin-top: .4rem; }


.about-experience {
  margin-top: clamp(3rem, 6vw, 5rem);
}
.cv-logo-empty {
  background: transparent;
  border-color: transparent;
}

.facts { display: flex; flex-direction: column; gap: 1.75rem; }
.fact-label {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--faint); margin-bottom: .35rem;
}
.fact-value { font-size: .97rem; color: var(--ink-2); }

/* ---------- contact ---------- */

.cta {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--ink);
  color: var(--paper);
  padding: .95rem 1.6rem;
  font-size: .95rem;
  font-weight: 550;
  border-radius: 2px;
  transition: opacity .15s ease, transform .15s ease;
}
.cta:hover { opacity: .88; transform: translateY(-1px); }
.cta-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .95rem; color: var(--muted);
  border-bottom: 1px solid var(--rule);
  padding-bottom: .15rem;
}
.cta-secondary:hover { color: var(--ink); border-color: var(--ink); }

.cta-row { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; align-items: baseline; }

/* ---------- footer ---------- */

.footer { padding-block: clamp(3rem, 6vw, 4.5rem); border-top: 1px solid var(--rule-soft); }
.footer-grid {
  display: grid; gap: 2rem clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
}
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-soft);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-family: var(--font-mono); font-size: .74rem; color: var(--faint);
}

/* ============================================================
   Services page
   ============================================================ */

.services-intro { max-width: 62ch; }

.service-block {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  border-top: 1px solid var(--rule-soft);
}
.service-block:first-of-type { border-top: 0; padding-top: 0; }

.service-grid {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 56rem) {
  .service-grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
}

.service-name {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1rem;
}
.service-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  line-height: 1.24;
  letter-spacing: -.015em;
  max-width: 23ch;
  text-wrap: pretty;
}
.service-desc {
  margin-top: 1.1rem;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 42ch;
}

.service-list { display: flex; flex-direction: column; }
.service-list li {
  font-size: .93rem;
  color: var(--ink-2);
  line-height: 1.5;
  padding-block: .9rem;
  border-top: 1px solid var(--rule-soft);
}
.service-list li:first-child { border-top: 0; padding-top: 0; }

.service-align-spacer {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  margin-bottom: 1rem;
  visibility: hidden;
}

.service-refs {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-soft);
}
.service-ref {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  width: fit-content;
}
.service-ref-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--faint);
}
.service-ref-name {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .96rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
  padding-bottom: .1rem;
}
.service-ref:hover .service-ref-name { color: var(--ink); border-color: var(--ink); }

.services-note {
  margin-top: clamp(1rem, 3vw, 1.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--rule);
}
.services-note p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: none;
  text-wrap: wrap;
}
.services-note .cta-secondary { margin-top: 1.25rem; }

/* ============================================================
   Case study pages
   ============================================================ */

.back {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: var(--muted);
}
.back:hover { color: var(--ink); }

.cs-header { padding-block: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 4vw, 3rem); }
.cs-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
  text-wrap: pretty;
  max-width: none;
  width: 100%;
  margin-top: 1rem;
}
.cs-sub {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: var(--ink-2);
  max-width: none;
  width: 100%;
  line-height: 1.55;
}

.cs-hero-figure {
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
  border: 1px solid var(--rule-soft);
  display: grid; place-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.cs-hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.cs-hero-figure .placeholder {
  font-family: var(--font-mono); font-size: .78rem; color: var(--faint);
  text-align: center; padding: 2rem; line-height: 1.7;
}

/* stats bar */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
  margin-bottom: 0;
}
.stat { background: var(--paper); padding: 1.5rem 1.4rem; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.stat-label {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-top: .6rem;
}
.stats-note {
  font-family: inherit;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin-top: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

/* at-a-glance meta — same visual system as metrics */
.cs-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
  margin-bottom: 1rem;
}
.cs-meta > div {
  background: var(--paper);
  padding: 1.5rem 1.4rem;
}
.cs-meta dt {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--faint); margin-bottom: .6rem;
}
.cs-meta dd { margin: 0; font-size: .93rem; color: var(--ink-2); line-height: 1.5; }


@media (max-width: 48rem) {
  .cs-meta { grid-template-columns: 1fr; }
}

/* body sections */
.cs-block { margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.cs-block > h2 {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--faint); font-weight: 400;
  padding-bottom: .9rem; border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.step { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.step:last-child { margin-bottom: 0; }
.step-num {
  font-family: var(--font-mono); font-size: .74rem; color: var(--faint);
  font-variant-numeric: tabular-nums; margin-bottom: .5rem;
}
.step-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  letter-spacing: -.015em; line-height: 1.2;
  margin-bottom: .9rem; text-wrap: pretty; max-width: none; width: 100%;
}

/* the one step worth stopping on */
.step.pivot {
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.step.pivot .step-num { color: var(--ink-2); }
.pivot-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .13em;
  text-transform: uppercase; background: var(--accent); color: #16181C;
  padding: .2rem .55rem; border-radius: 2px; margin-bottom: .75rem;
}

figure { margin: 1.75rem 0 0; }
figure .frame {
  background: var(--paper-2);
  border: 1px solid var(--rule-soft);
  aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  overflow: hidden;
}
figure .frame img { width: 100%; height: 100%; object-fit: cover; }
figure .frame .placeholder {
  font-family: var(--font-mono); font-size: .74rem; color: var(--faint);
  text-align: center; padding: 1.5rem; line-height: 1.7;
}
figcaption {
  font-size: .82rem; color: var(--muted); margin-top: .75rem;
  max-width: none; width: 100%; line-height: 1.5;
}

.outcome-highlight {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  line-height: 1.3;
  letter-spacing: -.015em;
  max-width: none; width: 100%;
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}

/* next project */
.next {
  border-top: 1px solid var(--rule);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: space-between; align-items: center;
}
.next-label {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--faint); margin-bottom: .5rem;
}
.next-title { font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 600; letter-spacing: -.01em; }
.next a:hover .next-title { text-decoration: underline; text-underline-offset: 4px; }

/* Problem: same hierarchy as other case-study sections, with restrained emphasis */
.problem-block {
  margin-top: clamp(.5rem, 1.5vw, 1rem);
  padding: clamp(1.35rem, 2.6vw, 1.9rem);
  background: var(--paper-2);
  border-left: 3px solid var(--ink);
}
.problem-block > h2 {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 400;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.problem-block .prose > p:first-child {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.problem-block figure {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

/* 30-second story: scan layer before the deep read */
.story-scan {
  margin-top: 0;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
}
.story-card {
  background: var(--paper);
  padding: clamp(1.25rem, 2.4vw, 1.7rem);
}
.story-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: .65rem;
  letter-spacing: -.01em;
}
.story-card p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-2);
}
@media (max-width: 42rem) {
  .story-grid { grid-template-columns: 1fr; }
}
