/* =============================================================
   SOLARIUM MARKETING CO-OP
   Design system v3 — premium, editorial, sales-ready
   ============================================================= */

/* ---------- 01 · RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- 02 · TOKENS ---------- */
:root {
  /* Core palette */
  --ink:       #0F1412;  /* deep carbon-green */
  --ink-2:     #1B221E;
  --ink-3:     #2A3329;
  --cream:     #F5EFE3;
  --cream-2:   #EDE5D3;
  --bone:      #FAF6EC;

  --moss:      #3E5641;
  --moss-2:    #2A3C2D;
  --moss-3:    #556E57;

  --clay:      #B8623A;
  --clay-2:    #9C4F2E;

  --sun:       #D9A441;
  --sun-2:     #C48F2F;

  --sand:      #E8DFCF;
  --muted:     #6B6A63;
  --line:      rgba(15, 20, 18, 0.10);
  --line-soft: rgba(15, 20, 18, 0.06);
  --line-dark: rgba(245, 239, 227, 0.14);

  /* Type */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:  'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Space */
  --pad:     clamp(20px, 4vw, 64px);
  --pad-xl:  clamp(32px, 6vw, 120px);
  --rail:    clamp(80px, 10vw, 180px);
  --gutter:  clamp(16px, 2vw, 32px);

  /* Radius */
  --r-xs: 6px;
  --r-s:  10px;
  --r-m:  16px;
  --r-l:  24px;

  /* Motion */
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);
  --t:      0.6s;
  --t-s:    0.35s;

  /* Container widths */
  --w-max: 1440px;
  --w-lg:  1200px;
  --w-md:  980px;
  --w-sm:  720px;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

::selection { background: var(--sun); color: var(--ink); }

/* ---------- 03 · TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 9vw, 148px); line-height: 0.92; letter-spacing: -0.035em; }
h2 { font-size: clamp(36px, 5.5vw, 88px); line-height: 0.96; letter-spacing: -0.025em; }
h3 { font-size: clamp(28px, 3.5vw, 52px); line-height: 1.02; letter-spacing: -0.02em; }
h4 { font-size: clamp(20px, 1.8vw, 26px); line-height: 1.15; letter-spacing: -0.01em; font-weight: 600; font-family: var(--sans); }
h5 { font-size: 12px; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }

em, .italic { font-style: italic; font-family: var(--serif); font-weight: 500; }
strong { font-weight: 600; }

p { font-size: clamp(15px, 1.1vw, 18px); line-height: 1.65; color: var(--ink); }
.lede { font-size: clamp(18px, 1.6vw, 26px); line-height: 1.5; color: var(--ink); font-weight: 400; letter-spacing: -0.005em; }
.eyebrow, .tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--moss);
}

.underline { position: relative; display: inline-block; }
.underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.18em;
  background: var(--sun);
  opacity: 0.6;
  z-index: -1;
}

/* ---------- 04 · LAYOUT PRIMITIVES ---------- */
.wrap     { width: 100%; max-width: var(--w-max); margin: 0 auto; padding: 0 var(--pad); }
.wrap-lg  { width: 100%; max-width: var(--w-lg);  margin: 0 auto; padding: 0 var(--pad); }
.wrap-md  { width: 100%; max-width: var(--w-md);  margin: 0 auto; padding: 0 var(--pad); }
.wrap-sm  { width: 100%; max-width: var(--w-sm);  margin: 0 auto; padding: 0 var(--pad); }

.section       { padding: clamp(72px, 10vw, 160px) 0; position: relative; }
.section-sm    { padding: clamp(48px, 6vw, 100px) 0; }
.section-tight { padding: clamp(32px, 4vw, 64px) 0; }

/* ---------- 05 · SCROLL PROGRESS + NAV ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--sun), var(--clay));
  z-index: 200;
  transition: width 80ms linear;
  box-shadow: 0 0 12px rgba(217, 164, 65, 0.4);
}

.conditions {
  background: var(--ink);
  color: var(--sun);
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 239, 227, 0.08);
  position: relative;
  z-index: 90;
}
.conditions-track {
  display: flex;
  white-space: nowrap;
  animation: slide-left 50s linear infinite;
  padding: 10px 0;
  gap: 56px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.conditions-track span { flex-shrink: 0; opacity: 0.82; }
.conditions-track span::before { content: '◆ '; margin-right: 16px; opacity: 0.5; color: var(--cream); }
@keyframes slide-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 227, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--t-s) var(--ease);
}
.nav.scrolled {
  background: rgba(245, 239, 227, 0.96);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-mark { width: 28px; height: 28px; flex-shrink: 0; }
.logo .sub {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 8px;
  padding-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color var(--t-s) var(--ease);
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--ink);
  transition: width var(--t-s) var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--moss); }

.nav-cta {
  padding: 10px 18px !important;
  background: var(--ink);
  color: var(--cream) !important;
  border-radius: 999px;
  transition: all var(--t-s) var(--ease);
}
.nav-cta:hover { background: var(--moss); transform: translateY(-1px); }

@media (max-width: 780px) {
  .nav-links { gap: 18px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .logo .sub { display: none; }
}

/* ---------- 06 · BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: all var(--t-s) var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-arrow { transition: transform var(--t-s) var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--moss); transform: translateY(-2px); box-shadow: 0 12px 40px -12px rgba(0,0,0,0.4); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }

.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: var(--sun); transform: translateY(-2px); }
.btn-sun { background: var(--sun); color: var(--ink); }
.btn-sun:hover { background: var(--sun-2); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: all var(--t-s) var(--ease);
}
.btn-ghost:hover { color: var(--clay); border-color: var(--clay); }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-ghost svg { transition: transform var(--t-s) var(--ease); }

/* ---------- 07 · HERO ---------- */
.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) brightness(0.85);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 20, 18, 0.45) 0%,
    rgba(15, 20, 18, 0.25) 35%,
    rgba(15, 20, 18, 0.55) 70%,
    rgba(15, 20, 18, 0.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--w-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--sun);
}
.hero h1 {
  color: var(--cream);
  max-width: 16ch;
  margin-bottom: 32px;
}
.hero h1 .italic { color: var(--sun); font-style: italic; font-weight: 500; }
.hero h1 .underline::after { background: var(--clay); opacity: 0.85; height: 0.16em; bottom: 0.08em; }

.hero-sub {
  max-width: 56ch;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.6;
  color: rgba(245, 239, 227, 0.78);
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: clamp(40px, 6vw, 80px); }
.hero-actions .btn-secondary { color: var(--cream); border-color: rgba(245, 239, 227, 0.4); }
.hero-actions .btn-secondary:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.hero-meta {
  position: relative;
  z-index: 3;
  max-width: var(--w-max);
  width: 100%;
  margin: 0 auto;
  padding: 20px var(--pad) 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: rgba(245, 239, 227, 0.72);
  font-size: 12px;
  border-top: 1px solid rgba(245, 239, 227, 0.12);
}
.hero-meta-block { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; line-height: 1.6; }
.hero-meta-block strong { display: block; color: var(--sun); font-weight: 500; margin-bottom: 3px; }
.hero-scroll { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; }
.hero-scroll-line { width: 48px; height: 1px; background: var(--sun); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -20px;
  width: 20px;
  height: 100%;
  background: var(--cream);
  animation: scroll-line 2.4s var(--ease-2) infinite;
}
@keyframes scroll-line {
  0%   { left: -20px; }
  100% { left: 60px; }
}
@media (max-width: 640px) {
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .hero-meta-block[style*="right"] { text-align: left !important; }
}

/* ---------- 08 · PAGE HERO (interior pages) ---------- */
.page-hero {
  padding: clamp(120px, 18vw, 220px) 0 clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.page-hero-solid { background: var(--cream); }
.page-hero-dark { background: var(--ink); color: var(--cream); }
.page-hero-dark h1 { color: var(--cream); }
.page-hero-dark .page-hero-lead { color: rgba(245, 239, 227, 0.82); }
.page-hero-dark .page-hero-eyebrow { color: var(--sun); }
.page-hero-moss { background: var(--moss); color: var(--cream); }
.page-hero-moss h1 { color: var(--cream); }
.page-hero-moss .page-hero-lead { color: rgba(245, 239, 227, 0.88); }
.page-hero-moss .page-hero-eyebrow { color: var(--sun); }

.page-hero-inner {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 2;
}
.page-hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.page-hero-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--clay); }
.page-hero h1 { max-width: 16ch; margin-bottom: 28px; }
.page-hero-lead { max-width: 62ch; font-size: clamp(16px, 1.4vw, 22px); line-height: 1.55; color: var(--ink); }

.page-hero-bg-num {
  position: absolute;
  right: clamp(20px, 4vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(180px, 28vw, 420px);
  color: rgba(62, 86, 65, 0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  letter-spacing: -0.06em;
}
.page-hero-dark .page-hero-bg-num { color: rgba(245, 239, 227, 0.04); }
.page-hero-moss .page-hero-bg-num { color: rgba(245, 239, 227, 0.08); }

/* ---------- 09 · PROOF STRIP ---------- */
.proof {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.proof::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sun), transparent);
  opacity: 0.4;
}
.proof-head {
  max-width: var(--w-max);
  margin: 0 auto clamp(40px, 6vw, 80px);
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.proof-head h3 { color: var(--cream); font-size: clamp(24px, 3vw, 36px); max-width: 32ch; }
.proof-head .eyebrow { color: var(--sun); }

.proof-grid {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 239, 227, 0.12);
}
.proof-cell {
  padding: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 40px);
  border-right: 1px solid rgba(245, 239, 227, 0.12);
  position: relative;
}
.proof-cell:last-child { border-right: none; }
.stat-big {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--sun);
  margin-bottom: 12px;
  display: inline-block;
}
.stat-big .unit { font-size: 0.5em; color: var(--cream); opacity: 0.7; margin-left: 4px; vertical-align: 0.4em; }
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 239, 227, 0.7);
  line-height: 1.5;
}
.stat-sub {
  display: block;
  color: rgba(245, 239, 227, 0.5);
  font-size: 10px;
  margin-top: 6px;
  letter-spacing: 0.1em;
}
@media (max-width: 880px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-cell:nth-child(2) { border-right: none; }
  .proof-cell:nth-child(1), .proof-cell:nth-child(2) { border-bottom: 1px solid rgba(245, 239, 227, 0.12); }
}
@media (max-width: 520px) {
  .proof-grid { grid-template-columns: 1fr; }
  .proof-cell { border-right: none !important; border-bottom: 1px solid rgba(245, 239, 227, 0.12); }
}

/* ---------- 10 · MARQUEE ---------- */
.marquee {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: slide-left 38s linear infinite;
  gap: 48px;
  align-items: center;
}
.marquee-item {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(18px, 2vw, 28px);
  color: var(--moss);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}
.marquee-item::after {
  content: '✦';
  font-style: normal;
  color: var(--clay);
  font-size: 0.7em;
  opacity: 0.7;
}

/* ---------- 11 · MISSION ---------- */
.mission {
  padding: clamp(80px, 14vw, 200px) 0;
  position: relative;
  background: var(--cream);
}
.mission-inner {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.mission .eyebrow { display: block; margin-bottom: 28px; color: var(--clay); }
.mission h2 {
  font-size: clamp(44px, 6.5vw, 104px);
  max-width: 18ch;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.028em;
}
.mission h2 em { color: var(--clay); }
.mission-body {
  max-width: 62ch;
  margin-top: 48px;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--ink);
}
.mission-body p + p { margin-top: 20px; }

/* ---------- 12 · SERVICES MATRIX ---------- */
.svc-matrix { background: var(--cream); padding: clamp(80px, 10vw, 160px) 0; }
.svc-matrix-head {
  max-width: var(--w-lg);
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
}
.svc-matrix-head h2 { max-width: 14ch; }
.svc-matrix-head h2 em { color: var(--clay); }
.svc-matrix-head p { max-width: 48ch; color: var(--muted); }
@media (max-width: 780px) { .svc-matrix-head { grid-template-columns: 1fr; } }

.svc-matrix-grid {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.svc-cell {
  background: var(--cream);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  transition: background var(--t-s) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
}
.svc-cell:hover { background: var(--bone); }
.svc-cell:hover .svc-num { color: var(--clay); }
.svc-cell:hover h4 { color: var(--moss); }
.svc-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--muted);
  transition: color var(--t-s) var(--ease);
}
.svc-cell h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  transition: color var(--t-s) var(--ease);
}
.svc-cell p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-top: auto; }
.svc-cell-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 880px) { .svc-matrix-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-matrix-grid { grid-template-columns: 1fr; } }

/* ---------- 13 · PROCESS STRIP ---------- */
.process { background: var(--ink); color: var(--cream); padding: clamp(80px, 12vw, 180px) 0; }
.process-head { max-width: var(--w-lg); margin: 0 auto clamp(48px, 6vw, 80px); padding: 0 var(--pad); }
.process-head .eyebrow { color: var(--sun); }
.process-head h2 { color: var(--cream); max-width: 18ch; }
.process-head h2 em { color: var(--sun); }

.process-steps {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 239, 227, 0.14);
}
.process-step { padding: 28px 20px 28px 0; border-right: 1px solid rgba(245, 239, 227, 0.14); position: relative; }
.process-step:last-child { border-right: none; }
.process-step-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; color: var(--sun); margin-bottom: 20px; }
.process-step h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.process-step p { color: rgba(245, 239, 227, 0.65); font-size: 13px; line-height: 1.6; }
@media (max-width: 980px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-bottom: 1px solid rgba(245, 239, 227, 0.14); padding-right: 20px; padding-left: 20px; }
  .process-step:nth-child(2n) { border-right: none; }
}
@media (max-width: 540px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; }
}

/* ---------- 14 · FEATURED CASE ---------- */
.featured-case {
  background: var(--moss);
  color: var(--cream);
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.featured-case::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle at 70% 100%, rgba(217, 164, 65, 0.18), transparent 60%);
  pointer-events: none;
}
.fc-inner {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.fc-eyebrow { color: var(--sun); }
.fc-inner h2 { color: var(--cream); max-width: 18ch; margin-top: 20px; margin-bottom: 24px; }
.fc-inner h2 em { color: var(--sun); }
.fc-inner p { color: rgba(245, 239, 227, 0.85); }

.fc-stats { border-left: 1px solid rgba(245, 239, 227, 0.2); padding-left: clamp(24px, 4vw, 56px); }
.fc-stat { padding: 28px 0; border-bottom: 1px solid rgba(245, 239, 227, 0.16); }
.fc-stat:last-child { border-bottom: none; }
.fc-stat-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  color: var(--sun);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.fc-stat-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(245, 239, 227, 0.75); }
@media (max-width: 880px) {
  .fc-inner { grid-template-columns: 1fr; }
  .fc-stats { border-left: none; padding-left: 0; border-top: 1px solid rgba(245, 239, 227, 0.2); }
}

/* ---------- 15 · CASE GRID ---------- */
.case-grid { padding: clamp(80px, 10vw, 140px) 0; background: var(--cream); }
.case-grid-head {
  max-width: var(--w-lg);
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
}
.case-grid-head h2 { max-width: 14ch; }
.case-grid-head h2 em { color: var(--clay); }
.case-grid-head p { max-width: 48ch; color: var(--muted); }
@media (max-width: 780px) { .case-grid-head { grid-template-columns: 1fr; } }

.case-list {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
}
.case-tile {
  padding: clamp(32px, 4vw, 52px) 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr 1.1fr 200px;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  cursor: pointer;
  transition: all var(--t-s) var(--ease);
}
.case-tile:last-child { border-bottom: 1px solid var(--line); }
.case-tile:hover { padding-left: 16px; }
.case-tile:hover h3 { color: var(--clay); }
.case-tile-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; color: var(--muted); padding-top: 8px; }
.case-tile h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  transition: color var(--t-s) var(--ease);
}
.case-tile .case-tile-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 10px;
}
.case-tile p { font-size: 15px; line-height: 1.6; color: var(--muted); }
.case-tile-stat {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  color: var(--clay);
  letter-spacing: -0.02em;
  text-align: right;
  white-space: nowrap;
}
.case-tile-stat-sub {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}
@media (max-width: 880px) {
  .case-tile { grid-template-columns: 1fr; gap: 8px; }
  .case-tile-stat { text-align: left; }
  .case-tile-num { padding-top: 0; }
}

/* ---------- 16 · PRICING INLINE ---------- */
.pricing-inline { background: var(--cream-2); padding: clamp(80px, 10vw, 140px) 0; }
.pricing-head { max-width: var(--w-lg); margin: 0 auto clamp(48px, 6vw, 80px); padding: 0 var(--pad); text-align: center; }
.pricing-head .eyebrow { color: var(--clay); }
.pricing-head h2 { max-width: 18ch; margin: 20px auto 16px; }
.pricing-head h2 em { color: var(--clay); }
.pricing-head p { max-width: 60ch; color: var(--muted); margin: 0 auto; }

.pricing-grid {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--t) var(--ease);
  position: relative;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--moss); box-shadow: 0 24px 60px -30px rgba(15, 20, 18, 0.3); }
.price-card.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.price-card.featured h3, .price-card.featured h4 { color: var(--cream); }
.price-card.featured .price-amount { color: var(--sun); }
.price-card.featured .price-label { color: var(--sun); }
.price-card.featured .price-desc { color: rgba(245, 239, 227, 0.75); }
.price-card.featured .price-features li { color: rgba(245, 239, 227, 0.88); }
.price-card.featured .price-features li::before { color: var(--sun); }
.price-card.featured .btn-ghost { color: var(--sun); border-color: var(--sun); }
.price-card.featured .btn-ghost:hover { color: var(--cream); border-color: var(--cream); }
.price-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--moss); }
.price-card h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 2.4vw, 36px); line-height: 1.05; margin: 6px 0 4px; }
.price-amount {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1;
  color: var(--clay);
  letter-spacing: -0.03em;
}
.price-amount .unit { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--muted); margin-left: 4px; letter-spacing: 0; }
.price-desc { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 8px; }
.price-features { margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 14px; line-height: 1.5; padding-left: 22px; position: relative; color: var(--ink); }
.price-features li::before { content: '→'; position: absolute; left: 0; top: 0; color: var(--clay); font-weight: 500; }
.price-cta { margin-top: auto; padding-top: 20px; }
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ---------- 17 · TESTIMONIAL ---------- */
.testimonial { padding: clamp(80px, 12vw, 160px) 0; background: var(--bone); position: relative; }
.testimonial-inner { max-width: var(--w-md); margin: 0 auto; padding: 0 var(--pad); text-align: center; position: relative; }
.testimonial-mark {
  font-family: var(--serif);
  font-size: clamp(120px, 16vw, 220px);
  line-height: 0.6;
  color: var(--sun);
  opacity: 0.5;
  margin-bottom: -20px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 40px;
}
.testimonial blockquote em { color: var(--clay); }
.testimonial cite {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}
.testimonial cite strong { color: var(--ink); margin-right: 8px; }

/* ---------- 18 · CO-OP TEASER ---------- */
.coop-teaser {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.coop-teaser::before {
  content: 'CO-OP';
  position: absolute;
  right: -40px;
  bottom: -80px;
  font-family: var(--serif);
  font-size: clamp(280px, 40vw, 620px);
  font-weight: 500;
  color: rgba(245, 239, 227, 0.02);
  line-height: 0.8;
  letter-spacing: -0.06em;
  pointer-events: none;
}
.coop-teaser-inner {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 2;
}
.coop-teaser-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 64px; }
.coop-teaser-head h2 { color: var(--cream); max-width: 16ch; }
.coop-teaser-head h2 em { color: var(--sun); }
.coop-teaser-head .eyebrow { color: var(--sun); }
.coop-teaser-head p { color: rgba(245, 239, 227, 0.75); max-width: 48ch; }
@media (max-width: 780px) { .coop-teaser-head { grid-template-columns: 1fr; } }

.coop-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245, 239, 227, 0.12);
  border-top: 1px solid rgba(245, 239, 227, 0.12);
  border-bottom: 1px solid rgba(245, 239, 227, 0.12);
}
.coop-benefit { background: var(--ink); padding: clamp(24px, 3vw, 40px); }
.coop-benefit-icon { font-size: 24px; color: var(--sun); margin-bottom: 20px; font-family: var(--serif); font-weight: 500; }
.coop-benefit h4 { font-family: var(--serif); font-weight: 500; color: var(--cream); font-size: clamp(18px, 1.5vw, 22px); line-height: 1.15; margin-bottom: 10px; }
.coop-benefit p { font-size: 13px; color: rgba(245, 239, 227, 0.65); line-height: 1.6; }
@media (max-width: 880px) { .coop-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .coop-benefits { grid-template-columns: 1fr; } }

.coop-teaser-foot { margin-top: 48px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.coop-teaser-foot .btn-ghost { color: var(--sun); border-color: var(--sun); }
.coop-teaser-foot .btn-ghost:hover { color: var(--cream); border-color: var(--cream); }

/* ---------- 19 · DISCIPLINES ---------- */
.disciplines { background: var(--cream); padding: clamp(80px, 12vw, 180px) 0; }
.disciplines-inner { max-width: var(--w-lg); margin: 0 auto; padding: 0 var(--pad); }
.disciplines-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.disciplines-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 24px;
}
.disciplines-head h2 { max-width: 16ch; }
.disciplines-head h2 em { color: var(--clay); }
.disciplines-lead { color: var(--muted); max-width: 52ch; font-size: clamp(15px, 1.2vw, 18px); }
@media (max-width: 780px) { .disciplines-head { grid-template-columns: 1fr; } }

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}
.dis-col { background: var(--cream); padding: clamp(28px, 3vw, 44px); transition: background var(--t-s) var(--ease); }
.dis-col:hover { background: var(--bone); }
.dis-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--clay); margin-bottom: 16px; }
.dis-col h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2vw, 28px); line-height: 1.08; margin-bottom: 20px; }
.dis-col h3 em { color: var(--moss); }
.dis-col ul { display: flex; flex-direction: column; gap: 10px; font-size: 14px; line-height: 1.55; color: var(--ink); }
.dis-col ul li { padding-left: 14px; position: relative; }
.dis-col ul li::before { content: '·'; position: absolute; left: 0; color: var(--clay); font-weight: 700; top: -2px; }
.dis-col ul li strong { font-weight: 600; }
@media (max-width: 880px) { .disciplines-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .disciplines-grid { grid-template-columns: 1fr; } }

.disciplines-foot {
  margin-top: clamp(48px, 6vw, 80px);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.3;
  color: var(--moss);
  max-width: 44ch;
  letter-spacing: -0.01em;
}
.disciplines-foot strong { font-style: normal; color: var(--clay); font-weight: 500; }

/* ---------- 20 · FOUNDER STRIP ---------- */
.founder-strip { background: var(--cream); padding: clamp(80px, 10vw, 160px) 0; }
.founder-inner {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.founder-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
  border-radius: var(--r-m);
  overflow: hidden;
}
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-portrait-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(180deg, var(--sand), var(--cream-2));
  padding: 24px;
  text-align: center;
}
.founder-portrait-fallback svg { width: 64%; max-width: 180px; opacity: 0.4; }
.founder-portrait-fallback span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.founder-caption { margin-top: 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.founder-credentials {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.founder-credentials-item {
  display: flex; flex-direction: column; gap: 2px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
}
.founder-credentials-item strong {
  color: var(--moss); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
}
.founder-credentials-item span {
  color: var(--muted); text-transform: none; letter-spacing: 0.05em; font-family: var(--sans); font-size: 12.5px;
}
.founder-copy .eyebrow { color: var(--clay); display: block; margin-bottom: 20px; }
.founder-copy h2 { font-size: clamp(36px, 4.6vw, 66px); max-width: 20ch; margin-bottom: 32px; line-height: 1.04; }
.founder-copy h2 em { color: var(--moss); font-style: italic; }
.founder-copy p + p { margin-top: 20px; }
.founder-copy p { font-size: clamp(15.5px, 1.22vw, 18px); line-height: 1.65; color: var(--ink); }
.founder-copy .founder-lead {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(19px, 1.7vw, 25px); line-height: 1.45;
  color: var(--ink); letter-spacing: -0.005em;
  border-left: 2px solid var(--sun); padding-left: 22px;
  margin-bottom: 8px;
}
.founder-sig-block {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.founder-sig {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--moss);
}
.founder-sig-role {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
@media (max-width: 880px) { .founder-inner { grid-template-columns: 1fr; max-width: 540px; } }

/* ---------- 21 · CTA / CONTACT ---------- */
.cta {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 140%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(217, 164, 65, 0.12), transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-inner {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  position: relative;
  z-index: 2;
}
.cta-inner h2 { color: var(--cream); font-size: clamp(40px, 6vw, 88px); max-width: 16ch; margin-bottom: 28px; }
.cta-inner h2 em { color: var(--sun); }
.cta-sub { color: rgba(245, 239, 227, 0.75); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6; margin-bottom: 36px; max-width: 52ch; }
.cta-btn-primary { background: var(--sun); color: var(--ink); padding: 18px 30px; font-size: 16px; }
.cta-btn-primary:hover { background: var(--cream); }

.cta-contact { background: rgba(245, 239, 227, 0.05); border-radius: var(--r-m); padding: clamp(24px, 3vw, 36px); border: 1px solid rgba(245, 239, 227, 0.08); }
.cta-contact h4 { color: var(--sun); margin-bottom: 24px; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }
.cta-contact-item { display: flex; flex-direction: column; padding: 16px 0; border-top: 1px solid rgba(245, 239, 227, 0.1); gap: 4px; }
.cta-contact-item:first-of-type { border-top: none; padding-top: 0; }
.cta-contact-item strong {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.55);
}
.cta-contact-item span { color: var(--cream); font-weight: 500; font-size: 15px; }
@media (max-width: 880px) { .cta-inner { grid-template-columns: 1fr; } }

/* ---------- 22 · FOOTER ---------- */
footer {
  background: var(--ink-2);
  color: rgba(245, 239, 227, 0.7);
  padding: clamp(56px, 6vw, 80px) 0 0;
  font-size: 14px;
}
.footer-inner {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 239, 227, 0.08);
}
.footer-brand p { color: rgba(245, 239, 227, 0.55); max-width: 36ch; margin-top: 20px; font-size: 14px; line-height: 1.65; }
.footer-brand .logo { color: var(--cream); }
.footer-brand .logo .sub { color: rgba(245, 239, 227, 0.5); }
.footer-sister {
  display: flex; align-items: center; gap: 14px; margin-top: 28px;
  padding-top: 22px; border-top: 1px dashed rgba(245, 239, 227, 0.18);
}
.footer-sister .earth-mark { flex-shrink: 0; }
.footer-sister-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(245, 239, 227, 0.45); margin-bottom: 3px;
}
.footer-sister-link {
  color: var(--cream); font-family: var(--serif); font-size: 17px;
  font-style: italic; font-weight: 500; text-decoration: none;
  transition: color var(--t-s) var(--ease);
}
.footer-sister-link:hover { color: var(--sun); }
.footer-col h5 { color: var(--sun); margin-bottom: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(245, 239, 227, 0.7); transition: color var(--t-s) var(--ease); font-size: 14px; }
.footer-col a:hover { color: var(--sun); }
.footer-bottom {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 28px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.5);
}
.coordinates::before { content: '◉ '; color: var(--sun); }
@media (max-width: 780px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ---------- 23 · TEASER ROWS ---------- */
.teaser-row {
  border-top: 1px solid var(--line);
  padding: clamp(32px, 4vw, 56px) 0;
  background: var(--cream);
  transition: background var(--t-s) var(--ease);
}
.teaser-row:hover { background: var(--bone); }
.teaser-row.teaser-dark { background: var(--ink); color: var(--cream); border-top-color: rgba(245, 239, 227, 0.12); }
.teaser-row.teaser-dark:hover { background: var(--ink-2); }
.teaser-row.teaser-dark h3 { color: var(--cream); }
.teaser-row.teaser-dark p { color: rgba(245, 239, 227, 0.72); }
.teaser-row.teaser-dark .teaser-row-meta { color: var(--sun); }
.teaser-row.teaser-dark .btn-ghost { color: var(--cream); border-color: var(--cream); }
.teaser-row.teaser-dark .btn-ghost:hover { color: var(--sun); border-color: var(--sun); }

.teaser-row-inner {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 120px 1fr 200px;
  gap: clamp(16px, 3vw, 48px);
  align-items: center;
}
.teaser-row-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--clay); }
.teaser-row h3 { font-size: clamp(26px, 3vw, 44px); margin-bottom: 12px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.04; }
.teaser-row h3 em { color: var(--clay); }
.teaser-row p { color: var(--muted); max-width: 56ch; font-size: 15px; line-height: 1.6; }
@media (max-width: 880px) {
  .teaser-row-inner { grid-template-columns: 1fr; gap: 16px; }
  .teaser-row-meta { order: -1; }
}

/* ---------- 24 · SERVICES DEEP ---------- */
.svc-deep { padding: clamp(60px, 8vw, 120px) 0; background: var(--cream); }
.svc-deep-item {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: clamp(56px, 6vw, 96px) var(--pad);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr 1.4fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
}
.svc-deep-item:last-child { border-bottom: 1px solid var(--line); }
.svc-deep-num { font-family: var(--mono); font-size: 13px; letter-spacing: 0.15em; color: var(--clay); padding-top: 12px; }
.svc-deep-title h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 4vw, 56px); line-height: 1; margin-bottom: 20px; letter-spacing: -0.02em; }
.svc-deep-title h3 em { color: var(--clay); }
.svc-deep-metric {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  padding: 8px 14px;
  background: rgba(62, 86, 65, 0.08);
  border-radius: 999px;
  display: inline-block;
}
.svc-deep-body h4 { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--moss); margin: 28px 0 14px; }
.svc-deep-body h4:first-child { margin-top: 0; }
.svc-deep-body p { font-size: 15px; line-height: 1.65; color: var(--ink); margin-bottom: 14px; }
.svc-deep-body ul { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.svc-deep-body li { padding-left: 20px; position: relative; font-size: 14px; line-height: 1.55; color: var(--ink); }
.svc-deep-body li::before { content: '→'; position: absolute; left: 0; color: var(--clay); font-weight: 600; }
@media (max-width: 980px) {
  .svc-deep-item { grid-template-columns: 1fr; gap: 24px; }
  .svc-deep-num { padding-top: 0; }
}

/* ---------- 25 · COOP PAGE ---------- */

/* Earth Co-op identity mark */
.earth-mark { display: block; }
.earth-mark-xl { width: 120px; height: 120px; margin: 0 auto clamp(24px, 3vw, 40px); }
.earth-mark-lg { width: 72px; height: 72px; }

/* Co-op hero wordmark block (atop page hero) */
.coop-hero-mark {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding-top: clamp(40px, 5vw, 80px);
}
.coop-hero-mark .wordmark {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--sun);
}

/* Two-path join block (Free for clients / Premium for public) */
.join-section {
  background: var(--ink); color: var(--cream);
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative; overflow: hidden;
}
.join-head {
  max-width: var(--w-lg); margin: 0 auto clamp(48px, 6vw, 88px);
  padding: 0 var(--pad); text-align: center;
}
.join-head .eyebrow { color: var(--sun); }
.join-head h2 { max-width: 22ch; margin: 24px auto 0; }
.join-head h2 em { color: var(--sun); font-style: italic; }
.join-head p {
  max-width: 60ch; margin: 24px auto 0;
  color: rgba(245, 239, 227, 0.7); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.65;
}
.join-grid {
  max-width: var(--w-lg); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px);
}
.join-card {
  background: rgba(245, 239, 227, 0.03);
  border: 1px solid rgba(245, 239, 227, 0.1);
  padding: clamp(36px, 4.5vw, 56px);
  display: flex; flex-direction: column;
  position: relative; transition: border-color var(--t-m) var(--ease), transform var(--t-m) var(--ease);
}
.join-card:hover { border-color: rgba(217, 164, 65, 0.4); transform: translateY(-2px); }
.join-card.featured {
  background: linear-gradient(180deg, rgba(217, 164, 65, 0.1), rgba(245, 239, 227, 0.02));
  border-color: rgba(217, 164, 65, 0.3);
}
.join-card-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sun); margin-bottom: 18px;
}
.join-card h3 {
  font-family: var(--serif); font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05; margin-bottom: 14px;
}
.join-card h3 em { color: var(--sun); font-style: italic; }
.join-card-price {
  font-family: var(--serif); font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1; margin: 20px 0 8px; color: var(--cream);
}
.join-card-price .unit {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em;
  color: rgba(245, 239, 227, 0.5); margin-left: 6px;
}
.join-card-sub {
  color: rgba(245, 239, 227, 0.65); font-size: 15px; line-height: 1.55;
  margin-bottom: 28px;
}
.join-card ul {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px; padding: 24px 0;
  border-top: 1px solid rgba(245, 239, 227, 0.1);
  border-bottom: 1px solid rgba(245, 239, 227, 0.1);
}
.join-card ul li {
  color: rgba(245, 239, 227, 0.85); font-size: 14.5px; line-height: 1.5;
  display: flex; gap: 10px;
}
.join-card ul li::before {
  content: '✦'; color: var(--sun); flex-shrink: 0;
}
.join-card .btn {
  margin-top: auto; align-self: flex-start;
}
@media (max-width: 880px) {
  .join-grid { grid-template-columns: 1fr; }
}

.coop-intro { background: var(--cream); padding: clamp(60px, 8vw, 140px) 0; }
.coop-intro-inner {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.coop-intro-inner h2 { max-width: 16ch; }
.coop-intro-inner h2 em { color: var(--clay); }
.coop-intro-copy p + p { margin-top: 18px; }
.coop-intro-copy p { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.65; }
@media (max-width: 880px) { .coop-intro-inner { grid-template-columns: 1fr; } }

.benefits-section { padding: clamp(60px, 8vw, 120px) 0; background: var(--cream-2); }
.benefits-head { max-width: var(--w-lg); margin: 0 auto clamp(40px, 6vw, 80px); padding: 0 var(--pad); }
.benefits-head .eyebrow { color: var(--clay); }
.benefits-head h2 { max-width: 18ch; margin-top: 20px; }
.benefits-head h2 em { color: var(--moss); }
.benefits-grid {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 32px);
}
.benefit-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--t-s) var(--ease);
}
.benefit-card:hover { transform: translateY(-3px); border-color: var(--moss); }
.benefit-num { font-family: var(--mono); font-size: 13px; letter-spacing: 0.15em; color: var(--clay); }
.benefit-card h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.1; }
.benefit-card h3 em { color: var(--moss); }
.benefit-card p { color: var(--ink); font-size: 15px; line-height: 1.65; }
.benefit-card ul { margin-top: 8px; display: flex; flex-direction: column; gap: 8px; }
.benefit-card ul li { padding-left: 18px; position: relative; font-size: 14px; line-height: 1.55; }
.benefit-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--clay); }
@media (max-width: 780px) { .benefits-grid { grid-template-columns: 1fr; } }

.tiers-section { padding: clamp(60px, 8vw, 120px) 0; background: var(--cream); }
.tiers-head { max-width: var(--w-lg); margin: 0 auto clamp(40px, 6vw, 72px); padding: 0 var(--pad); text-align: center; }
.tiers-head .eyebrow { color: var(--clay); }
.tiers-head h2 { max-width: 18ch; margin: 18px auto 14px; }
.tiers-head h2 em { color: var(--clay); }
.tiers-head p { max-width: 56ch; margin: 0 auto; color: var(--muted); }

.faq-section { padding: clamp(60px, 8vw, 120px) 0; background: var(--bone); }
.faq-head { max-width: var(--w-md); margin: 0 auto clamp(40px, 5vw, 64px); padding: 0 var(--pad); }
.faq-head .eyebrow { color: var(--clay); }
.faq-head h2 { max-width: 14ch; margin-top: 18px; }
.faq-list { max-width: var(--w-md); margin: 0 auto; padding: 0 var(--pad); }
.faq-item { padding: 0; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 26px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  list-style: none;
  color: var(--ink);
  transition: color var(--t-s) var(--ease);
}
.faq-item summary:hover { color: var(--clay); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--sans);
  font-weight: 300;
  font-size: 28px;
  color: var(--clay);
  transition: transform var(--t-s) var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 28px; color: var(--ink); font-size: 15px; line-height: 1.7; max-width: 62ch; }

/* ---------- 26 · ABOUT ---------- */
.about-founder { background: var(--cream); padding: clamp(60px, 8vw, 120px) 0; }
.about-tenets { background: var(--ink); color: var(--cream); padding: clamp(60px, 8vw, 120px) 0; }
.tenets-head { max-width: var(--w-lg); margin: 0 auto clamp(40px, 5vw, 64px); padding: 0 var(--pad); }
.tenets-head .eyebrow { color: var(--sun); }
.tenets-head h2 { color: var(--cream); max-width: 18ch; margin-top: 18px; }
.tenets-head h2 em { color: var(--sun); }
.tenets-grid {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245, 239, 227, 0.12);
  border-top: 1px solid rgba(245, 239, 227, 0.12);
  border-bottom: 1px solid rgba(245, 239, 227, 0.12);
}
.tenet { background: var(--ink); padding: clamp(28px, 3vw, 44px); transition: background var(--t-s) var(--ease); }
.tenet:hover { background: var(--ink-2); }
.tenet-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; color: var(--sun); margin-bottom: 14px; }
.tenet h3 { font-family: var(--serif); font-weight: 500; color: var(--cream); font-size: clamp(22px, 2vw, 28px); line-height: 1.1; margin-bottom: 14px; }
.tenet p { color: rgba(245, 239, 227, 0.75); font-size: 14px; line-height: 1.65; }
@media (max-width: 880px) { .tenets-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tenets-grid { grid-template-columns: 1fr; } }

.past-projects { background: var(--cream-2); padding: clamp(60px, 8vw, 120px) 0; }
.past-projects-head { max-width: var(--w-lg); margin: 0 auto clamp(40px, 5vw, 64px); padding: 0 var(--pad); }
.past-projects-head .eyebrow { color: var(--clay); }
.past-projects-head h2 { max-width: 18ch; margin-top: 18px; }
.past-projects-head h2 em { color: var(--clay); }
.past-projects-list {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 32px);
}
.past-project {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: clamp(24px, 3vw, 36px);
  transition: all var(--t-s) var(--ease);
}
.past-project:hover { transform: translateY(-2px); border-color: var(--clay); }
.past-project h4 { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2vw, 26px); line-height: 1.1; letter-spacing: -0.015em; margin-bottom: 10px; }
.past-project .meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); margin-bottom: 14px; }
.past-project p { font-size: 14px; line-height: 1.6; color: var(--ink); }
@media (max-width: 780px) { .past-projects-list { grid-template-columns: 1fr; } }

/* ---------- 27 · WORK ---------- */
.work-list { padding: clamp(40px, 6vw, 100px) 0; background: var(--cream); }
.work-case {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--pad);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 100px 1fr 1.2fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
}
.work-case:last-child { border-bottom: 1px solid var(--line); }
.work-num { font-family: var(--mono); font-size: 13px; letter-spacing: 0.15em; color: var(--clay); padding-top: 12px; }
.work-title h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.4vw, 48px); line-height: 1.04; margin-bottom: 14px; letter-spacing: -0.02em; }
.work-title .work-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss); margin-bottom: 20px; display: block; }
.work-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.work-tags span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}
.work-body h4 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--moss); margin: 22px 0 10px; }
.work-body h4:first-child { margin-top: 0; }
.work-body p { font-size: 15px; line-height: 1.65; }
.work-body .stats-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.stats-inline .stat-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1;
  color: var(--clay);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 4px;
}
.stats-inline .stat-lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 980px) {
  .work-case { grid-template-columns: 1fr; gap: 24px; }
  .work-num { padding-top: 0; }
}
@media (max-width: 540px) {
  .work-body .stats-inline { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- 28 · MOTION / REVEAL (FAIL-OPEN) ---------- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
body.js-reveal .reveal {
  opacity: 0;
  transform: translateY(32px);
}
body.js-reveal .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

body.js-reveal .reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
body.js-reveal .reveal-stagger.revealed > * { opacity: 1; transform: translateY(0); }
body.js-reveal .reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
body.js-reveal .reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.12s; }
body.js-reveal .reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.19s; }
body.js-reveal .reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.26s; }
body.js-reveal .reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.33s; }
body.js-reveal .reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.40s; }
body.js-reveal .reveal-stagger.revealed > *:nth-child(7) { transition-delay: 0.47s; }
body.js-reveal .reveal-stagger.revealed > *:nth-child(8) { transition-delay: 0.54s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .conditions-track, .marquee-track { animation: none !important; }
}

/* =============================================================
   ADDITIONS · v3.1 — page-hero CTAs, apply form, light buttons
   ============================================================= */

/* ---------- Page hero action buttons (used on coop hero) ---------- */
.page-hero-actions {
  margin-top: clamp(32px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ---------- Ghost button on dark backgrounds (cream border) ---------- */
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid rgba(245, 239, 227, 0.35);
  border-radius: var(--r-xs);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  transition: all var(--t-s) var(--ease);
  white-space: nowrap;
}
.btn-ghost-light:hover {
  border-color: var(--sun);
  color: var(--sun);
  background: rgba(217, 164, 65, 0.06);
}

/* ---------- Pricing card sub-line (small description under price) ---------- */
.price-sub {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 24px;
  margin-top: -4px;
}
.price-card.featured .price-sub { color: rgba(245, 239, 227, 0.65); }

/* ---------- 28 · APPLY SECTION (coop application) ---------- */
.apply-section {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.apply-section::before {
  content: 'APPLY';
  position: absolute;
  left: -40px;
  top: -60px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(220px, 32vw, 480px);
  font-weight: 500;
  color: rgba(245, 239, 227, 0.025);
  line-height: 0.8;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.apply-inner {
  max-width: var(--w-lg);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 2;
}
.apply-head {
  max-width: 820px;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.apply-head h2 { color: var(--cream); }
.apply-head h2 em { color: var(--sun); }
.apply-lead {
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.55;
  color: rgba(245, 239, 227, 0.78);
  margin-top: 24px;
  max-width: 64ch;
}

.apply-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(245, 239, 227, 0.12);
}
.apply-meta-item {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 239, 227, 0.72);
}
.apply-meta-item strong {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 720px) {
  .apply-meta { grid-template-columns: 1fr; gap: 24px; }
}

/* Form wrap — frames the iframe or placeholder */
.apply-form-wrap {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.apply-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(20px, 3vw, 36px);
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  gap: 16px;
  flex-wrap: wrap;
}
.apply-form-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
}
.apply-form-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* The iframe itself, when placed */
.apply-form-iframe {
  display: block;
  width: 100%;
  min-height: 1200px;
  border: 0;
  background: var(--cream);
}

/* Placeholder shown while no Google Form is wired up */
.apply-form-placeholder {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 64px);
  text-align: center;
  background: var(--cream);
}
.apply-form-placeholder-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(62, 86, 65, 0.08);
  color: var(--moss);
  margin-bottom: 24px;
}
.apply-form-placeholder h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--ink);
  text-transform: none;
}
.apply-form-placeholder p {
  max-width: 56ch;
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.apply-form-placeholder code {
  font-family: var(--mono);
  font-size: 0.92em;
  background: rgba(15, 20, 18, 0.06);
  padding: 1px 6px;
  border-radius: 3px;
  color: var(--clay);
}
.apply-form-code {
  display: block;
  text-align: left;
  max-width: 640px;
  margin: 24px auto;
  padding: 20px 24px;
  background: var(--ink);
  color: rgba(245, 239, 227, 0.92);
  border-radius: var(--r-s);
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.6;
  overflow-x: auto;
  white-space: pre;
}
.apply-form-code code {
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: inherit;
}
.apply-form-code strong {
  color: var(--sun);
  font-weight: 500;
}
.apply-form-fallback {
  margin-top: 28px !important;
  font-size: 13px !important;
  color: var(--muted) !important;
}
.apply-form-fallback a {
  color: var(--clay);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color var(--t-s) var(--ease);
}
.apply-form-fallback a:hover { color: var(--moss); }
