/* Chamberlin Design — distilled
   Hero · Services · Portfolio · Reviews · CTA */

:root {
  --paper: #FFFFFF;
  --ink: #0E0E0E;
  --forest: #0F3D2E;
  --rule: #E4E3DC;
  --muted: #7A7A74;
  --muted-deep: #55554F;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 80px);

  --font-display: "Anton", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.32, 0.72, 0.18, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: clip;
  overflow-y: auto;
  max-width: 100vw;
  width: 100%;
  touch-action: pan-y;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
  position: relative;
  font-variant-numeric: tabular-nums;
}
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}
img { display: block; max-width: 100%; height: auto; }
button { background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--forest); color: var(--paper); }

/* Cursor glow — soft forest aura that follows cursor with smooth lag */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(15, 61, 46, 0.22) 0%,
    rgba(15, 61, 46, 0.10) 30%,
    rgba(15, 61, 46, 0.03) 55%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 200;
  mix-blend-mode: multiply;
  transform: translate3d(-500px, -500px, 0);
  will-change: transform, opacity;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

/* Subtle grain — breaks digital flatness without adding visible noise */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.05  0 0 0 0 0.05  0 0 0 0 0.05  0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
}

/* ---------- TYPE ---------- */
h1, h2, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--ink);
}
em { font-style: italic; color: var(--forest); }
strong { font-weight: 500; color: var(--ink); }

.label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
section { padding-block: clamp(48px, 7vw, 100px); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  padding: 10px 12px 10px 22px;
  width: min(calc(100% - 32px), 860px);
  background: rgba(250, 250, 248, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 40px -18px rgba(15, 61, 46, 0.22),
              0 1px 0 rgba(255, 255, 255, 0.4) inset;
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(250, 250, 248, 0.72);
  box-shadow: 0 18px 44px -18px rgba(15, 61, 46, 0.28),
              0 1px 0 rgba(255, 255, 255, 0.4) inset;
}
.nav-links {
  padding-right: 10px;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-wordmark .dot { color: var(--forest); }
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--spring);
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .sep { color: var(--muted); padding: 0 2px; }

.nav-toggle { display: none; width: 36px; height: 36px; position: relative; }
.nav-toggle span {
  position: absolute;
  left: 6px; right: 6px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle.is-open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { top: 18px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 99;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 var(--gutter);
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.is-open { display: flex; opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(40px, 12vw, 88px);
  text-transform: uppercase;
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

main { padding-top: 80px; }

/* ============================================================
   HERO  —  preserved
   ============================================================ */
.hero {
  padding-top: clamp(20px, 3vw, 48px);
  padding-bottom: clamp(80px, 12vw, 160px);
  padding-inline: var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  background: #FFFFFF;
  position: relative;
}
.hero-copy { position: relative; z-index: 2; }
.hero-video-wrap {
  display: none;
  position: absolute;
  /* positioned precisely by JS to sit right of "I turn" and above "businesses" */
  pointer-events: none;
  z-index: 1;
}
.hero-video-mobile {
  display: block;
  width: 100%;
  height: auto;
  margin-top: clamp(24px, 5vw, 48px);
}
@media (min-width: 960px) {
  .hero-video-mobile { display: none; }
}

/* On large screens: video fills the full height of the hero on the right,
   and a gradient behind the text keeps the copy legible over the video. */
@media (min-width: 1280px) {
  .hero-mark { font-size: clamp(56px, 8.5vw, 156px); }
  .hero-tag { font-size: clamp(16px, 1.2vw, 20px); max-width: 46ch; }
  .hero-video-spring {
    position: absolute;
    top: clamp(40px, 5vw, 80px);
    right: var(--gutter);
    width: min(50vw, 720px);
    transform: translate3d(0, var(--hero-video-y, 0px), 0);
    will-change: transform;
  }
  .hero-video-wrap {
    display: block !important;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    pointer-events: auto;
    transform-style: preserve-3d;
    transform: perspective(1400px);
    transition: transform 0.7s var(--spring);
  }
  .hero-video,
  .hero-video-freeze {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    background: transparent;
  }
  .hero-video-freeze {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  .hero-copy {
    position: relative;
    z-index: 2;
  }
  .hero-copy::before {
    content: "";
    position: absolute;
    top: -2vw;
    bottom: -2vw;
    left: calc(-1 * var(--gutter));
    right: 20%;
    background: linear-gradient(
      to right,
      rgba(255,255,255,0.85) 0%,
      rgba(255,255,255,0.7) 55%,
      rgba(255,255,255,0) 100%
    );
    z-index: -1;
    pointer-events: none;
  }
}
.hero-video-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 25%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  opacity: var(--hero-veil-opacity, 1);
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap::before { opacity: 0; }
}
@media (min-width: 960px) {
  .hero-video-wrap { display: block; }
}
.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left top;
  background: transparent;
}
.hero-video-freeze {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.15s linear;
}
.hero-video-freeze.is-in { opacity: 1; }
.hero-mark span,
.hero-eyebrow,
.hero-tag { text-align: left; }
.hero-eyebrow { margin-top: clamp(32px, 5vw, 72px); margin-bottom: 14px; }
.hero-mark {
  font-family: var(--font-display);
  font-size: clamp(72px, 16vw, 240px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
}
.hero-mark span { display: block; }
/* Anton's side bearings aren't metric-matched between I and B — nudge the
   "businesses" line so its B visually aligns with the I's above and below. */
.hero-mark span:nth-child(2) { margin-left: calc(-0.005em - 0.5px); }
.hero-mark em { color: var(--forest); font-style: italic; }
.hero-tag {
  margin-top: clamp(48px, 7vw, 88px);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  max-width: 60ch;
  text-wrap: pretty;
}
.hero-tag-by { color: var(--muted-deep); }

/* Fullscreen-desktop layout: span full viewport so copy anchors
   to the left gutter and the video anchors to the right gutter.
   Placed after the base .hero-mark/.hero-tag rules so the cascade
   actually applies the overrides. */
@media (min-width: 1280px) {
  .hero {
    max-width: none;
    padding-inline: 0;
    padding-left: clamp(48px, 5vw, 120px);
    padding-right: 0;
  }
  .hero-mark { font-size: clamp(140px, 13vw, 280px); }
  .hero-mark span { white-space: nowrap; }
  .hero-tag { font-size: clamp(16px, 1.2vw, 20px); max-width: 46ch; }
  .hero-copy {
    max-width: calc(100vw - min(44vw, 820px) - clamp(48px, 5vw, 120px) - 24px);
    padding-left: 0;
  }
  .hero-video-spring {
    right: 0 !important;
    width: min(44vw, 820px) !important;
  }
}

/* ============================================================
   MARQUEE  —  one line, edge-dissolve mask, per-item magnify
   on hover. Quiet on the surface, rewards exploration.
   ============================================================ */
.marquee {
  padding: clamp(18px, 2.4vw, 34px) 0;
  position: relative;
  margin-top: 0;
  cursor: default;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 36px 60px -24px rgba(15, 61, 46, 0.28);
}
.marquee-track {
  display: flex;
  gap: clamp(40px, 5vw, 80px);
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.m-item {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 112px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  transform-origin: center center;
}
.m-item > .m-letter + .m-letter { margin-left: 0; }
.m-item::after { margin-left: clamp(40px, 5vw, 80px); }
.m-item::after {
  content: "";
  width: clamp(8px, 1vw, 14px);
  height: clamp(8px, 1vw, 14px);
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
  transition: transform 0.6s var(--spring);
}
.m-letter {
  display: inline-block;
  transform-origin: center bottom;
  will-change: transform, color;
  color: var(--ink);
}
.brands-word {
  display: inline-block;
  filter: url(#brands-lens);
  will-change: filter;
}
@media (prefers-reduced-motion: reduce) {
  .brands-word { filter: none !important; }
}

@keyframes marquee-l {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   STAIR  —  what i do, descending typographic composition
   ============================================================ */
.statement { padding-block: clamp(120px, 16vw, 220px); }
.stair {
  margin-top: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
}
.stair-line {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  padding: 0;
  transition: transform 0.6s var(--spring), color 0.4s var(--ease);
}
.s-1 { padding-left: 0; }
.s-2 { padding-left: clamp(32px, 8vw, 160px); }
.s-3 { padding-left: clamp(64px, 16vw, 320px); }
.s-4 {
  padding-left: clamp(96px, 24vw, 480px);
  color: var(--forest);
  font-style: italic;
}
.statement-foot {
  margin-top: clamp(56px, 8vw, 112px);
  margin-left: auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--muted-deep);
  max-width: 56ch;
  line-height: 1.55;
}
.statement-foot::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--forest);
  margin-bottom: 16px;
  margin-top: -25px;
}

/* ============================================================
   PORTFOLIO  —  full-bleed website screenshots, name overlay,
   3D tilt + dynamic shadow + cursor glare. Cards touch.
   ============================================================ */
.portfolio { padding-inline: 10px; }

/* ---------- PORTFOLIO INTRO — hero-scale doorway into the grid ---------- */
.portfolio-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.4vw, 36px);
  padding-inline: clamp(10px, 2vw, 24px);
  margin-bottom: clamp(32px, 5vw, 64px);
}
.portfolio-intro-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.portfolio-intro-count {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.portfolio-intro-count::before {
  content: "— ";
  color: var(--forest);
}
.portfolio-intro-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  display: flex;
  flex-direction: column;
}
.portfolio-intro-line {
  display: block;
  overflow: hidden;
}
.portfolio-intro-line:nth-child(2) { padding-left: clamp(24px, 6vw, 120px); }
.portfolio-intro-ink {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s var(--spring);
  will-change: clip-path;
}
.portfolio-intro-line.is-in .portfolio-intro-ink {
  clip-path: inset(0 0 0 0);
}
.portfolio-intro-line:nth-child(2) .portfolio-intro-ink {
  transition-delay: 0.16s;
}
.portfolio-intro-headline em {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.portfolio-intro-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.5;
  color: var(--muted-deep, var(--muted));
  max-width: 40ch;
  margin: clamp(8px, 1.2vw, 20px) 0 0;
  padding-left: clamp(24px, 6vw, 120px);
}
.portfolio-intro-rule {
  height: 1px;
  width: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s var(--ease);
  margin-top: clamp(20px, 3vw, 40px);
  opacity: 0.82;
}
.portfolio-intro-rule.is-in { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .portfolio-intro-ink,
  .portfolio-intro-line.is-in .portfolio-intro-ink {
    clip-path: none;
    transition: none;
  }
  .portfolio-intro-rule,
  .portfolio-intro-rule.is-in {
    transform: scaleX(1);
    transition: none;
  }
}

.work-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: clamp(40px, 6vw, 80px);
  perspective: 1400px;
}
.work-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background-color: var(--rule);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transform-style: preserve-3d;
  box-shadow: 0 4px 14px rgba(15, 61, 46, 0.08);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  isolation: isolate;
  overflow: hidden;
  will-change: transform;
}
.work-card:hover {
  z-index: 5;
  box-shadow: 0 24px 48px -18px rgba(15, 61, 46, 0.28),
              0 10px 22px -10px rgba(0, 0, 0, 0.15);
}
@media (prefers-reduced-motion: reduce) {
  .work-card,
  .work-card:hover {
    transform: none !important;
  }
}
/* Bottom-left darkening so the name reads on any screenshot */
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 70% at 0% 100%,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.55) 35%,
      rgba(0, 0, 0, 0.15) 65%,
      transparent 85%
    ),
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(0, 0, 0, 0.35) 100%
    );
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}
/* Cursor-following glare */
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    320px circle at var(--gx, 50%) var(--gy, 50%),
    rgba(255, 255, 255, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
.work-card:hover::before { opacity: 1; }

.work-card-name {
  position: absolute;
  bottom: clamp(28px, 3vw, 48px);
  left: clamp(28px, 3vw, 48px);
  right: clamp(28px, 3vw, 48px);
  z-index: 3;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
  transform: translateZ(30px);
  transition: color 0.4s var(--ease);
}
.work-card:hover .work-card-name { color: #ffffff; }

@media (max-width: 900px) {
  .work-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   ROW LIST  —  legacy pattern (unused after portfolio redesign)
   ============================================================ */
.row-list {
  list-style: none;
  margin-top: clamp(32px, 5vw, 64px);
  border-top: 1px solid var(--ink);
}
.row-list li { list-style: none; }
.row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: clamp(24px, 4vw, 80px);
  align-items: baseline;
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: padding 0.4s var(--spring);
}
a.row { display: grid; }
a.row:hover { padding-left: 16px; }
a.row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--forest);
  transition: width 0.4s var(--spring);
}
a.row:hover::before { width: 3px; }
.row-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.4s var(--ease);
}
a.row:hover .row-name { color: var(--forest); }
.row-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted-deep);
  max-width: 38ch;
}
.row-meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}
.row-meta .arrow {
  font-size: 14px;
  color: var(--ink);
  transition: transform 0.4s var(--spring), color 0.3s var(--ease);
  display: inline-block;
}
a.row:hover .row-meta .arrow { transform: translate(6px, -3px); color: var(--forest); }

/* ============================================================
   REVIEWS  —  editorial pull-quote with oversized forest mark
   that the body text wraps around (magazine treatment)
   ============================================================ */
.reviews-head {
  max-width: 720px;
  margin: 0 auto clamp(32px, 4.5vw, 64px);
  text-align: center;
}
.reviews-head .label { display: inline-block; margin-bottom: clamp(14px, 1.8vw, 22px); }
.reviews-title {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(38px, 5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.reviews-title em { color: var(--forest); font-style: italic; }

.reviews-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.4vw, 40px);
}
.review-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1.15fr;
  gap: clamp(24px, 3.5vw, 56px);
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(24px, 3.2vw, 52px);
  box-shadow: 0 28px 60px -32px rgba(15, 61, 46, 0.28),
              0 1px 0 rgba(15, 61, 46, 0.04) inset;
  isolation: isolate;
}

/* Scroll-locked reveal: as the card enters view, the frame expands outward
   from the center photo and the side columns slide out from behind it.
   The user scrubs the motion with their scroll wheel. */
@supports (animation-timeline: view()) {
  .review-card {
    animation: review-card-open both linear;
    animation-timeline: view();
    animation-range: entry 10% cover 42%;
  }
  .review-intro {
    animation: review-left-slide both linear;
    animation-timeline: view();
    animation-range: entry 20% cover 50%;
  }
  .review-body {
    animation: review-right-slide both linear;
    animation-timeline: view();
    animation-range: entry 20% cover 50%;
  }
  .review-photo {
    animation: review-photo-pop both linear;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }
}

@keyframes review-card-open {
  from { clip-path: inset(0 42% 0 42% round 18px); }
  to   { clip-path: inset(0 0 0 0 round 18px); }
}
@keyframes review-left-slide {
  from { opacity: 0; transform: translateX(35%) scale(0.97); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes review-right-slide {
  from { opacity: 0; transform: translateX(-35%) scale(0.97); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes review-photo-pop {
  from { transform: scale(0.92); filter: grayscale(0.3) contrast(1.02); }
  to   { transform: scale(1);    filter: grayscale(0.1) contrast(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  .review-card, .review-intro, .review-body, .review-photo { animation: none; }
}

.review-intro .label { display: block; margin-bottom: clamp(14px, 1.8vw, 22px); }
.review-title {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 76px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.review-title em {
  color: var(--forest);
  font-style: italic;
  display: block;
}

.review-photo {
  width: clamp(160px, 22vw, 300px);
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--rule);
  box-shadow: 0 18px 36px -18px rgba(0, 0, 0, 0.25);
  transform: translateZ(0);
}
.review-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.1) contrast(1.02);
}

.review-body { position: relative; }
.review-mark {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--forest);
  font-size: clamp(72px, 8vw, 128px);
  line-height: 0.55;
  display: block;
  margin-bottom: clamp(14px, 1.6vw, 22px);
  user-select: none;
  pointer-events: none;
}
.review-quote-text {
  margin: 0 0 clamp(18px, 2.2vw, 32px);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: pretty;
  max-width: 36ch;
}
.review-attrib {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.review-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-projects {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.review-projects a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.review-projects a:hover {
  color: var(--brand, #ff6b1a);
  transform: translateX(2px);
}

/* Multi-paragraph testimonials */
.review-quote-text p { margin: 0 0 0.85em; }
.review-quote-text p:last-child { margin-bottom: 0; }

/* Longer, multi-paragraph testimonials get a wider measure */
.review-quote-long { max-width: 52ch; }

/* Monogram tile stands in for a headshot when a client has no photo */
.review-monogram {
  width: clamp(160px, 22vw, 300px);
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--forest) 0%, #0a2419 100%);
  box-shadow: 0 18px 36px -18px rgba(0, 0, 0, 0.25);
  transform: translateZ(0);
}
.review-monogram span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 6.5vw, 96px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--paper);
}

@supports (animation-timeline: view()) {
  .review-monogram {
    animation: review-photo-pop both linear;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .review-monogram { animation: none; }
}

@media (max-width: 900px) {
  .review-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    clip-path: inset(0 12% 0 12% round 18px);
    gap: clamp(18px, 3vw, 28px);
  }
  .review-card.is-in { clip-path: inset(0 0 0 0 round 18px); }
  .review-intro .label { display: inline-block; }
  .review-attrib { align-items: center; }
  .review-quote-text { margin-inline: auto; }
  .review-projects { justify-content: center; }
}

/* ============================================================
   FAQ  —  native <details> accordion, editorial card stack
   ============================================================ */
.faq-head {
  max-width: 720px;
  margin: 0 auto clamp(32px, 4.5vw, 64px);
  text-align: center;
}
.faq-head .label { display: inline-block; margin-bottom: clamp(14px, 1.8vw, 22px); }
.faq-sub { margin-inline: auto; }
.faq-title {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  white-space: nowrap;
}
.faq-title em { color: var(--forest); font-style: italic; }
.faq-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--muted-deep, var(--muted));
  max-width: 52ch;
  margin: clamp(14px, 1.8vw, 22px) auto 0;
  line-height: 1.55;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.1vw, 14px);
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.35s var(--ease), box-shadow 0.5s var(--ease);
}
.faq-item[open] {
  border-color: rgba(15, 61, 46, 0.35);
  box-shadow: 0 18px 40px -28px rgba(15, 61, 46, 0.35);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 2.2vw, 28px) clamp(22px, 2.6vw, 36px);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.45s var(--spring);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.faq-icon::before { /* horizontal bar */
  width: 10px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {  /* vertical bar */
  width: 1.5px; height: 10px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon {
  background: var(--forest);
  border-color: var(--forest);
  transform: rotate(180deg);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--paper); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-item:hover:not([open]) {
  border-color: rgba(15, 61, 46, 0.28);
}
.faq-item:hover:not([open]) .faq-icon { border-color: var(--forest); }

.faq-a {
  padding: 0 clamp(22px, 2.6vw, 36px) clamp(20px, 2.4vw, 30px);
  max-width: 70ch;
}
.faq-a p {
  margin: 0 0 0.9em;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.6;
  color: var(--muted-deep, var(--muted));
  text-wrap: pretty;
}
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong { color: var(--ink); font-weight: 500; }
.faq-tiers-disclaimer {
  margin: 0.6em 0 1.6em;
  padding-bottom: 1.2em;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(13px, 0.92vw, 14.5px);
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}

/* Pricing — breaks out of .faq-a's 70ch cap to use full FAQ-item width */
.faq-pricing {
  padding: 0 clamp(22px, 2.6vw, 36px) clamp(20px, 2.4vw, 30px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
  margin-top: 0;
}
.pricing-grid > .tier-card--wide {
  grid-column: span 2;
}

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  transition: border-color 0.3s var(--ease, ease), transform 0.3s var(--ease, ease), box-shadow 0.3s var(--ease, ease);
}
.tier-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -20px rgba(14, 14, 14, 0.35);
}

.tier-card--featured {
  border-color: var(--forest);
  background: linear-gradient(180deg, rgba(15, 61, 46, 0.05) 0%, rgba(15, 61, 46, 0) 70%);
}
.tier-card--featured:hover { border-color: var(--forest); }

.tier-badge {
  position: absolute;
  top: -10px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--forest);
  padding: 5px 9px;
  border-radius: 999px;
  line-height: 1;
}

.tier-card-head {
  display: flex;
  flex-direction: column;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 14px;
}
.tier-name {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 1.2vw, 20px);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.tier-price {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.tier-meta {
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}

.tier-features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.tier-features li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink);
  text-wrap: pretty;
}
.tier-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 6px;
  border-left: 1.5px solid var(--forest);
  border-bottom: 1.5px solid var(--forest);
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}
.tier-features--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 24px;
}

.tier-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  align-self: flex-start;
  white-space: nowrap;
  transition: color 0.2s var(--ease, ease), gap 0.25s var(--ease, ease);
}
.tier-cta span {
  color: var(--muted);
  transition: color 0.2s var(--ease, ease), transform 0.25s var(--ease, ease);
}
.tier-cta:hover { color: var(--forest); gap: 9px; }
.tier-cta:hover span { color: var(--forest); transform: translateX(2px); }

.tier-cta--filled {
  align-self: stretch;
  justify-content: center;
  background: var(--forest);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
}
.tier-cta--filled span { color: var(--paper); }
.tier-cta--filled:hover {
  color: var(--paper);
  background: #0b2e23;
  gap: 9px;
}
.tier-cta--filled:hover span { color: var(--paper); }

/* Mobile — horizontal scroll-snap, no vertical stacks */
@media (max-width: 720px) {
  .pricing-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 8px 4px 14px;
    margin-inline: -4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pricing-grid::-webkit-scrollbar { display: none; }
  .pricing-grid > .tier-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
  .pricing-grid > .tier-card--wide {
    flex: 0 0 92%;
    grid-column: auto;
  }
  .tier-price { font-size: 28px; }
  .tier-features--two-col { grid-template-columns: 1fr; }
}

/* Smooth expand using details-content in supporting browsers, fallback to instant */
@supports (interpolate-size: allow-keywords) {
  .faq-item { transition: border-color 0.35s var(--ease), box-shadow 0.5s var(--ease); }
  .faq-item::details-content {
    block-size: 0;
    overflow: clip;
    transition: block-size 0.45s var(--ease), content-visibility 0.45s allow-discrete;
  }
  .faq-item[open]::details-content { block-size: auto; }
}

/* ---------- LEGAL FOOTER (privacy/terms pages) ---------- */
.legal-footer {
  border-top: 1px solid var(--rule);
  padding: 32px var(--gutter);
}
.legal-footer-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  gap: 20px;
  flex-wrap: wrap;
}
.legal-footer a { color: var(--muted); transition: color 0.25s var(--ease); }
.legal-footer a:hover { color: var(--forest); }
.legal-footer span[aria-hidden] { margin: 0 6px; color: var(--rule); }

/* ============================================================
   CONTACT  —  inline form + direct contact info
   ============================================================ */
.cta-line {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: clamp(24px, 3vw, 40px);
  max-width: 12ch;
}
.cta-line em { color: var(--forest); font-style: italic; }

.contact-grid {
  margin-top: clamp(56px, 7vw, 112px);
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(48px, 7vw, 120px);
  border-top: 1px solid var(--rule);
  padding-top: clamp(40px, 5vw, 72px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 32px);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 32px);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label .opt {
  text-transform: none;
  letter-spacing: 0.04em;
  opacity: 0.7;
}
.field input,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
  resize: vertical;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field textarea:focus { border-bottom-color: var(--forest); }
.field textarea { min-height: 90px; line-height: 1.55; }
.field input:invalid:not(:focus):not(:placeholder-shown),
.field textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-bottom-color: #c1272d;
}

.check {
  display: inline-flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted-deep);
  cursor: pointer;
  margin-top: 4px;
  line-height: 1.5;
  max-width: 56ch;
}
.check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  background: transparent;
  position: relative;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.check input[type="checkbox"]:checked {
  background: var(--forest);
  border-color: var(--forest);
}
.check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px; top: 0;
  width: 5px; height: 10px;
  border: solid var(--paper);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.check a { color: var(--ink); border-bottom: 1px solid var(--rule); }
.check a:hover { color: var(--forest); border-color: var(--forest); }

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.contact-submit {
  padding: 14px 32px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-submit:hover { background: var(--forest); }
.contact-submit:disabled { opacity: 0.6; cursor: wait; }
.form-status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  min-height: 16px;
}
.form-status.is-ok { color: var(--forest); }
.form-status.is-err { color: #c1272d; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 44px);
}
.info-block { display: flex; flex-direction: column; gap: 8px; }
.info-email {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
  max-width: 100%;
  font-size: clamp(18px, 2.1vw, 28px);
}
.info-email:hover { color: var(--forest); border-color: var(--forest); }
.info-block p {
  font-size: 15px;
  color: var(--muted-deep);
  line-height: 1.5;
}

.info-reps { padding: 0; }
.info-reps summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  padding-bottom: 8px;
}
.info-reps summary::-webkit-details-marker { display: none; }
.info-reps .reps-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.info-reps .reps-toggle::before,
.info-reps .reps-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.info-reps .reps-toggle::before { width: 9px; height: 1.2px; transform: translate(-50%, -50%); }
.info-reps .reps-toggle::after  { width: 1.2px; height: 9px; transform: translate(-50%, -50%); }
.info-reps[open] .reps-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.info-reps[open] .reps-toggle::before { background: var(--forest); }

.rep-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rep {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.rep:first-child { border-top: 0; padding-top: 0; }
.rep-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.rep-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--forest) 0%, #1f4a3a 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: uppercase;
  display: grid;
  place-items: center;
  line-height: 1;
  user-select: none;
}
.rep-avatar::before {
  content: attr(data-initial);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  line-height: 1;
}
.rep-avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rep-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.05vw, 17px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
}
.rep-email,
.rep-phone {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--muted-deep);
  transition: color 0.25s var(--ease);
  word-break: break-all;
  line-height: 1.4;
}
.rep-phone { font-variant-numeric: tabular-nums; word-break: normal; }
.rep-email:hover,
.rep-phone:hover { color: var(--forest); }
.rep-location {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 2px;
}
.rep-recruit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), gap 0.3s var(--ease);
}
.rep-recruit:hover { color: var(--forest); border-color: var(--forest); gap: 10px; }

.rep-schedule {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), gap 0.3s var(--ease);
}
.rep-schedule:hover { color: var(--forest); border-color: var(--forest); gap: 10px; }

.info-founder .rep-avatar { width: 64px; height: 64px; font-size: 24px; }
.info-founder .rep-list { margin-top: 12px; }

.toast {
  position: fixed;
  bottom: clamp(20px, 3vw, 40px);
  left: 50%;
  transform: translate(-50%, 24px);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 44px -12px rgba(15, 61, 46, 0.35),
              0 6px 18px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
  z-index: 9999;
  max-width: calc(100% - 32px);
  text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   FOOT  —  one line
   ============================================================ */
.foot {
  background: var(--forest);
  padding: 48px 0 0;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 64px);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.7);
  overflow: visible;
}
.foot-meta {
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.foot .dot { color: rgba(250, 250, 248, 0.4); padding: 0 2px; }
.foot a { color: rgba(250, 250, 248, 0.7); transition: color 0.3s var(--ease); }
.foot a:hover { color: var(--paper); }

.foot-wordmark {
  display: block;
  width: 100%;
  height: 17.5vw;
  color: var(--paper);
  margin: 0;
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--spring), transform 0.7s var(--spring);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .row { grid-template-columns: 1fr; gap: 8px; }
  .row-meta { justify-content: flex-start; }
  .review-quote { font-size: clamp(20px, 5.5vw, 28px); }
  .review-quote::before { font-size: clamp(120px, 30vw, 200px); }
  .s-2 { padding-left: clamp(24px, 6vw, 80px); }
  .s-3 { padding-left: clamp(48px, 12vw, 160px); }
  .s-4 { padding-left: clamp(72px, 18vw, 200px); }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   HOME (personal brand rebuild) — hero · CD callout · ventures
   Additive block. Scoped to .home-hero / .cd-callout / .ventures
   so it never touches the shared rules above.
   ============================================================ */

/* ---------- HERO — David Chamberlin ---------- */
.home-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  padding-top: clamp(24px, 4vw, 56px);
  padding-bottom: clamp(56px, 8vw, 112px);
}
.home-hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
}
.home-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-hero-copy .label { margin-bottom: clamp(16px, 2vw, 26px); }
.home-hero-name {
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 176px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.home-hero-name span { display: block; }
.home-hero-tag {
  margin-top: clamp(28px, 4vw, 48px);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--muted-deep);
  max-width: 42ch;
  text-wrap: pretty;
}
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: clamp(28px, 3.5vw, 44px);
}
.home-hero-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 3px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.home-hero-link:hover { color: var(--forest); border-color: var(--forest); }
.home-hero-portrait {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--rule);
  box-shadow: 0 34px 70px -34px rgba(15, 61, 46, 0.42),
              0 1px 0 rgba(15, 61, 46, 0.05) inset;
  aspect-ratio: 1 / 1;
  max-width: 360px;
  width: 100%;
  justify-self: end;
}
.home-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.12) contrast(1.02);
}

@media (max-width: 860px) {
  .home-hero-inner { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 44px); }
  .home-hero-portrait { order: -1; max-width: 320px; justify-self: start; }
}

/* ---------- CALLOUT — Chamberlin Design ---------- */
.cd-callout-section { padding-block: clamp(24px, 4vw, 48px); }
.cd-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 3.6vw, 48px);
  background: linear-gradient(180deg, rgba(15, 61, 46, 0.055) 0%, rgba(15, 61, 46, 0.015) 100%);
  border: 1px solid rgba(15, 61, 46, 0.3);
  border-radius: 22px;
  box-shadow: 0 30px 64px -34px rgba(15, 61, 46, 0.34);
  transition: transform 0.35s var(--spring), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.cd-callout:hover {
  transform: translateY(-3px);
  border-color: var(--forest);
  box-shadow: 0 40px 80px -32px rgba(15, 61, 46, 0.42);
}
.cd-callout-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cd-callout-logo img {
  height: clamp(52px, 6vw, 76px);
  width: auto;
}
.cd-callout-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.cd-callout-line {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.cd-callout-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  background: var(--forest);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  transition: background 0.3s var(--ease);
}
.cd-callout:hover .cd-callout-btn { background: #0b2e23; }
.cd-callout-arrow { transition: transform 0.35s var(--spring); }
.cd-callout:hover .cd-callout-arrow { transform: translate(3px, -3px); }

@media (max-width: 780px) {
  .cd-callout {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: clamp(18px, 5vw, 26px);
  }
  .cd-callout-btn { align-self: stretch; justify-content: center; }
}

/* ---------- VENTURES ---------- */
.ventures-head { margin-bottom: clamp(28px, 4vw, 52px); }
.ventures-head .label { display: block; margin-bottom: clamp(12px, 1.6vw, 18px); }
.ventures-title {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(38px, 5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.ventures-title em { color: var(--forest); font-style: italic; }

.ventures-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 1.2vw, 16px);
}
.venture {
  display: flex;
  flex-direction: column;
  min-height: clamp(180px, 20vw, 240px);
  padding: clamp(22px, 2.6vw, 32px);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 16px;
  box-shadow: 0 20px 44px -34px rgba(15, 61, 46, 0.28);
  transition: transform 0.3s var(--spring), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.venture:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 61, 46, 0.4);
  box-shadow: 0 30px 56px -30px rgba(15, 61, 46, 0.34);
}
.venture-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.venture-idx {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.venture-idx::before { content: "— "; color: var(--forest); }
.venture-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-deep);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 5px 11px;
  white-space: nowrap;
}
.venture-name {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.venture-desc {
  margin-top: 10px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.5;
  color: var(--muted-deep);
}

@media (min-width: 560px) {
  .ventures-grid { grid-template-columns: repeat(2, 1fr); }
  .venture--wide { grid-column: span 2; }
}
@media (min-width: 920px) {
  .ventures-grid { grid-template-columns: repeat(3, 1fr); }
}
.venture--wide {
  background: linear-gradient(165deg, rgba(15, 61, 46, 0.05) 0%, rgba(15, 61, 46, 0) 62%);
  border-color: rgba(15, 61, 46, 0.28);
}
.venture--wide .venture-name { font-size: clamp(28px, 3.4vw, 48px); }
