/* ─────────────────────────────────────────
   pmatta.design — Stylesheet v4
   24px base · All sizes scaled proportionally
──────────────────────────────────────────*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; cursor: none !important; }
:root {
  --paper:  #F8F4ED;
  --paper2: #F2EBE0;
  --paper3: #EAE0D0;
  --ink:    #100E09;
  --ink08:  rgba(16,14,9,.08);
  --ink14:  rgba(16,14,9,.14);
  --ink24:  rgba(16,14,9,.24);
  --ink32:  rgba(16,14,9,.32);
  --ink42:  rgba(16,14,9,.42);
  --ink58:  rgba(16,14,9,.58);
  --ink75:  rgba(16,14,9,.75);
  --rust:   #8B4A2A;
  --green:  #4A7A3A;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --mono:   'Courier New', monospace;
  --nav-h:  64px;
  --pad:    clamp(28px, 5vw, 64px);
}
*, *::before, *::after {
  cursor: none !important;
}
a, a:hover, a:visited, a:active,
button, input, select, textarea, label {
  cursor: none !important;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 26px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
#nav {
  position: sticky; top: 0; z-index: 200; height: var(--nav-h);
  background: rgba(248,244,237,.55); backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8); border-bottom: .5px solid var(--ink14);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 var(--pad);
}
.nav-wordmark {
  font-family: var(--serif); font-size: 22px;
  color: var(--ink); letter-spacing: 0; text-decoration: none;
  position: relative; padding-bottom: 2px;
}
.nav-wordmark::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: .5px; background: var(--ink);
  transition: width .3s ease;
}
.nav-wordmark:hover::after { width: 100%; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink58); text-decoration: none;
  position: relative; padding-bottom: 2px; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: .5px; background: var(--rust); transition: width .3s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { width: 100%; background: var(--ink24); }
.nav-avail {
  font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink58); text-decoration: none;
  position: relative; padding-bottom: 2px;
  background: none; border: none; font-family: var(--sans);
  display: flex; align-items: center; gap: 7px;
  transition: color .2s;
}
.nav-avail::after { content: none; }
.avail-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: breathe 2.4s ease-in-out infinite;
}
@keyframes breathe { 0%,100%{opacity:.55;transform:scale(1)} 50%{opacity:1;transform:scale(1.35)} }
.section { position: relative; z-index: 1; padding: 60px var(--pad); }
.section--alt  { background: var(--paper2); }
.section--deep { background: var(--paper3); }
.section--border { border-bottom: .5px solid var(--ink14); }
.sec-num {
  font-family: var(--serif); font-size: clamp(130px,18vw,200px);
  line-height: 1; color: rgba(16,14,9,.052);
  pointer-events: none; user-select: none;
  letter-spacing: -.05em; position: absolute;
}
.sec-tag { font-size: 14px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink58); }
.btn {
  display: inline-block; background: var(--ink); color: var(--paper);
  font-family: var(--sans); font-size: 14.5px; letter-spacing: .14em;
  text-transform: uppercase; padding: 16px 30px;
  border: none; cursor: none; text-decoration: none;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; background: var(--rust);
  transform: translateX(-101%); transition: transform .3s ease;
}
.btn:hover::after { transform: translateX(0); }
.btn span { position: relative; z-index: 1; }
.btn--ghost {
  background: transparent; color: var(--ink58);
  font-size: 14.5px; letter-spacing: .1em; text-transform: uppercase;
  border: none; cursor: none; padding-bottom: 2px;
  border-bottom: .5px solid var(--ink24);
  transition: color .2s, border-color .2s; text-decoration: none;
}
.btn--ghost:hover { color: var(--rust); border-color: var(--rust); }
.cs-link { font-size: 14.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink58); border-bottom: .5px solid var(--ink24); padding-bottom: 2px; display: inline-block; transition: color .2s, border-color .2s; }
.cs-card:hover .cs-link { color: var(--rust); border-color: var(--rust); }
#footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px var(--pad); border-top: .5px solid var(--ink14);
  background: var(--paper); position: relative; z-index: 1;
  flex-wrap: wrap; gap: 14px;
}
.footer-l { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink58); }
.footer-r { display: flex; gap: 22px; }
.footer-r a {
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink58); text-decoration: none; transition: color .2s;
}
.footer-r a:hover { color: var(--ink); }
.marquee-wrap { overflow: hidden; background: var(--ink); padding: 10px 0; user-select: none; }
.marquee-track { display: flex; white-space: nowrap; will-change: transform; }
.marquee-track span {
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(248,244,237,.70); padding: 0 32px; user-select: none;
}
.marquee-track span.dot { color: rgba(248,244,237,.10); }
.hero-eyebrow { font-size: 14px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink58); margin-bottom: 24px; }
#headline {
  font-family: var(--serif); font-size: clamp(56px, 8vw, 88px);
  line-height: 1.04; font-weight: 400; letter-spacing: -.03em;
  color: var(--ink); cursor: default;
}
#headline .rust { color: var(--rust); font-style: italic; }
.hero-desc { font-size: 19.5px; line-height: 1.76; color: var(--ink75); max-width: 560px; margin-top: 26px; }
.hero-ctas { display: flex; gap: 22px; align-items: center; margin-top: 32px; }
.hero-stats {
  display: flex; gap: 44px; padding-top: 30px; padding-bottom: 30px;
  border-top: .5px solid var(--ink14); margin-top: 34px;
}
.stat-n { font-family: var(--serif); font-size: 52px; color: var(--ink); font-weight: 400; line-height: 1; }
.stat-l { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink58); margin-top: 7px; }
#home-services {
  padding: 60px var(--pad) 60px calc(var(--pad) + 96px);
  border-bottom: .5px solid var(--ink14); background: var(--paper2); position: relative;
}
#home-services .sec-num { top: -24px; left: -10px; }
.svc-list { display: flex; flex-direction: column; margin-top: 24px; }
.svc {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 20px 0; border-bottom: .5px solid var(--ink14);
  cursor: none; position: relative; text-decoration: none; transition: padding .2s;
}
.svc::before {
  content: ''; position: absolute;
  left: calc(-1 * (var(--pad) + 96px)); top: 50%;
  width: 0; height: .5px; background: var(--rust);
  transform: translateY(-50%); transition: width .28s ease;
}
.svc:hover { padding-left: 14px; }
.svc:hover::before { width: calc(var(--pad) + 80px); }
.svc:hover .svc-name { color: var(--rust); }
.svc:hover .svc-price { color: var(--rust); }
.svc-name { font-family: var(--serif); font-size: 25px; color: var(--ink); font-style: italic; font-weight: 400; transition: color .2s; }
.svc-right { text-align: right; }
.svc-price { font-size: 18.5px; font-weight: 500; color: var(--ink75); display: block; transition: color .2s; }
.svc-dur { font-size: 14px; color: var(--ink58); }
.svc-note { font-size: 18.5px; line-height: 1.7; color: var(--ink58); margin-top: 24px; }
#home-work { padding: 60px var(--pad); border-bottom: .5px solid var(--ink14); position: relative; }
#home-work .sec-num { top: -24px; right: var(--pad); left: auto; }
.work-item {
  display: flex; gap: 0; padding: 22px 0;
  border-bottom: .5px solid var(--ink14); cursor: none;
  align-items: baseline; text-decoration: none; transition: padding .2s;
}
.work-item:hover { padding-left: 8px; }
.work-item:hover .work-title { color: var(--rust); }
.work-n {
  font-family: var(--serif); font-size: clamp(44px,6vw,66px);
  color: rgba(16,14,9,.08); line-height: 1; min-width: 86px;
  flex-shrink: 0; letter-spacing: -.03em;
}
.work-body { flex: 1; }
.work-title { font-size: 19px; color: var(--ink); margin-bottom: 5px; transition: color .2s; font-weight: 400; }
.work-sub { font-size: 15px; color: var(--ink58); line-height: 1.52; }
.work-tag { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink58); padding-left: 26px; align-self: center; flex-shrink: 0; transition: color .2s, transform .2s; }
.work-arrow { font-size: 19px; color: var(--ink24); padding-left: 16px; align-self: center; flex-shrink: 0; transition: color .2s, transform .2s; }
.work-item:hover .work-arrow { color: var(--rust); transform: translateX(4px); }
.work-item:hover .work-tag { color: var(--rust); transform: translateX(4px); }
#home-about {
  padding: 60px var(--pad);
  border-bottom: .5px solid var(--ink14);
  background: var(--paper2); position: relative;
}
#home-about .about-left { max-width: 680px; }
#home-about .sec-num { top: -24px; left: -10px; }
.about-quote {
  font-family: var(--serif); font-size: 32px; line-height: 1.42;
  color: var(--ink); font-style: italic;
  border-left: 2px solid var(--rust); padding-left: 24px; margin-bottom: 28px;
}
.about-body { font-size: 18.5px; line-height: 1.78; color: var(--ink75); margin-bottom: 18px; }
.cred-list { display: flex; flex-direction: column; gap: 0; margin-top: 18px; }
.cred { font-size: 18.5px; line-height: 1.62; color: var(--ink75); padding: 14px 0; border-bottom: .5px solid var(--ink14); }
.cred:first-child { border-top: .5px solid var(--ink14); }
#home-contact {
  padding: 84px var(--pad) 72px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 22px; position: relative; background: var(--paper3);
  overflow: hidden;
}
.hc-strip {
  display: flex; align-items: center; gap: 20px;
  width: calc(100% + var(--pad) * 2);
  padding: 28px var(--pad); margin-top: 16px;
  background: var(--paper2); border-top: .5px solid var(--ink14);
  text-align: left; position: relative; z-index: 1;
}
.hc-sig-photo {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  flex-shrink: 0; display: block;
}
.hc-sig-text { display: flex; flex-direction: column; gap: 4px; }
.hc-name { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--ink); line-height: 1.2; }
.hc-bio { font-family: var(--sans); font-size: 15px; line-height: 1.65; color: var(--ink58); max-width: 480px; }
@media (max-width: 1080px) and (min-width: 641px) {
  #home-contact.hc-e { padding-top: 80px; }
  .hc-strip { gap: 16px; padding: 24px var(--pad); }
  .hc-sig-photo { width: 48px; height: 48px; }
}
@media (max-width: 640px) {
  #home-contact.hc-e { padding-top: 60px; gap: 18px; }
  .hc-strip { gap: 14px; padding: 20px var(--pad); margin-top: 10px; }
  .hc-sig-photo { width: 42px; height: 42px; }
  .hc-name { font-size: 16px; }
  .hc-bio { font-size: 13.5px; }
}
.contact-big-num {
  font-family: var(--serif); font-size: clamp(140px,21vw,280px);
  line-height: 1; color: rgba(16,14,9,.042);
  position: absolute; top: -24px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; pointer-events: none; user-select: none; letter-spacing: -.04em;
}
.contact-big {
  font-family: var(--serif); font-size: clamp(46px,7.5vw,72px);
  line-height: 1.1; font-weight: 400; letter-spacing: -.03em;
  color: var(--ink); font-style: italic; position: relative; z-index: 1;
}
.contact-sub { font-size: 18.5px; line-height: 1.74; color: var(--ink75); max-width: 400px; position: relative; z-index: 1; }
.contact-email { font-size: 17.5px; color: var(--ink58); font-family: var(--mono); cursor: none; position: relative; z-index: 1; transition: color .2s; text-decoration: none; }
.contact-email:hover { color: var(--rust); }
.work-page-header { padding: 60px var(--pad) 48px; border-bottom: .5px solid var(--ink14); position: relative; }
.work-page-header .sec-num { top: -14px; right: var(--pad); left: auto; }
.page-title { font-family: var(--serif); font-size: clamp(50px,7.5vw,76px); font-weight: 400; letter-spacing: -.03em; color: var(--ink); margin-bottom: 18px; }
.page-sub { font-size: 18.5px; line-height: 1.76; color: var(--ink75); max-width: 620px; }
.cs-card { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); gap: 0; border-bottom: .5px solid var(--ink14); text-decoration: none; transition: background .2s; }
.cs-card:hover { background: var(--paper2); }
.cs-card--alt { background: var(--paper); }
.cs-card--alt:hover { background: var(--paper2); }
.cs-left { padding: 52px var(--pad); border-right: .5px solid var(--ink14); display: flex; flex-direction: column; justify-content: space-between; }
.cs-num { font-family: var(--serif); font-size: 110px; color: rgba(16,14,9,.062); line-height: 1; letter-spacing: -.04em; user-select: none; margin-bottom: 20px; }
.cs-context { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink58); margin-bottom: 14px; }
.cs-title { font-family: var(--serif); font-size: clamp(28px,4.2vw,42px); font-weight: 400; letter-spacing: -.02em; color: var(--ink); line-height: 1.2; margin-bottom: 20px; }
.cs-desc { font-size: 17.5px; line-height: 1.76; color: var(--ink75); max-width: 88%; margin-bottom: 30px; }
.cs-right { padding: 52px var(--pad); display: flex; flex-direction: column; justify-content: space-between; }
.cs-metrics { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.cs-metric { padding: 18px 0; border-bottom: .5px solid var(--ink14); }
.cs-metric:first-child { border-top: .5px solid var(--ink14); }
.cs-metric-n { font-family: var(--serif); font-size: 43px; color: var(--ink); font-weight: 400; line-height: 1; margin-bottom: 5px; }
.cs-metric-l { font-size: 14px; color: var(--ink58); }
.cs-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.cs-tag { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink58); border: .5px solid var(--ink24); padding: 6px 11px; }
.short-work { padding: 52px var(--pad); border-bottom: .5px solid var(--ink14); position: relative; }
.short-work .sec-num { top: -20px; left: -10px; }
.short-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; background: transparent; margin-top: 24px; border-top: .5px solid var(--ink14); border-left: .5px solid var(--ink14); }
.short-item { background: var(--paper); padding: 26px; border-right: .5px solid var(--ink14); border-bottom: .5px solid var(--ink14); }


.short-context { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink58); margin-bottom: 11px; }
.short-title { font-size: 16.5px; color: var(--ink); margin-bottom: 8px; transition: color .2s; line-height: 1.4; }
.short-result { font-size: 14.5px; color: var(--ink58); line-height: 1.55; font-style: italic; }
.cs-hero { padding: 68px var(--pad) 56px; background: var(--paper2); position: relative; }
.cs-hero-context { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink58); margin-bottom: 22px; }
.cs-hero-title { font-family: var(--serif); font-size: clamp(36px,6.5vw,76px); font-weight: 400; letter-spacing: -.03em; color: var(--ink); line-height: 1.08; margin-bottom: 26px; max-width: 900px; white-space: normal; }
.cs-hero-desc { font-size: 18.5px; line-height: 1.78; color: var(--ink75); max-width: 640px; }
.cs-meta-bar { display: flex; gap: 0; border-top: .5px solid var(--ink14); border-bottom: .5px solid var(--ink14); margin-top: 40px; }
.cs-meta-item { flex: 1; padding: 20px 24px 20px 0; }
.cs-meta-item:first-child { padding-left: 0; }
.cs-meta-label { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink58); margin-bottom: 10px; }
.cs-meta-value { font-size: 17.5px; color: var(--ink); }
.cs-outcomes { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); background: var(--ink); justify-content: center; }
.cs-outcome { padding: 36px var(--pad); text-align: center; }
.cs-outcome-n { font-family: var(--serif); font-size: 54px; color: var(--paper); font-weight: 400; margin-bottom: 8px; }
.cs-outcome-l { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: rgba(248,244,237,.58); }
.cs-body { padding: 60px var(--pad); border-bottom: .5px solid var(--ink14); }
.cs-body-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,2.4fr); gap: 64px; }
.cs-sidebar-label { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink58); margin-bottom: 12px; margin-top: 36px; }
.cs-sidebar-label:first-child { margin-top: 0; }
.cs-sidebar-value { font-size: 18.5px; line-height: 1.65; color: var(--ink75); }
.cs-content { max-width: 960px; }
.cs-section-head { font-family: var(--serif); font-size: 32px; font-weight: 400; color: var(--ink); letter-spacing: -.01em; margin-bottom: 18px; margin-top: 44px; }
.cs-section-head:first-child { margin-top: 0; }
.cs-p { font-size: 18.5px; line-height: 1.82; color: var(--ink75); margin-bottom: 18px; max-width: 840px; }
.cs-image-placeholder { width: 100%; aspect-ratio: 16/9; background: var(--paper3); border: .5px solid var(--ink14); display: flex; align-items: center; justify-content: center; margin: 32px 0; }
.cs-image-placeholder span { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink58); }
.cs-image-caption { font-size: 14px; color: var(--ink58); margin-top: 10px; margin-bottom: 20px; font-style: italic; line-height: 1.5; }
.services-header { padding: 60px var(--pad) 48px; border-bottom: .5px solid var(--ink14); position: relative; }
.services-header .sec-num { top: -14px; right: var(--pad); left: auto; }
.service-block { padding: 56px var(--pad); border-bottom: .5px solid var(--ink14); position: relative; }
.service-block--alt { background: var(--paper2); }
.service-title { font-family: var(--serif); font-size: clamp(30px,4.5vw,48px); font-weight: 400; letter-spacing: -.02em; color: var(--ink); font-style: italic; margin-bottom: 20px; margin-top: 14px; }
.service-when { font-size: 17.5px; line-height: 1.76; color: var(--ink75); margin-bottom: 0; padding-left: 22px; border-left: 2px solid var(--ink24); }
.service-delivers-label { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink58); margin-bottom: 12px; }
.delivers-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.delivers-list li { font-size: 17.5px; line-height: 1.62; color: var(--ink75); padding-left: 22px; position: relative; }
.delivers-list li::before { content: '—'; position: absolute; left: 0; color: var(--rust); font-size: 15px; }
.service-meta { display: flex; flex-direction: column; gap: 0; border-top: .5px solid var(--ink14); margin-top: 32px; }
.service-meta-row { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: .5px solid var(--ink14); }
.service-meta-label { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink58); }
.service-meta-value { font-size: 17.5px; color: var(--ink); }
.service-meta-value strong { color: var(--rust); font-weight: 500; }
.process-section { padding: 60px var(--pad); border-bottom: .5px solid var(--ink14); background: var(--paper2); position: relative; }
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.process-step { display: grid; grid-template-columns: 62px 1fr; gap: 26px; padding: 24px 0; border-bottom: .5px solid var(--ink14); align-items: start; }
.process-step:last-child { border-bottom: none; }
.step-num { font-family: var(--serif); font-size: 41px; color: rgba(16,14,9,.18); line-height: 1; letter-spacing: -.02em; }
.step-title { font-size: 19.5px; font-weight: 500; color: var(--ink); margin-bottom: 7px; }
.step-body { font-size: 17.5px; line-height: 1.7; color: var(--ink75); }
.nonprofit-note { padding: 38px var(--pad); border-bottom: .5px solid var(--ink14); background: var(--paper3); display: flex; align-items: center; gap: 26px; }
.nonprofit-bar { width: 2px; height: 52px; background: var(--rust); flex-shrink: 0; }
.nonprofit-text { font-size: 18.5px; line-height: 1.7; color: var(--ink75); font-style: italic; font-family: var(--serif); }
.about-hero { padding: 68px var(--pad) 56px; border-bottom: .5px solid var(--ink14); position: relative; }
.about-hero .sec-num { top: -14px; right: var(--pad); left: auto; }
.about-opening { font-family: var(--serif); font-size: clamp(30px,4.8vw,52px); font-weight: 400; line-height: 1.28; color: var(--ink); letter-spacing: -.02em; max-width: 620px; margin-bottom: 32px; }
.about-opening em { color: var(--rust); font-style: italic; }
.about-grid { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(0,.7fr); gap: 68px; padding: 60px var(--pad); border-bottom: .5px solid var(--ink14); background: var(--paper2); position: relative; }
.about-grid .sec-num { top: -20px; left: -10px; }
.about-creds-section { padding: 56px var(--pad); border-bottom: .5px solid var(--ink14); position: relative; }
.about-creds-section .sec-num { top: -20px; right: var(--pad); left: auto; }
.creds-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; background: transparent; margin-top: 24px; border-top: .5px solid var(--ink14); border-left: .5px solid var(--ink14); }
.creds-item { background: var(--paper); padding: 26px; border-right: .5px solid var(--ink14); border-bottom: .5px solid var(--ink14); }
.creds-label { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink58); margin-bottom: 11px; }
.creds-value { font-size: 17.5px; line-height: 1.62; color: var(--ink); }
.contact-hero { padding: 82px var(--pad) 68px; border-bottom: .5px solid var(--ink14); position: relative; overflow: hidden; }
.contact-hero .sec-num { top: -20px; right: var(--pad); left: auto; }
.contact-detail-label { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink42); margin-bottom: 7px; margin-top: 28px; }
.contact-detail-label:first-child { margin-top: 0; }
.contact-detail-value { font-size: 19.5px; color: var(--ink); text-decoration: none; transition: color .2s; font-family: var(--mono); }
a.contact-detail-value:hover { color: var(--rust); }
@media (max-width: 900px) {
  .nav-avail { font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink58); text-decoration: none; position: relative; padding-bottom: 2px; background: none; border: none; font-family: var(--sans); display: flex; align-items: center; gap: 7px; transition: color .2s; }
  .nav-links { gap: 20px; }
  #hero { flex-direction: column; }
  .hero-body { padding-right: var(--pad); }
  #home-services { padding-left: var(--pad); }
  .svc::before { display: none; }
  .cs-card,.service-block,.about-grid,.cs-body-grid { grid-template-columns: 1fr; gap: 48px; }
  .cs-left { border-right: none; border-bottom: .5px solid var(--ink14); }
  .hero-stats { gap: 26px; }
  .cs-meta-bar { flex-wrap: wrap; }
  .cs-meta-item { flex: 1 0 45%; }
}
@media (max-width: 580px) {
  .nav-links { display: none; }
  #headline { font-size: 42px; }
}
@media (min-width: 1600px) { .short-grid { grid-template-columns: repeat(4,1fr); } .creds-grid { grid-template-columns: repeat(6,1fr); } }
@media (max-width: 1199px) and (min-width: 800px) { .short-grid { grid-template-columns: repeat(2,1fr);} .creds-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 799px) and (min-width: 480px) { .short-grid, .creds-grid { grid-template-columns: repeat(1,1fr); } }
@media (max-width: 479px) { .short-grid, .creds-grid { grid-template-columns: 1fr; } }
@media (max-width: 1079px) and (min-width: 640px) { .cs-meta-bar { flex-wrap: wrap; } .cs-meta-item { flex: 1 0 45%; padding-bottom: 16px; } }
@media (max-width: 640px) { .cs-meta-bar { flex-direction: column; } .cs-meta-item { flex: 1 0 100%; border-bottom: .5px solid var(--ink14); } .cs-meta-item:last-child { border-bottom: none; } }
.hl-pre { opacity: 0; filter: blur(6px); transform: translateY(5px); }
.hl-in { opacity: 1 !important; filter: blur(0px) !important; transform: translateY(0) !important; transition: opacity .65s ease, filter .65s ease, transform .65s ease !important; }
.sec-num-hidden { opacity: 0 !important; transform: translateY(12px) !important; transition: none !important; }
.sec-num-visible { opacity: 1 !important; transform: translateY(0) !important; transition: opacity .8s ease, transform .8s ease !important; }
.sec-num { font-size: clamp(130px,18vw,200px) !important; }
#cursor-dot {
  position: fixed; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink); transform: translate(-50%, -50%);
  left: -999px; top: -999px; z-index: 99999; pointer-events: none;
  will-change: left, top; transition: transform .12s ease, background .18s ease;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(16,14,9,.28); background: transparent;
  transform: translate(-50%, -50%); left: -999px; top: -999px;
  z-index: 99998; pointer-events: none; will-change: left, top;
  transition: width .22s ease, height .22s ease, border-color .22s ease, background .22s ease;
}
body.cursor-hover:not(.cursor-on-dark) #cursor-ring { width: 52px; height: 52px; border-color: rgba(139,74,42,.45); background: rgba(139,74,42,.05); }
body.cursor-hover:not(.cursor-on-dark) #cursor-dot { background: var(--rust); transform: translate(-50%,-50%) scale(.65); }
body.cursor-in-dark #cursor-ring { border-color: rgba(248,244,237,.45); background: transparent; }
body.cursor-in-dark #cursor-dot { background: var(--paper) !important; transform: translate(-50%,-50%) scale(1); }
body.cursor-on-dark #cursor-ring { width: 46px; height: 46px; border-color: rgba(248,244,237,.7); background: rgba(248,244,237,.06); }
body.cursor-on-dark #cursor-dot { background: var(--paper) !important; transform: translate(-50%,-50%) scale(.7); }
body.cursor-click.cursor-hover:not(.cursor-on-dark) #cursor-ring { width: 22px !important; height: 22px !important; border-color: rgba(139,74,42,.9) !important; background: rgba(139,74,42,.15) !important; }
body.cursor-click.cursor-hover:not(.cursor-on-dark) #cursor-dot { background: var(--rust) !important; transform: translate(-50%,-50%) scale(1.5) !important; }
body.cursor-click:not(.cursor-hover):not(.cursor-on-dark) #cursor-ring { width: 22px !important; height: 22px !important; border-color: rgba(139,74,42,.9) !important; background: rgba(139,74,42,.15) !important; }
body.cursor-click:not(.cursor-hover):not(.cursor-on-dark) #cursor-dot { background: var(--rust) !important; transform: translate(-50%,-50%) scale(1.5) !important; }
body.cursor-click.cursor-on-dark #cursor-ring { width: 22px !important; height: 22px !important; border-color: rgba(248,244,237,.9) !important; background: rgba(248,244,237,.12) !important; }
body.cursor-click.cursor-on-dark #cursor-dot { background: var(--paper) !important; transform: translate(-50%,-50%) scale(1.5) !important; }
body.cursor-click.cursor-in-dark #cursor-ring { width: 22px !important; height: 22px !important; border-color: rgba(248,244,237,.9) !important; background: rgba(248,244,237,.12) !important; }
body.cursor-click.cursor-in-dark #cursor-dot { background: var(--paper) !important; transform: translate(-50%,-50%) scale(1.5) !important; }
#page-content { opacity: 1; transform: translateY(0); transition: opacity .28s ease, transform .28s ease; }
#page-content.content-exiting { opacity: 0; transform: translateY(-10px); pointer-events: none; }
#page-content.content-entering { opacity: 0; transform: translateY(14px); transition: none; }
#page-content .will-enter { opacity: 0; transform: translateY(14px); transition: none; }
#page-content .will-enter.no-shift { transform: none; }
#page-content .did-enter { opacity: 1 !important; transform: translateY(0) !important; transition: opacity .55s ease, transform .55s ease !important; }
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.vis { opacity: 1; transform: translateY(0); }
.fade-right { opacity: 0; transform: translateX(22px); transition: opacity .52s ease, transform .52s ease; }
.fade-right.vis { opacity: 1; transform: translateX(0); }
.cs-card, .service-block, .cred, .creds-item, .process-step, .short-item { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.cs-card.vis, .service-block.vis, .cred.vis, .creds-item.vis, .process-step.vis, .short-item.vis { opacity: 1; transform: translateY(0); }
#hero { position: relative; padding: 64px var(--pad) 0px; border-bottom: .5px solid var(--ink14); overflow: visible; }
.hero-body { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; }
.hero-canvas-wrap { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none; overflow: hidden; opacity: 0; transition: opacity 2s ease 0.5s; }
.hero-canvas-wrap.canvas-ready { opacity: 1; }
#hero-canvas { display: block; width: 100%; height: 100%; }
#cursor-dot { position: fixed; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); transform: translate(-50%,-50%); left: -999px; top: -999px; z-index: 99999; pointer-events: none; will-change: left,top; transition: transform .12s ease, background .18s ease, opacity .15s ease; }
#cursor-ring { position: fixed; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(16,14,9,.28); background: transparent; transform: translate(-50%,-50%); left: -999px; top: -999px; z-index: 99998; pointer-events: none; will-change: left,top; transition: width .22s ease, height .22s ease, border-color .22s ease, background .22s ease, opacity .15s ease; }
body.cursor-on-dark #cursor-ring { width: 46px; height: 46px; border-color: rgba(248,244,237,.5); background: rgba(248,244,237,.06); }
body.cursor-on-dark #cursor-dot { background: var(--paper) !important; transform: translate(-50%,-50%) scale(.7); }
@media (max-width: 900px) { .hero-canvas-wrap { opacity: 0.6; } }
.marquee-wrap, #footer, #persistent-contact, .contact-big, .contact-big-num, .contact-sub, .contact-email { opacity: 1 !important; transform: none !important; }
body.cursor-on-marquee #cursor-ring { border-color: rgba(248,244,237,.4); background: transparent; }
body.cursor-on-marquee #cursor-dot { background: rgba(248,244,237,.7); }
.contact-big-num, .contact-big-num.will-enter, .contact-big-num.did-enter { transform: translateX(-50%) !important; }
.contact-big-num.will-enter { opacity: 0; }
.contact-big-num.did-enter { opacity: 1; transition: opacity .8s ease !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; z-index: 201; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile-menu { position: fixed; inset: 0; background: var(--paper); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 32px; opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .3s ease, transform .3s ease; display: flex; }
.nav-mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-mobile-menu a { font-family: var(--serif); font-size: 36px; font-weight: 400; color: var(--ink); text-decoration: none; letter-spacing: -.02em; font-style: italic; transition: color .2s; }
.nav-mobile-menu a:hover { color: var(--rust); }
.nav-mobile-menu .mobile-close { position: absolute; top: 20px; right: var(--pad); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink58); background: none; border: none; font-family: var(--sans); }
@media (max-width: 640px) { .nav-links { display: none; } .nav-hamburger { display: flex; } .nav-avail { font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink58); text-decoration: none; position: relative; padding-bottom: 2px; background: none; border: none; font-family: var(--sans); display: flex; align-items: center; gap: 7px; transition: color .2s; } }
@media (min-width: 641px) { .nav-avail { font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink58); text-decoration: none; position: relative; padding-bottom: 2px; background: none; border: none; font-family: var(--sans); display: flex; align-items: center; gap: 7px; transition: color .2s; } }
.nav-avail { position: relative; }
.nav-avail-tooltip { position: absolute; top: calc(100% + 10px); right: 0; background: var(--ink); color: var(--paper); padding: 14px 18px; min-width: 220px; opacity: 0; pointer-events: none; transform: translateY(-4px); transition: opacity .22s ease, transform .22s ease; z-index: 300; }
.nav-avail-tooltip::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-avail:hover .nav-avail-tooltip, .nav-avail:focus-within .nav-avail-tooltip { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-avail-tooltip p { font-size: 11px; line-height: 1.65; color: rgba(248,244,237,.7); margin-bottom: 12px; }
.nav-avail-tooltip a { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--paper); text-decoration: none; border-top: .5px solid rgba(248,244,237,.15); padding-top: 10px; margin-top: 2px; transition: color .2s; }
.nav-avail-tooltip a:hover { color: rgba(248,244,237,.6); }
@media (max-width: 1080px) { .cs-body-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 1080px) { #nav .nav-avail { display: none; } }
@media (max-width: 1080px) { .hero-avail-strip { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink58); margin-bottom: 18px; } .hero-avail-strip .avail-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: breathe 2.4s ease-in-out infinite; } }
.service-best-for { font-size: 17.5px; line-height: 1.72; color: var(--ink42); font-style: italic; margin-top: 0; margin-bottom: 28px; }
.service-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.service-dur-inline { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink58); font-weight: 500; }
.service-body-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; margin-top: 20px; align-items: start; }
.service-footer-bar { display: flex; justify-content: flex-end; margin-top: 24px; padding-top: 20px; border-top: .5px solid var(--ink14); }
.service-footer-bar .service-best-for { display: none; }
@media (max-width: 700px) { .service-body-grid { grid-template-columns: 1fr; gap: 24px; } }
.title-pre { opacity: 0; filter: blur(5px); transform: translateY(4px); }
.title-in { opacity: 1 !important; filter: blur(0px) !important; transform: translateY(0) !important; transition: opacity .6s ease, filter .6s ease, transform .6s ease !important; }
.service-left-note { margin-top: 20px; padding-top: 16px; border-top: .5px solid var(--ink14); }
.service-left-note p { font-size: 15px; line-height: 1.68; color: var(--ink42); font-style: italic; }
.hero-avail-strip { display: none; }
@media (max-width: 1080px) { .hero-avail-strip { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink58); font-family: var(--sans); margin-bottom: 12px; } .hero-avail-strip .avail-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: breathe 2.4s ease-in-out infinite; flex-shrink: 0; } }
#home-services .nonprofit-note { padding: 0; background: none; border: none; margin-top: 24px; }
.svc.vis, .svc.fade-right.vis { transition: padding .2s ease !important; }
.work-item.vis, .work-item.fade-up.vis { transition: padding .2s ease !important; }
.work-item.vis .work-title { transition: color .2s ease; }
.svc.vis .svc-name { transition: color .2s ease; }
.svc.vis .svc-dur { transition: none; }
.contact-link { display: inline-flex; align-items: center; gap: 6px; font-size: 19.5px; font-family: var(--mono); color: var(--ink); text-decoration: none; transition: color .2s; position: relative; padding-bottom: 2px; }
.contact-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: .5px; background: var(--rust); transition: width .25s ease; }
.contact-link:hover { color: var(--rust); }
.contact-link:hover::after { width: 100%; }
.contact-section { padding: 40px var(--pad); border-bottom: .5px solid var(--ink14); max-width: none; }
.contact-section:last-child { border-bottom: none; }
.contact-section:nth-child(even) { background: var(--paper3); }
.contact-section .about-body { max-width: 560px; }
.contact-section .contact-detail-label { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink42); margin-bottom: 7px; margin-top: 28px; }
.contact-section .contact-detail-label:first-of-type { margin-top: 8px; }
.contact-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); gap: 68px; padding: 60px var(--pad); border-bottom: .5px solid var(--ink14); background: var(--paper2); }
.cs-image { width: 100%; display: block; }
.cs-image-full { width: 100%; display: block; margin: 32px 0 0; }
.cs-principles { margin: 24px 0 32px; border-top: .5px solid var(--ink14); }
.cs-principle { display: grid; grid-template-columns: 200px 1fr; gap: 24px; padding: 16px 0; border-bottom: .5px solid var(--ink14); align-items: baseline; }
.cs-principle-label { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink58); }
.cs-principle-desc { font-size: 17px; line-height: 1.7; color: var(--ink75); }
.cs-iteration-table { width: 100%; border-left: .5px solid var(--ink14); border-right: .5px solid var(--ink14); margin: 24px 0 32px; }
.cs-iteration-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border-bottom: .5px solid rgba(16,14,9,.24); }
.cs-iteration-row.header-row { background: var(--paper2); border-top: .5px solid var(--ink14); border-bottom: .5px solid var(--ink14); }
.cs-iteration-cell { padding: 16px 20px; font-size: 16px; line-height: 1.65; color: var(--ink75); border-right: .5px solid var(--ink14); }
.cs-iteration-cell:last-child { border-right: none; }
.cs-iteration-cell.header { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink58); padding: 12px 20px; font-family: var(--sans); }
.cs-outcome-extra { flex: 1; padding: 36px var(--pad); text-align: center; }
.cs-outcome-extra:last-child { border-right: none; }
.cs-outcome-extra .cs-outcome-n { font-family: var(--serif); font-size: 54px; color: var(--paper); font-weight: 400; margin-bottom: 8px; }
.cs-outcome-extra .cs-outcome-l { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: rgba(248,244,237,.4); }
@media (max-width: 768px) { .cs-principle { grid-template-columns: 1fr; gap: 6px; } }
.cs-img-wrap { position: relative; cursor: none; margin: 20px 0 0; border-radius: 8px; overflow: hidden; transition: box-shadow .2s; }
.cs-img-wrap::before { content: ''; position: absolute; inset: 0; background: rgba(139,74,42,0); transition: background .2s; z-index: 1; pointer-events: none; }
.cs-img-wrap:hover::before { background: var(--ink32); }
.cs-img-wrap:hover { box-shadow: 0 0 0 2px var(--ink); }
.cs-img-wrap img { width: 100%; display: block; border-radius: 0; transition: opacity .15s; }
.cs-img-wrap:hover img { opacity: 1; }
.cs-img-wrap::after { content: ''; position: absolute; bottom: 12px; right: 12px; width: 36px; height: 36px; background: rgba(139,74,42,.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f8f4ed' stroke-width='2'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E") center/16px no-repeat; border-radius: 4px; opacity: 0; transition: opacity .2s; z-index: 3; }
.cs-img-wrap:hover::after { opacity: 1; }
/* ── Video play button overlay ── */
.cs-img-wrap .video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center; z-index: 4; opacity: 0; pointer-events: none; transition: opacity .2s; }
.cs-img-wrap .video-play-btn svg { width: 48px; height: 48px; transition: transform .2s; }
.cs-img-wrap.needs-play .video-play-btn { opacity: 1; }
.cs-img-wrap.needs-play { cursor: pointer; }
#cs-lightbox { position: fixed; inset: 0; background: rgba(16,14,9,.92); z-index: 9000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0; opacity: 0; pointer-events: none; transition: opacity .25s; }
#cs-lightbox.open { opacity: 1; pointer-events: auto; }
#cs-lightbox img { max-width: 90vw; max-height: 78vh; object-fit: contain; border-radius: 8px; display: block; }
#cs-lightbox video { max-width: 90vw; max-height: 78vh; border-radius: 8px; display: block; cursor: none; }
.cs-lb-close { position: absolute; top: 24px; right: 28px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(248,244,237,.55); background: none; border: none; cursor: pointer; font-family: var(--sans); transition: color .2s; }
.cs-lb-close:hover { color: var(--paper); }
.cs-lb-prev, .cs-lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(248,244,237,.42); font-size: 28px; cursor: pointer; padding: 16px; line-height: 1; font-family: var(--sans); transition: color .2s; }
.cs-lb-prev:hover, .cs-lb-next:hover { color: var(--paper); }
.cs-lb-prev { left: 16px; }
.cs-lb-next { right: 16px; }
.cs-lb-caption { font-size: 14px; color: rgba(248,244,237,.58); font-style: italic; font-family: var(--sans); text-align: center; margin-top: 12px; max-width: 80vw; line-height: 1.55; white-space: normal; }
#cs-lightbox { cursor: none; }
#cs-lightbox img { cursor: none; }
.cs-lb-close, .cs-lb-prev, .cs-lb-next { cursor: none; }
body.lb-open #cursor-dot { background: var(--paper) !important; }
body.lb-open #cursor-ring { border-color: rgba(248,244,237,.45) !important; background: transparent !important; width: 36px !important; height: 36px !important; }
body.lb-open.cursor-hover #cursor-ring { width: 46px !important; height: 46px !important; border-color: rgba(248,244,237,.7) !important; background: rgba(248,244,237,.06) !important; }
body.lb-open.cursor-hover #cursor-dot { background: var(--paper) !important; transform: translate(-50%,-50%) scale(.7) !important; }
body.lb-open.cursor-on-light-lb #cursor-dot { background: var(--ink) !important; }
body.lb-open.cursor-on-light-lb #cursor-ring { border-color: rgba(16,14,9,.35) !important; background: transparent !important; width: 36px !important; height: 36px !important; }
body.lb-open.cursor-on-light-lb.cursor-hover #cursor-ring { width: 46px !important; height: 46px !important; border-color: rgba(16,14,9,.5) !important; background: rgba(16,14,9,.04) !important; }
body.lb-open.cursor-on-light-lb.cursor-hover #cursor-dot { background: var(--ink) !important; transform: translate(-50%,-50%) scale(.7) !important; }
.back-to-top { position: fixed; bottom: 32px; right: max(32px, calc(var(--pad) - 32px)); font-size: 16px; letter-spacing: 0; font-family: var(--sans); color: var(--paper); background: var(--ink); border: .5px solid var(--ink); padding: 10px 14px; cursor: none; opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s, background .2s, border-color .2s; pointer-events: none; z-index: 500; text-decoration: none; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--rust); border-color: var(--rust); }
.cs-hero--split { position: relative; overflow: hidden; min-height: 560px; display: flex; align-items: flex-end; padding: 0; }
.cs-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; z-index: 0; }
.cs-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,8,5,.18) 0%, rgba(10,8,5,.55) 40%, rgba(10,8,5,.88) 100%); z-index: 1; }
.cs-hero-left { position: relative; z-index: 2; display: flex; flex-direction: column; padding: 68px var(--pad) 56px; width: 100%; max-width: 1100px; }
.cs-hero--split .cs-hero-context { color: rgba(248,244,237,.90); }
.cs-hero--split .cs-hero-title { color: var(--paper); }
.cs-hero--split .cs-hero-desc { color: rgba(248,244,237,.8); }
.cs-hero--split .cs-meta-bar { border-top-color: rgba(248,244,237,.3); border-bottom-color: rgba(248,244,237,.3); margin-top: 40px; }
.cs-hero--split .cs-meta-label { color: rgba(248,244,237,.58); }
.cs-hero--split .cs-meta-value { color: var(--paper); }
.cs-hero-right { display: none; }
@media (max-width: 640px) { .cs-hero--split { min-height: 460px; } .cs-hero-left { padding: 48px var(--pad) 40px; } }
.cs-hero--split .cs-meta-bar { margin-top: 36px; }
@media (max-width: 1080px) { .cs-hero--split { grid-template-columns: 1fr; gap: 32px; } .cs-hero-right { padding-top: 0; } }
.cs-hero--split { cursor: none; }
@media (max-width: 1079px) and (min-width: 640px) { .cs-outcomes { grid-template-columns: repeat(2,1fr); } .cs-outcome-n { font-size: 48px; } .cs-outcome { padding: 32px var(--pad); } .cs-outcome:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 50%; margin-inline: auto; } }
@media (max-width: 640px) { .cs-outcomes { grid-template-columns: 1fr; } .cs-outcome { padding: 28px var(--pad); } }
body.cursor-on-marquee #cursor-dot { background: var(--paper) !important; }
body.cursor-on-marquee #cursor-ring { border-color: rgba(248,244,237,.45) !important; }
@media (max-width: 640px) { .cs-principle { grid-template-columns: 1fr; gap: 8px; } }
@media (max-width: 640px) { .cs-iteration-table { border-right: none; border-left: none; } .cs-iteration-row { display: block; border-bottom: none; } .cs-iteration-row.header-row { display: none; } .cs-iteration-cell { display: block; border-right: none; border-top: none; border-bottom: .5px solid var(--ink14); padding: 14px 0; } .cs-iteration-cell::before { display: block; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink42); font-family: var(--sans); margin-bottom: 6px; } .cs-iteration-cell:nth-child(1)::before { content: "Challenge"; } .cs-iteration-cell:nth-child(2)::before { content: "Response"; } .cs-iteration-cell:nth-child(3)::before { content: "Outcome"; } .cs-iteration-row:last-child .cs-iteration-cell:last-child { border-bottom: none; } }
@media (max-width: 640px) { .back-to-top { bottom: 20px; right: 20px; padding: 8px 12px; font-size: 14px; } }
.cs-section-note { font-size: 15px; font-style: normal; color: var(--ink75); background: var(--paper2); border-left: 2px solid var(--ink14); padding: 12px 16px; margin-bottom: 16px; line-height: 1.65; border-radius: 0 4px 4px 0; max-width: 840px; }
.cs-surface-label { font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink58); font-family: var(--sans); margin-bottom: 12px; margin-top: 40px; }
.cs-surface-label:first-of-type { margin-top: 0; }
.cs-surface-desc { font-size: 16px; line-height: 1.72; color: var(--ink75); margin-top: 14px; margin-bottom: 0; max-width: 840px; }
.cs-callout { font-family: var(--serif); font-size: clamp(20px, 2.8vw, 28px); font-weight: 400; color: var(--ink); line-height: 1.4; letter-spacing: -.02em; border-left: 2px solid var(--rust); padding: 6px 0 6px 22px; margin: 40px 0 12px; }
.cs-next-section { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 20px !important; padding-bottom: 20px !important; }
.cs-next-link { text-decoration: none; display: block; }
.cs-next-title { font-size: 16px; color: var(--ink); transition: color .2s; line-height: 1.4; }
.cs-next-link:hover .cs-next-title { color: var(--rust); }
.home-section-fade { opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; }
.home-section-fade.vis { opacity: 1; transform: translateY(0); }
#home-logos { padding: 32px var(--pad); display: flex; align-items: center; gap: 40px; background: var(--paper); flex-wrap: nowrap; overflow: hidden; border-bottom: .5px solid var(--ink14); }
.logos-label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink24); white-space: nowrap; flex-shrink: 0; font-family: var(--sans); }
.logos-row { display: flex; align-items: center; gap: 40px; flex: 1; flex-wrap: nowrap; }
.logo-item { display: flex; align-items: center; justify-content: center; width: 120px; height: 48px; flex-shrink: 0; }
.logo-img { max-width: 100%; max-height: 48px; width: auto; height: auto; display: block; filter: brightness(0); opacity: 0.22; transition: opacity .2s ease; }
.logo-item:hover .logo-img { opacity: 0.48; }
.logo-item--ircc { width: 180px; }
@media (max-width: 1240px) and (min-width: 981px) { #home-logos { gap: 28px; padding: 28px var(--pad); } .logos-row { gap: 24px; } .logo-item { width: 100px; height: 44px; } .logo-img { max-height: 44px; max-width: 100%; } .logo-item--ircc { width: 156px; } }
@media (max-width: 980px) and (min-width: 641px) { #home-logos { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px var(--pad); } .logos-row { flex-wrap: wrap; gap: 20px 24px; flex: unset; width: 100%; } .logo-item { width: 100px; height: 42px; } .logo-img { max-height: 42px; max-width: 100%; } .logo-item--ircc { width: 150px; } }
@media (max-width: 640px) { #home-logos { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px var(--pad); } .logos-row { flex-wrap: wrap; gap: 24px 28px; } .logo-item { width: 88px; height: 40px; } .logo-img { max-height: 40px; max-width: 100%; } .logo-item--ircc { width: 140px; } }

/* ── Work card type tags (v151+) ── */
.cs-type-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 12px; }
.cs-type-tag { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--rust); border: .5px solid rgba(139,74,42,.42); padding: 4px 10px; transition: border .2s; }
.cs-card:hover .cs-type-tag { border: .5px solid var(--rust); }