/* ─────────────────────────────────────────────────────────────
   Studio Ikigai — design system
   KRPT-style: editorial, minimal, generous whitespace,
   numbered structures, color as restrained accent.
   ───────────────────────────────────────────────────────────── */

/* Primary — DentonTest (display / headings) */
@font-face { font-family: "Denton"; src: url("Fonts/Primary%20Font/DentonTest-Light.otf") format("opentype"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Denton"; src: url("Fonts/Primary%20Font/DentonTest-Regular.otf") format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Denton"; src: url("Fonts/Primary%20Font/DentonTest-RegularItalic.otf") format("opentype"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Denton"; src: url("Fonts/Primary%20Font/DentonTest-Medium.otf") format("opentype"); font-weight: 500; font-style: normal; font-display: swap; }

/* Secondary — Oldschool Grotesk Compact (body / UI) */
@font-face { font-family: "Oldschool Grotesk"; src: url("Fonts/Secondary%20Font/OldschoolGroteskCompactTrial-Light.ttf") format("truetype"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Oldschool Grotesk"; src: url("Fonts/Secondary%20Font/OldschoolGroteskCompactTrial-Book.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Oldschool Grotesk"; src: url("Fonts/Secondary%20Font/OldschoolGroteskCompactTrial-BookItalic.ttf") format("truetype"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Oldschool Grotesk"; src: url("Fonts/Secondary%20Font/OldschoolGroteskCompactTrial-Medium.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Oldschool Grotesk"; src: url("Fonts/Secondary%20Font/OldschoolGroteskCompactTrial-Bold.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  /* Palette taken from the actual logo SVG */
  --cream:       #F9F5E8;
  --cream-deep:  #F1EBD6;
  --ink:         #141414;
  --ink-soft:    #4A4A48;
  --ink-mute:    #7A7A78;
  --rule:        rgba(20,20,20,.14);
  --rule-soft:   rgba(20,20,20,.08);

  --green: #009711;
  --blue:  #0647A3;
  --sky:   #0FB6E3;
  --yellow:#FBC503;
  --pink:  #F98EBA;
  --red:   #D54C18;

  --font-primary:   "Denton", Georgia, "Times New Roman", serif;
  --font-secondary: "Oldschool Grotesk", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --serif: var(--font-secondary);

  --max:    1320px;
  --gutter: clamp(20px, 4vw, 56px);

  --pad-section: clamp(80px, 12vw, 160px);
  --pad-page-top: clamp(120px, 14vw, 200px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

body {
  font-family: var(--font-secondary);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01" on, "cv11" on;
}

h1, h2, h3, h4, h5, h6,
.hero h1, .page-head h1,
.fw-grid h2, .pq, .footer-lead h2 {
  font-family: var(--font-primary);
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--cream); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ───────── Nav ───────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--cream) 92%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 24px;
}
.nav-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.nav-brand img {
  height: 22px;
  width: auto;
}
.nav-brand sup {
  font-size: 9px;
  color: var(--green);
  font-weight: 700;
  transform: translateY(-2px);
}
.nav-links {
  display: flex;
  gap: clamp(18px, 2.4vw, 36px);
  font-size: 14px;
  letter-spacing: .01em;
}
.nav-links a {
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--cream);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
  padding: 4px 8px;
}
@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-block; }
  .nav.is-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-top: 1px solid var(--rule);
    padding: 16px var(--gutter) 28px;
  }
  .nav.is-open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule-soft);
    font-size: 18px;
  }
  .nav.is-open .nav-cta {
    display: inline-flex;
    margin: 16px var(--gutter);
    align-self: flex-start;
  }
}

/* ───────── Typography ───────── */
h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.04;
  margin: 0;
}
p { margin: 0; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 28px;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}
.kicker.kicker-dot::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ───────── Section base ───────── */
section { padding: var(--pad-section) 0; position: relative; }
section + section { border-top: 1px solid var(--rule); }
section.no-rule + section { border-top: 0; }

.page-head {
  padding: var(--pad-page-top) 0 var(--pad-section);
}
.page-head h1 {
  font-size: clamp(48px, 9vw, 132px);
  font-weight: 400;
  letter-spacing: -.04em;
  max-width: 16ch;
  line-height: .98;
}
.page-head h1 em {
  font-style: italic;
  font-weight: 300;
}
.page-head .lede {
  margin-top: 40px;
  max-width: 56ch;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ───────── Hero (home) ───────── */
.hero { padding-top: var(--pad-page-top); padding-bottom: clamp(80px, 10vw, 140px); }
.hero h1 {
  font-size: clamp(46px, 9.2vw, 148px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .96;
  max-width: 12ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
}
.hero h1 .accent { color: var(--green); }
.hero-lede {
  margin-top: 48px;
  max-width: 54ch;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--ink-soft);
  line-height: 1.5;
}
.hero-actions {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--ink);
  transition: transform .2s, background .2s, color .2s;
}
.btn:hover { background: transparent; color: var(--ink); transform: translateY(-1px); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* ───────── Hero meta strip ───────── */
.hero-meta {
  margin-top: clamp(80px, 10vw, 120px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
  font-size: 13px;
  color: var(--ink-soft);
}
.hero-meta b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 4px; }
@media (max-width: 760px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
}

/* ───────── Manifesto / intro block ───────── */
.intro-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
.intro-block .col-l {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.intro-block h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  max-width: 28ch;
  letter-spacing: -.02em;
  line-height: 1.18;
}
.intro-block h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--green);
}
@media (max-width: 860px) {
  .intro-block { grid-template-columns: 1fr; gap: 16px; }
}

/* ───────── Partner strip — auto-scrolling marquee, hover-pause ───────── */
.partners-strip {
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.partners-strip .kicker { margin-bottom: 40px; }
.partners-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
}
.partners-track {
  display: flex;
  gap: clamp(56px, 6vw, 96px);
  width: max-content;
  align-items: center;
  animation: partners-scroll 50s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner {
  height: 56px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  opacity: .72;
  transition: opacity .2s;
}
.partner img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.partner:hover { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 32px;
  }
  .partner[aria-hidden="true"] { display: none; }
}

/* ───────── Featured work (home) ───────── */
.work-feature .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}
.work-feature h2 {
  font-size: clamp(36px, 5.4vw, 76px);
  font-weight: 400;
  letter-spacing: -.03em;
  max-width: 14ch;
}
.work-feature h2 em { font-style: italic; font-weight: 300; }
.work-feature .head .meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
}
.work-feature .head .meta p { color: var(--ink-soft); max-width: 38ch; }
.work-feature .head .meta a {
  font-size: 14px;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
.work-tile {
  display: block;
  position: relative;
}
.work-tile .frame {
  aspect-ratio: 5 / 4;
  border-radius: 4px;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease;
}
.work-tile:hover .frame { transform: translateY(-4px); }
.work-tile .frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, var(--yellow), transparent 50%),
    radial-gradient(circle at 75% 70%, var(--pink), transparent 55%),
    linear-gradient(135deg, var(--sky), var(--blue));
  opacity: .9;
}
.work-tile .frame.fp::before {
  background:
    radial-gradient(circle at 30% 30%, var(--green), transparent 55%),
    radial-gradient(circle at 70% 75%, var(--yellow), transparent 55%),
    linear-gradient(180deg, var(--cream), var(--cream-deep));
  opacity: .85;
}
.work-tile .frame.alt::before {
  background:
    radial-gradient(circle at 70% 30%, var(--red), transparent 50%),
    radial-gradient(circle at 30% 80%, var(--pink), transparent 55%),
    linear-gradient(160deg, var(--cream-deep), var(--cream));
  opacity: .85;
}
.work-tile .frame .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(20,20,20,.4);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 1;
}
.work-tile .frame .ph {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: var(--cream);
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 32px);
  letter-spacing: -.01em;
  z-index: 1;
}
.work-tile .meta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.work-tile .meta h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  margin: 0;
}
.work-tile .meta span {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.tile-desc {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
  max-width: 42ch;
}
.tile-tags {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tile-tags li {
  font-size: 14px;
  line-height: 1.2;
  color: var(--ink);
  padding: 10px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-soft);
}
.chip {
  font: inherit;
  font-size: 13px;
  letter-spacing: .02em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink-soft);
  transition: background .2s, color .2s, border-color .2s;
}
.chip:hover { color: var(--ink); border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.work-tile.is-hidden { display: none; }
.work-tile.placeholder .frame::before {
  background: var(--cream-deep);
  opacity: 1;
}
.work-tile.placeholder .frame::after {
  content: "Case study coming soon";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink-mute);
  font-style: italic;
}
@media (max-width: 760px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-feature .head { grid-template-columns: 1fr; align-items: start; }
}

/* ───────── Services overview (home) ───────── */
.services-overview .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.services-overview h2 {
  font-size: clamp(36px, 5.4vw, 76px);
  font-weight: 400;
  letter-spacing: -.03em;
}
.services-overview h2 em { font-style: italic; font-weight: 300; }
.services-overview .head p {
  color: var(--ink-soft);
  max-width: 42ch;
}
.services-grid {
  border-top: 1px solid var(--ink);
}
.svc-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 1.4fr 80px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--ink);
  align-items: start;
  text-decoration: none;
  color: inherit;
  transition: padding .25s, background .2s;
}
.svc-row:hover { padding-left: 16px; padding-right: 16px; background: rgba(20,20,20,.02); }
.svc-row:hover .svc-arrow { transform: translate(6px, -6px); }
.svc-row .num {
  font-size: 14px;
  color: var(--ink-soft);
  padding-top: 8px;
  letter-spacing: .04em;
}
.svc-row .title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 500;
  line-height: 1.15;
}
.svc-row .desc {
  color: var(--ink-soft);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  padding-top: 6px;
}
.svc-arrow {
  font-size: 22px;
  align-self: start;
  justify-self: end;
  transition: transform .25s;
  padding-top: 4px;
}
@media (max-width: 860px) {
  .svc-row {
    grid-template-columns: 60px 1fr 36px;
    gap: 16px;
    padding: 24px 0;
  }
  .svc-row .desc { display: none; }
}

/* ───────── 3Ps Framework callout ───────── */
.framework-callout {
  background: var(--ink);
  color: var(--cream);
}
.framework-callout .kicker { color: rgba(249,245,232,.6); }
.framework-callout .kicker::before { background: var(--yellow); }
.fw-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.fw-grid h2 {
  font-size: clamp(40px, 6.4vw, 96px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .98;
}
.fw-grid h2 em { font-style: italic; font-weight: 300; color: var(--yellow); }
.fw-grid h2 sup { font-size: .3em; vertical-align: super; color: var(--yellow); }
.fw-grid .body {
  color: rgba(249,245,232,.75);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  max-width: 56ch;
}
.fw-grid .body p + p { margin-top: 16px; }
.fw-grid .body a {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--yellow);
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: .04em;
}
.fw-pills {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(249,245,232,.15);
  border: 1px solid rgba(249,245,232,.15);
}
.fw-pill {
  background: var(--ink);
  padding: 40px 32px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.fw-pill .dot {
  width: 12px; height: 12px; border-radius: 50%;
  margin-bottom: 24px;
}
.fw-pill.place   .dot { background: var(--sky); }
.fw-pill.people  .dot { background: var(--yellow); }
.fw-pill.purpose .dot { background: var(--green); }
.fw-pill.process .dot { background: var(--pink); }
.fw-pill h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  margin-bottom: auto;
}
.fw-pill p {
  margin-top: 20px;
  color: rgba(249,245,232,.7);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 1080px) {
  .fw-pills { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .fw-grid { grid-template-columns: 1fr; gap: 32px; }
  .fw-pills { grid-template-columns: 1fr; margin-top: 40px; }
}

/* ───────── 4P Framework page — horizontal pill rows ───────── */
.fw-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 56px;
}
.fw-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.fw-row:first-child { border-top: 1px solid var(--rule); }
.fw-row .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
  width: fit-content;
}
.fw-row.place   .pill { background: var(--sky); color: #FFFFFF; }
.fw-row.people  .pill { background: var(--yellow); }
.fw-row.purpose .pill { background: var(--green); color: var(--cream); }
.fw-row.process .pill { background: var(--pink); }
.fw-row .desc {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}
@media (max-width: 760px) {
  .fw-row { grid-template-columns: 1fr; gap: 12px; padding: 20px 0; }
}

/* Ecosystem visual (4P diagram replacement) */
.fw-eco {
  margin-top: 80px;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--cream-deep);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.fw-eco .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .65;
}
.fw-eco .b1 { width: 38%; height: 70%; left: 8%; top: 14%; background: var(--sky); }
.fw-eco .b2 { width: 32%; height: 64%; left: 30%; top: 22%; background: var(--yellow); }
.fw-eco .b3 { width: 38%; height: 70%; left: 48%; top: 14%; background: var(--green); }
.fw-eco .b4 { width: 32%; height: 64%; left: 68%; top: 22%; background: var(--pink); }
.fw-eco .label {
  position: absolute;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
}
.fw-eco .l-place   { top: 18%; left: 16%; background: var(--sky);    color: #FFFFFF; }
.fw-eco .l-people  { top: 64%; left: 32%; background: var(--yellow); }
.fw-eco .l-purpose { top: 18%; left: 56%; background: var(--green);  color: var(--cream); }
.fw-eco .l-process { top: 64%; left: 72%; background: var(--pink); }
@media (max-width: 760px) {
  .fw-eco { aspect-ratio: 4/5; }
  .fw-eco .l-place   { top: 12%; left: 12%; }
  .fw-eco .l-people  { top: 38%; left: 60%; }
  .fw-eco .l-purpose { top: 60%; left: 12%; }
  .fw-eco .l-process { top: 84%; left: 60%; }
}

/* ───────── Climate Circle teaser ───────── */
.circle-teaser .grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.circle-teaser h2 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}
.circle-teaser h2 em { font-style: italic; font-weight: 300; color: var(--pink); }
.circle-teaser .body { color: var(--ink-soft); font-size: clamp(17px, 1.4vw, 19px); line-height: 1.65; max-width: 56ch; }
.circle-teaser .body p + p { margin-top: 16px; }
.circle-teaser .body a {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  letter-spacing: .04em;
}
.circle-vis {
  aspect-ratio: 1 / 1;
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}
.circle-vis .ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(20,20,20,.18);
  animation: rotate 80s linear infinite;
}
.circle-vis .ring.inner {
  inset: 16%;
  border-style: solid;
  border-color: rgba(20,20,20,.12);
  animation-duration: 120s;
  animation-direction: reverse;
}
.circle-vis .core {
  position: absolute; inset: 30%;
  border-radius: 50%;
  background: var(--pink);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-weight: 500;
  letter-spacing: .04em;
  font-size: clamp(13px, 1.1vw, 15px);
  padding: 16px;
}
.circle-vis .node {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
}
.circle-vis .n1 { top: 0;   left: 50%; transform: translate(-50%,-50%); background: var(--green); }
.circle-vis .n2 { top: 50%; left: 100%; transform: translate(-50%,-50%); background: var(--blue); }
.circle-vis .n3 { top: 100%; left: 50%; transform: translate(-50%,-50%); background: var(--yellow); }
.circle-vis .n4 { top: 50%; left: 0; transform: translate(-50%,-50%); background: var(--sky); }
@keyframes rotate { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .circle-vis .ring { animation: none; }
}
@media (max-width: 860px) {
  .circle-teaser .grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ───────── Insights teaser ───────── */
.insights-teaser .head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}
.insights-teaser h2 {
  font-size: clamp(36px, 5.4vw, 72px);
  font-weight: 400;
  letter-spacing: -.03em;
}
.insights-teaser h2 em { font-style: italic; font-weight: 300; }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.insight-card {
  background: var(--cream);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: background .2s;
}
.insight-card:hover { background: var(--cream-deep); }
.insight-card .topic {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.insight-card h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  margin-bottom: auto;
  line-height: 1.2;
}
.insight-card .date { font-size: 13px; color: var(--ink-mute); }
.insight-card.empty {
  color: var(--ink-mute);
  font-style: italic;
}
@media (max-width: 860px) {
  .insights-grid { grid-template-columns: 1fr; }
}

/* ───────── Lets talk banner ───────── */
.lets-talk {
  background: var(--cream-deep);
  text-align: center;
  padding: clamp(100px, 14vw, 180px) 0;
}
.lets-talk h2 {
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: .95;
}
.lets-talk h2 em { font-style: italic; color: var(--green); }
.lets-talk .actions {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ───────── Accordion (services page) ───────── */
.accordion {
  border-top: 1px solid var(--ink);
}
.acc-item {
  border-bottom: 1px solid var(--ink);
}
.acc-head {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 88px 1fr 40px;
  gap: 24px;
  text-align: left;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}
.acc-head:hover { color: var(--ink); }
.acc-head .num {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.acc-head .q {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.acc-head .indicator {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  position: relative;
  justify-self: end;
  transition: background .25s, transform .25s;
}
.acc-head .indicator::before,
.acc-head .indicator::after {
  content: "";
  position: absolute;
  background: var(--cream);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.acc-head .indicator::before { width: 10px; height: 2px; }
.acc-head .indicator::after  { width: 2px; height: 10px; transition: opacity .25s; }
.acc-item.is-open .acc-head .indicator { background: var(--ink); }
.acc-item.is-open .acc-head .indicator::after { opacity: 0; }
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.acc-body > div {
  overflow: hidden;
}
.acc-item.is-open .acc-body {
  grid-template-rows: 1fr;
}
.acc-inner {
  display: grid;
  grid-template-columns: 88px 1fr 1fr 40px;
  gap: 24px;
  padding: 0 0 36px;
}
.acc-inner .l { /* spacer for number col */ }
.acc-inner .lead {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink);
}
.acc-inner ul {
  margin: 0; padding: 0; list-style: none;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.acc-inner ul li {
  padding: 8px 0;
  border-top: 1px dashed var(--rule);
}
.acc-inner ul li:first-child { border-top: 0; padding-top: 0; }
@media (max-width: 860px) {
  .acc-head { grid-template-columns: 50px 1fr 28px; padding: 22px 0; }
  .acc-head .indicator { width: 18px; height: 18px; }
  .acc-inner { grid-template-columns: 1fr; padding-left: 0; }
  .acc-inner .l { display: none; }
}

/* ───────── About / Founder ───────── */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.founder-portrait {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background:
    radial-gradient(circle at 30% 30%, var(--yellow) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, var(--pink) 0%, transparent 55%),
    linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}
.founder-portrait .label {
  position: absolute;
  inset: auto 0 16px 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(249,245,232,.7);
}
.founder-text blockquote {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 400;
}
.founder-text blockquote::before {
  content: "“";
  color: var(--green);
  margin-right: .12em;
  font-size: 1em;
  line-height: 0;
}
.founder-text .attr {
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.founder-text .attr b { color: var(--ink); font-weight: 600; display: block; }
.founder-text .bio {
  margin-top: 40px;
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 56ch;
}
.founder-text .bio p + p { margin-top: 16px; }
@media (max-width: 860px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-portrait { max-width: 320px; }
}

/* Values list */
.values-list {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.value {
  background: var(--cream);
  padding: 40px 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.value .num {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.value h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  margin-bottom: 16px;
}
.value p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
@media (max-width: 860px) {
  .values-list { grid-template-columns: 1fr; }
}

/* ───────── Why You ───────── */
.why-you {
  background: var(--blue);
  color: var(--cream);
}
.why-you .kicker { color: rgba(249,245,232,.7); }
.why-you .kicker::before { background: var(--yellow); }
.why-you h2 {
  font-size: clamp(36px, 5.4vw, 72px);
  font-weight: 400;
  max-width: 24ch;
  letter-spacing: -.025em;
}
.why-you ul {
  margin: 56px 0 0; padding: 0; list-style: none;
  max-width: 880px;
}
.why-you ul li {
  font-size: clamp(18px, 1.8vw, 24px);
  padding: 24px 0;
  border-top: 1px solid rgba(249,245,232,.18);
  display: flex; gap: 24px; align-items: baseline;
  line-height: 1.3;
}
.why-you ul li:last-child { border-bottom: 1px solid rgba(249,245,232,.18); }
.why-you ul li::before {
  content: "→";
  color: var(--yellow);
}
.why-you .cta-line {
  margin-top: 64px;
  font-size: clamp(22px, 2.6vw, 32px);
  font-style: italic;
  color: var(--yellow);
  max-width: 30ch;
  line-height: 1.3;
}

/* ───────── Closing quote ───────── */
.closing {
  text-align: center;
  padding: clamp(120px, 18vw, 220px) 0;
}
.closing blockquote {
  margin: 0 auto;
  max-width: 26ch;
  font-size: clamp(30px, 4.6vw, 56px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.15;
}
.closing blockquote .accent { color: var(--green); font-style: italic; }
.closing .attr {
  margin-top: 56px;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ───────── Footer ───────── */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(249,245,232,.16);
}
.footer-lead h2 {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: .95;
}
.footer-lead h2 em { font-style: italic; color: var(--yellow); }
.footer-contact {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact a {
  font-size: clamp(17px, 1.6vw, 22px);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--yellow); }
.footer-col h4 {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(249,245,232,.5);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  color: var(--cream);
  transition: color .2s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.footer-wordmark img {
  height: 28px;
  width: auto;
  opacity: .9;
}
.footer-meta {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: rgba(249,245,232,.5);
  letter-spacing: .04em;
}
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; }
}

/* ───────── Services cards (KRPT 01–05 home grid) ───────── */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.svc-card {
  background: var(--cream);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  color: inherit;
  transition: background .25s;
}
.svc-card:hover { background: var(--cream-deep); }
.svc-card .num {
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-weight: 600;
}
.svc-card h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: auto;
}
.svc-card .desc {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}
.svc-card .more {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  width: fit-content;
}
@media (max-width: 1080px) {
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .svc-cards { grid-template-columns: 1fr; }
}

/* ───────── Reports section ───────── */
.reports-section { background: var(--cream-deep); }
.reports-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 64px;
}
.reports-head h2 {
  font-size: clamp(36px, 5.4vw, 72px);
  font-weight: 400;
  letter-spacing: -.03em;
}
.reports-head h2 em { font-style: italic; font-weight: 300; }
.reports-head h2 sup { font-size: .35em; color: var(--green); vertical-align: super; }
.reports-head .meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: end;
  text-align: right;
}
.reports-head .meta p { color: var(--ink-soft); max-width: 36ch; text-align: right; }
.reports-head .meta a {
  font-size: 14px;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.reports-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.report-card {
  background: var(--cream);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  color: inherit;
  transition: background .25s;
}
.report-card:hover { background: var(--cream-deep); }
.report-card .topic {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-weight: 600;
}
.report-card h3 {
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: auto;
  letter-spacing: -.01em;
}
.report-card .status {
  margin-top: 28px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: .04em;
  text-transform: uppercase;
}
@media (max-width: 1080px) {
  .reports-grid { grid-template-columns: repeat(2, 1fr); }
  .reports-head { grid-template-columns: 1fr; align-items: start; }
  .reports-head .meta { align-items: start; text-align: left; }
  .reports-head .meta p { text-align: left; }
}
@media (max-width: 600px) {
  .reports-grid { grid-template-columns: 1fr; }
}

/* ───────── Expanded services (KRPT second services block) ───────── */
.expanded-services .head { margin-bottom: 64px; }
.expanded-services .head h2 {
  font-size: clamp(36px, 5.4vw, 72px);
  font-weight: 400;
  letter-spacing: -.03em;
}
.expanded-services .head h2 em { font-style: italic; font-weight: 300; }
.expanded-services .head .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
}
.expanded-services .head p {
  color: var(--ink-soft);
  max-width: 44ch;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
}
.expanded-list {
  display: flex;
  flex-direction: column;
}
.expanded {
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  padding: 64px 0;
  border-top: 1px solid var(--rule);
}
.expanded:last-child { border-bottom: 1px solid var(--rule); }
.expanded .num {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  padding-top: 6px;
}
.expanded h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: 16ch;
}
.expanded .body {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-soft);
  line-height: 1.65;
}
.expanded .body p + p { margin-top: 12px; }
.expanded .body ul {
  margin: 20px 0 0; padding: 0;
  list-style: none;
}
.expanded .body ul li {
  padding: 10px 0;
  border-top: 1px dashed var(--rule);
  font-size: 14px;
  color: var(--ink);
}
@media (max-width: 860px) {
  .expanded { grid-template-columns: 1fr; gap: 12px; padding: 40px 0; }
  .expanded-services .head .row { grid-template-columns: 1fr; align-items: start; gap: 16px; }
}

/* ───────── Page list (work / insights placeholder) ───────── */
.placeholder-list {
  border-top: 1px solid var(--ink);
}
.placeholder-row {
  display: grid;
  grid-template-columns: 80px 1.4fr 1fr 80px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.placeholder-row .num { font-size: 14px; color: var(--ink-soft); }
.placeholder-row .title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--ink);
}
.placeholder-row .desc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}
.placeholder-row .status {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  justify-self: end;
}
@media (max-width: 760px) {
  .placeholder-row { grid-template-columns: 50px 1fr; }
  .placeholder-row .desc, .placeholder-row .status { display: none; }
}

/* ───────── Hero eyebrow (3-word sharpener above home H1) ───────── */
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--green);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

/* ───────── 4P artefact lockup (named artefact, framework page) ───────── */
.fw-artefact {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  background: var(--cream-deep);
  border: 1px solid var(--rule);
  border-radius: 6px;
  margin-top: 48px;
  max-width: 720px;
}
.fw-artefact-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: block;
}
.fw-artefact-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fw-artefact-wordmark {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--ink);
}
.fw-artefact-wordmark sup {
  font-size: .55em;
  color: var(--green);
  vertical-align: super;
  font-weight: 700;
}
.fw-artefact-def {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  letter-spacing: .01em;
}
@media (max-width: 600px) {
  .fw-artefact { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
}

/* ───────── 4P canonical-line on dark framework-callout (home) ───────── */
.framework-callout .fw-definition {
  display: block;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(249,245,232,.18);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(249,245,232,.6);
}

/* ───────── Pullquote band (signature quote, used sparingly — home + circle) ───────── */
.pullquote-band {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: clamp(100px, 14vw, 160px) 0;
}
.pullquote-band .pq {
  font-size: clamp(28px, 4.8vw, 64px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.12;
  max-width: 22ch;
  margin: 0 auto;
  font-style: italic;
}
.pullquote-band .pq::before { content: "“"; color: var(--yellow); margin-right: .04em; }
.pullquote-band .pq::after  { content: "”"; color: var(--yellow); margin-left: .04em; }
.pullquote-band .pq em { font-style: italic; color: var(--yellow); font-weight: 400; }
.pullquote-band .attr {
  display: block;
  margin-top: 48px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(249,245,232,.55);
  font-weight: 600;
}

/* ───────── 3-CTA pre-footer (Work · Circle · Write — home + about only) ───────── */
.cta-trio {
  background: var(--cream-deep);
  padding: clamp(80px, 12vw, 140px) 0;
}
.cta-trio .head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.cta-trio .head .kicker { justify-content: center; }
.cta-trio h2 {
  font-size: clamp(36px, 5.4vw, 72px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1;
  max-width: 22ch;
  margin: 0 auto;
}
.cta-trio h2 em { font-style: italic; color: var(--green); }
.cta-trio .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cta-card {
  background: var(--cream);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 300px;
  color: inherit;
  transition: background .3s ease, color .3s ease;
}
.cta-card:hover { background: var(--ink); color: var(--cream); }
.cta-card .num {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .55;
}
.cta-card h3 {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 12px 0 auto;
}
.cta-card .who {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 16px;
  transition: color .3s ease;
}
.cta-card:hover .who { color: rgba(249,245,232,.7); }
.cta-card .more {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: .04em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  width: fit-content;
}
.cta-card .arrow { display: inline-block; margin-left: 6px; transition: transform .25s; }
.cta-card:hover .arrow { transform: translateX(4px); }
.cta-card.work .num   { color: var(--green); opacity: 1; }
.cta-card.circle .num { color: var(--pink); opacity: 1; }
.cta-card.write .num  { color: var(--blue); opacity: 1; }
.cta-card:hover .num  { color: var(--yellow); opacity: 1; }
@media (max-width: 880px) {
  .cta-trio .grid { grid-template-columns: 1fr; }
  .cta-card { min-height: 220px; }
}

/* ───────── Home page image slots ───────── */
.hero { position: relative; }
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .18;
  z-index: 0;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }

.work-tile .frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.work-tile .frame:has(img)::before { display: none; }

.fw-illustration {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 32px 0;
}
