:root {
  --ink: #171712;
  --paper: #f3f0e8;
  --paper-deep: #e7e2d7;
  --acid: #d9ff43;
  --coral: #ff654d;
  --line: rgba(23, 23, 18, .18);
  --muted: #625f56;
  --max: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.sr-only, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link:focus { position: fixed; z-index: 1000; top: 1rem; left: 1rem; padding: .75rem 1rem; background: var(--acid); color: var(--ink); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid rgba(243,240,232,.18);
  color: var(--paper);
  transition: background .3s, color .3s, height .3s;
}
.site-header.scrolled { height: 68px; background: rgba(243,240,232,.94); color: var(--ink); border-color: var(--line); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: .8rem; width: max-content; font-weight: 700; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; font-size: .7rem; letter-spacing: .08em; }
.site-nav { display: flex; gap: clamp(1rem, 2vw, 2.4rem); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a { position: relative; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: -.4rem; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { justify-self: end; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.nav-cta span { display: inline-block; margin-left: .35rem; transition: transform .25s; }
.nav-cta:hover span { transform: translate(.2rem, -.2rem); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(9rem, 17vh, 13rem) clamp(1.25rem, 5vw, 5rem) 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: end;
  gap: 4rem;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 1.4rem; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { padding: 0 .45rem; color: var(--acid); }
.hero h1, .section-heading h2, .philosophy h2, .about h2, .connect h2 {
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 9.5rem);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.07em;
}
em { color: var(--coral); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-intro { max-width: 640px; margin: 2rem 0 0; color: rgba(243,240,232,.73); font-size: clamp(1.1rem, 1.6vw, 1.45rem); line-height: 1.55; }
.hero-actions { margin-top: 2.5rem; display: flex; align-items: center; gap: 2rem; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border: 1px solid transparent; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--acid); color: var(--ink); }
.button-primary:hover { background: var(--paper); }
.text-link { padding-bottom: .3rem; border-bottom: 1px solid rgba(243,240,232,.4); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-side { position: relative; z-index: 2; align-self: center; padding: 1.5rem 0 1.5rem 2rem; border-left: 1px solid rgba(243,240,232,.3); }
.hero-side p { margin: 0; font-size: 1.05rem; line-height: 1.7; }
.hero-scroll { position: absolute; right: 2rem; bottom: 2rem; color: rgba(243,240,232,.45); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-orbit { position: absolute; border: 1px solid rgba(243,240,232,.12); border-radius: 50%; }
.orbit-one { width: 54vw; height: 54vw; right: -18vw; top: -15vw; }
.orbit-two { width: 32vw; height: 32vw; right: -4vw; top: -6vw; border-color: rgba(217,255,67,.25); }
.orbit-two::before { content: ""; position: absolute; top: 48%; left: -5px; width: 10px; height: 10px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 35px rgba(217,255,67,.8); }

.metrics { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric { min-height: 250px; padding: 3rem clamp(1.25rem, 3vw, 3rem); display: flex; flex-direction: column; justify-content: space-between; border-left: 1px solid var(--line); }
.metric strong { font-size: clamp(3.1rem, 5vw, 5.6rem); line-height: 1; letter-spacing: -.07em; }
.metric span { max-width: 180px; color: var(--muted); font-size: .84rem; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 5vw, 5rem); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .6fr); align-items: end; gap: 3rem; margin-bottom: 5rem; }
.section-heading h2, .about h2 { font-size: clamp(3rem, 6.5vw, 7rem); }
.section-heading > p, .section-heading-row > p { max-width: 500px; margin: 0 0 .6rem; color: var(--muted); font-size: 1.05rem; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -.5rem; }
.section-heading-row > div .eyebrow { margin-bottom: 1.4rem; }
.section-heading-row > div h2 { font-size: clamp(4rem, 8vw, 8.5rem); }

.expertise { border-bottom: 1px solid var(--line); }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.pillar { min-height: 500px; padding: 2rem; display: grid; grid-template-rows: 120px 86px 96px 128px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s, transform .3s; }
.pillar:hover { background: var(--ink); color: var(--paper); transform: translateY(-8px); }
.pillar:nth-child(2):hover { background: var(--coral); color: var(--ink); }
.pillar:nth-child(3):hover { background: var(--acid); color: var(--ink); }
.pillar-number { color: var(--muted); font-size: .7rem; letter-spacing: .15em; }
.pillar h3 { margin: 0; align-self: start; font-size: clamp(1.6rem, 2.2vw, 2.4rem); line-height: 1; letter-spacing: -.05em; }
.pillar p { margin: 0; color: var(--muted); font-size: .9rem; }
.pillar:hover p, .pillar:hover .pillar-number { color: inherit; }
.pillar ul { min-height: 0; margin: 0; padding: 1.5rem 0 0; align-content: start; display: flex; flex-wrap: wrap; gap: .5rem; border-top: 1px solid currentColor; list-style: none; }
.pillar li { padding: .35rem .6rem; border: 1px solid currentColor; border-radius: 99px; font-size: .62rem; letter-spacing: .07em; text-transform: uppercase; }

.work { background: var(--paper); }
.project-list { border-top: 1px solid var(--ink); }
.project { position: relative; min-height: 280px; padding: 2rem 4.5rem 2rem 0; display: grid; grid-template-columns: .55fr 1.5fr .55fr; align-items: start; gap: 2rem; border-bottom: 1px solid var(--line); transition: padding .3s, background .3s; }
.project:hover { padding-left: 1.5rem; background: var(--paper-deep); }
.project-featured { border-top: 8px solid var(--ink); }
.project-future { color: var(--paper); background: var(--ink); border: 0; margin-top: 2rem; padding-left: 2rem; }
.project-future:hover { background: #282820; }
.project-meta { display: flex; gap: 1rem; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.project-body h3 { max-width: 750px; margin: 0; font-size: clamp(1.8rem, 3.2vw, 3.6rem); line-height: 1.04; letter-spacing: -.05em; }
.project-body p { max-width: 700px; margin: 1.4rem 0 0; color: var(--muted); }
.project-future .project-body p { color: rgba(243,240,232,.65); }
.project-impact { align-self: end; display: flex; flex-direction: column; }
.project-impact strong { font-size: clamp(2rem, 3vw, 3.6rem); line-height: 1; letter-spacing: -.06em; }
.project-impact span { margin-top: .55rem; color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.project-future .project-impact span { color: rgba(243,240,232,.55); }
.project-link { position: absolute; right: 1rem; top: 2rem; display: flex; align-items: center; gap: .55rem; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.project-link > span { font-size: 1.2rem; transition: transform .25s; }
.project:hover .project-link > span { transform: translate(.25rem, -.25rem); }
.project-future .project-link { color: var(--acid); }

.philosophy { position: relative; overflow: hidden; padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 7vw, 8rem); display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: clamp(3rem, 8vw, 9rem); color: var(--paper); background: var(--ink); }
.philosophy h2 { font-size: clamp(3rem, 6.2vw, 7rem); }
.philosophy-copy > p:last-child { max-width: 720px; margin: 3rem 0 0; color: rgba(243,240,232,.65); font-size: 1.1rem; }
.philosophy-mark { position: absolute; right: 1vw; top: -13vw; color: rgba(217,255,67,.07); font-family: Georgia, serif; font-size: 50vw; line-height: 1; }
.principles { position: relative; z-index: 1; margin: 2rem 0 0; padding: 0; border-top: 1px solid rgba(243,240,232,.25); list-style: none; }
.principles li { position: relative; width: calc(100% - 4.5rem); padding: 1.3rem 0 1.3rem 2.25rem; display: grid; grid-template-columns: 1fr; border-bottom: 1px solid rgba(243,240,232,.25); }
.principles li:nth-child(2) { margin-left: 1.5rem; }
.principles li:nth-child(3) { margin-left: 3rem; }
.principles li:nth-child(4) { margin-left: 4.5rem; }
.principle-mark { position: absolute; left: 0; top: 50%; width: 10px; height: 10px; border: 2px solid var(--acid); transform: translateY(-50%) rotate(45deg); }

.about { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); align-items: start; gap: clamp(3rem, 7vw, 8rem); }
.about-label { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: baseline; gap: 2rem; }
.about-label span { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.about-portrait { position: relative; min-width: 0; margin: 0; overflow: hidden; aspect-ratio: 3 / 4; background: var(--paper-deep); }
.about-portrait::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(23,23,18,.12); pointer-events: none; }
.about-portrait img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about-copy h2 { margin: 0 0 3rem; font-size: clamp(3.2rem, 6.3vw, 7rem); line-height: .9; letter-spacing: -.07em; }
.about-copy > p { max-width: 760px; color: var(--muted); font-size: clamp(1rem, 1.25vw, 1.12rem); line-height: 1.7; }
.about-mantra { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(3, 1fr); color: var(--paper); background: var(--ink); }
.about-mantra span { min-height: 116px; padding: 1.4rem; display: flex; align-items: flex-end; border-right: 1px solid rgba(243,240,232,.22); font-size: clamp(1.05rem, 1.55vw, 1.35rem); font-weight: 700; line-height: 1.15; }
.about-mantra span:last-child { color: var(--ink); background: var(--acid); border-right: 0; }
.community { grid-column: 1 / -1; margin-top: clamp(1rem, 3vw, 3rem); padding-top: clamp(3rem, 6vw, 6rem); display: grid; grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr); gap: clamp(3rem, 7vw, 8rem); border-top: 1px solid var(--ink); }
.community-heading h3 { max-width: 480px; margin: 2rem 0; font-size: clamp(2.4rem, 4.5vw, 5rem); line-height: .96; letter-spacing: -.06em; }
.community-heading > p:last-child { max-width: 460px; color: var(--muted); }
.community-list { border-top: 1px solid var(--line); }
.community-role { position: relative; padding: 2rem 4rem 2rem 0; display: grid; gap: 1rem; border-bottom: 1px solid var(--line); transition: padding .25s, background .25s; }
.community-role:hover { padding-left: 1.25rem; background: var(--paper-deep); }
.community-title { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.community-role strong { max-width: 760px; font-size: clamp(1.45rem, 2.4vw, 2.5rem); line-height: 1.08; letter-spacing: -.04em; }
.community-role p { max-width: 720px; margin: 0; color: var(--muted); font-size: .95rem; }
.community-arrow { position: absolute; right: 1rem; top: 2rem; font-size: 1.35rem; transition: transform .2s; }
.community-role:hover .community-arrow { transform: translate(.25rem, -.25rem); }

.connect { padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 7vw, 8rem); color: var(--ink); background: var(--acid); }
.connect h2 { max-width: 1250px; font-size: clamp(3.5rem, 8vw, 9rem); }
.connect h2 em { color: var(--ink); }
.connect-intro { max-width: 730px; margin: 3rem 0 0; font-size: 1.1rem; }
.contact-grid { margin-top: 5rem; padding-top: 3rem; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: clamp(3rem, 8vw, 8rem); border-top: 1px solid rgba(23,23,18,.3); }
.contact-form-wrap h3 { margin: 0 0 2.5rem; font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -.04em; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-form label { display: grid; gap: .6rem; }
.contact-form label > span { font-size: .67rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: .9rem 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid rgba(23,23,18,.45); border-radius: 0; font: inherit; outline: none; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--ink); box-shadow: 0 2px 0 var(--ink); }
.contact-form .form-message { grid-column: 1 / -1; }
.contact-form .button { width: max-content; margin-top: .5rem; }
.honey { position: absolute !important; left: -9999px !important; }
.contact-direct { border-top: 1px solid rgba(23,23,18,.45); }
.contact-direct-label { margin: 0; padding: 1rem 0; color: rgba(23,23,18,.62); font-size: .67rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-direct > a, .contact-future { padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; border-top: 1px solid rgba(23,23,18,.25); }
.contact-direct > a:last-of-type { border-bottom: 1px solid rgba(23,23,18,.25); }
.contact-direct strong, .contact-direct small { display: block; }
.contact-direct strong { font-size: 1rem; }
.contact-direct small { margin-top: .25rem; color: rgba(23,23,18,.62); }
.contact-direct > a > span:last-child { font-size: 1.4rem; transition: transform .2s; }
.contact-direct > a:hover > span:last-child { transform: translate(.2rem, -.2rem); }
.contact-future { color: rgba(23,23,18,.48); border-bottom: 1px solid rgba(23,23,18,.25); }
.button-light { color: var(--paper); background: var(--ink); }
.button-light:hover { color: var(--ink); background: var(--paper); }

.site-footer { padding: 2rem clamp(1.25rem, 3vw, 3rem); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; color: var(--paper); background: var(--ink); }
.site-footer p { margin: 0; color: rgba(243,240,232,.5); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer p:last-child { justify-self: end; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { position: fixed; inset: 68px 0 auto; padding: 2rem; display: none; flex-direction: column; gap: 1.5rem; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { justify-self: end; width: 42px; height: 42px; padding: 10px; display: flex; flex-direction: column; justify-content: center; gap: 7px; color: inherit; border: 0; background: transparent; }
  .nav-toggle span:not(.sr-only) { display: block; width: 100%; height: 1px; background: currentColor; transition: transform .2s; }
  .nav-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .project { grid-template-columns: .55fr 1.45fr; }
  .project-impact { grid-column: 2; }
  .about { grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr); gap: 3rem; }
  .community { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 700px) {
  .site-header { height: 68px; padding: 0 1.25rem; }
  .brand-name { font-size: .86rem; }
  .hero { min-height: 820px; padding: 8.5rem 1.25rem 4rem; align-items: center; }
  .hero h1 { font-size: clamp(3.5rem, 16vw, 5rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.4rem; }
  .hero-scroll { display: none; }
  .orbit-one { width: 120vw; height: 120vw; right: -70vw; }
  .orbit-two { width: 75vw; height: 75vw; right: -40vw; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { min-height: 190px; padding: 1.5rem; }
  .metric strong { font-size: 2.8rem; }
  .section { padding: 5.5rem 1.25rem; }
  .section-heading { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3.5rem; }
  .section-heading .eyebrow { grid-column: 1; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { min-height: 410px; grid-template-rows: 1fr auto auto auto; }
  .pillar h3 { margin-top: 3rem; }
  .pillar p { margin-top: 1.4rem; }
  .pillar ul { min-height: 0; margin-top: 1.5rem; }
  .project { min-height: 0; padding: 1.75rem 3rem 1.75rem 0; grid-template-columns: 1fr; gap: 1.5rem; }
  .project:hover { padding-left: .75rem; }
  .project-meta { padding-right: .5rem; }
  .project-impact { grid-column: 1; }
  .project-future { padding-left: 1.25rem; }
  .project-link { position: static; width: max-content; padding-bottom: .2rem; border-bottom: 1px solid currentColor; }
  .philosophy { padding: 5.5rem 1.25rem; grid-template-columns: 1fr; }
  .principles li, .principles li:nth-child(2), .principles li:nth-child(3), .principles li:nth-child(4) { width: 100%; margin-left: 0; }
  .about { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-label { grid-column: 1; align-items: flex-start; flex-direction: column; gap: .75rem; }
  .about-portrait { max-height: 720px; }
  .about-copy h2 { font-size: clamp(3.1rem, 14vw, 5.2rem); }
  .about-mantra { grid-template-columns: 1fr; }
  .about-mantra span { min-height: 86px; border-right: 0; border-bottom: 1px solid rgba(243,240,232,.22); }
  .about-mantra span:last-child { border-bottom: 0; }
  .community { grid-column: 1; }
  .community-role { padding-right: 3rem; }
  .connect { padding: 5.5rem 1.25rem; }
  .contact-grid { margin-top: 3rem; grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .form-message { grid-column: 1; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer p:last-child { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.thanks-page { min-height: 100svh; color: var(--paper); background: var(--ink); }
.thanks-card { min-height: 100svh; padding: clamp(2rem, 5vw, 5rem); display: flex; flex-direction: column; justify-content: space-between; }
.thanks-card > div { margin: clamp(5rem, 12vh, 10rem) 0 auto; }
.thanks-card h1 { max-width: 1100px; margin: 0; font-size: clamp(3.8rem, 9vw, 9rem); line-height: .88; letter-spacing: -.07em; }
.thanks-card p:not(.eyebrow) { max-width: 560px; margin: 2rem 0; color: rgba(243,240,232,.68); font-size: 1.1rem; }

/* Case studies */
.case-hero { min-height: 88svh; padding: clamp(9rem, 17vh, 13rem) clamp(1.25rem, 7vw, 8rem) 5rem; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(250px, .55fr); align-items: end; gap: clamp(3rem, 8vw, 8rem); color: var(--paper); background: var(--ink); }
.case-hero-copy { max-width: 1100px; }
.case-back { display: inline-block; margin-bottom: 3rem; color: rgba(243,240,232,.6); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.case-back:hover { color: var(--acid); }
.case-hero h1 { margin: 0; font-size: clamp(3.5rem, 7.4vw, 8rem); line-height: .9; letter-spacing: -.07em; }
.case-summary { max-width: 760px; margin: 2.5rem 0 0; color: rgba(243,240,232,.7); font-size: clamp(1.05rem, 1.6vw, 1.4rem); line-height: 1.55; }
.case-stat { padding: 2rem 0 2rem 2rem; border-left: 1px solid rgba(243,240,232,.28); }
.case-stat strong { display: block; font-size: clamp(3.3rem, 6vw, 6.5rem); line-height: .9; letter-spacing: -.07em; }
.case-stat span { display: block; max-width: 210px; margin-top: 1rem; color: rgba(243,240,232,.6); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.case-main { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 7vw, 8rem); }
.case-section { padding: clamp(5rem, 9vw, 9rem) 0; display: grid; grid-template-columns: minmax(160px, .35fr) minmax(0, 1fr); gap: clamp(2rem, 8vw, 9rem); border-bottom: 1px solid var(--line); }
.case-section-label { margin: .5rem 0 0; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.case-section-copy { max-width: 900px; }
.case-section-copy h2 { margin: 0 0 2rem; font-size: clamp(2.4rem, 5vw, 5.3rem); line-height: .95; letter-spacing: -.06em; }
.case-section-copy > p { max-width: 780px; margin: 0 0 1.4rem; color: var(--muted); font-size: clamp(1rem, 1.25vw, 1.16rem); line-height: 1.7; }
.case-list { margin: 3rem 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); list-style: none; }
.case-list li { min-height: 92px; padding: 1.25rem 1.25rem 1.25rem 0; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: .86rem; font-weight: 700; }
.case-list li:nth-child(odd) { border-right: 1px solid var(--line); }
.case-list li:nth-child(even) { padding-left: 1.25rem; }
.case-outcome { margin: clamp(5rem, 9vw, 9rem) 0; padding: clamp(3rem, 6vw, 6rem); color: var(--ink); background: var(--acid); }
.case-outcome .eyebrow { margin-bottom: 3rem; }
.case-outcome blockquote { max-width: 1100px; margin: 0; font-size: clamp(2.4rem, 5.5vw, 6rem); font-weight: 700; line-height: .96; letter-spacing: -.06em; }
.case-outcome p { max-width: 720px; margin: 2.5rem 0 0; font-size: 1.05rem; }
.case-next { padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 7vw, 8rem); display: flex; justify-content: space-between; align-items: center; gap: 2rem; color: var(--paper); background: var(--ink); }
.case-next span { display: block; color: rgba(243,240,232,.55); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.case-next strong { display: block; margin-top: .5rem; font-size: clamp(1.5rem, 3vw, 3rem); letter-spacing: -.04em; }
.case-next-arrow { color: var(--acid); font-size: clamp(2rem, 4vw, 4rem); transition: transform .2s; }
.case-next:hover .case-next-arrow { transform: translateX(.5rem); }

@media (max-width: 800px) {
  .case-hero { min-height: 820px; grid-template-columns: 1fr; align-content: end; }
  .case-stat { padding: 1.5rem 0 0; border-top: 1px solid rgba(243,240,232,.28); border-left: 0; }
  .case-section { grid-template-columns: 1fr; gap: 1.5rem; }
  .case-list { grid-template-columns: 1fr; }
  .case-list li:nth-child(odd) { border-right: 0; }
  .case-list li:nth-child(even) { padding-left: 0; }
}
