/* =========================================================
   Sam Ford Collins — Website
   Layered on top of styles.css (brand tokens + Fraunces config)
   ========================================================= */

html, body {
  background: var(--cream);
  color: var(--emerald);
  font-family: 'DM Sans', sans-serif;
}
body { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Sticky nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 56px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--slate);
}
.nav-mark {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 600;
  font-size: 18px;
  color: var(--emerald);
  letter-spacing: -0.005em;
}
.nav-mark .italic { font-style: italic; font-weight: 400; }
.nav-links {
  display: flex; gap: 28px; justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  color: #26201A;
}
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover,
.nav-links a.active { color: var(--wine); }
.nav-cta {
  justify-self: end;
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic;
  font-weight: 500; font-size: 14px;
  color: var(--wine);
  border-bottom: 0.5px solid var(--wine);
  padding-bottom: 2px;
}

/* Hamburger — hidden on desktop, replaces nav links + cta on mobile */
.nav-hamburger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--emerald);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
body.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Page header (used on About / Work / Methodology / Services) ----------
   A short editorial header that opens each interior page with a pull-quote
   and a page title. Background and accent color vary per page. */
.page-header {
  position: relative;
  padding: 140px 56px 100px;
  border-bottom: 0.5px solid var(--slate);
  overflow: hidden;
}
.page-header.on-cream      { background: var(--cream); }
.page-header.on-cream-warm { background: var(--cream-warm); }
.page-header.on-emerald    { background: var(--emerald); color: var(--cream); }
.page-header.on-wine       { background: var(--wine); color: var(--cream); }

.page-header-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 36px;
}
.page-header.on-cream      .page-header-eyebrow { color: var(--rose); }
.page-header.on-cream-warm .page-header-eyebrow { color: var(--gold); }
.page-header.on-emerald    .page-header-eyebrow { color: var(--gold); }
.page-header.on-wine       .page-header-eyebrow { color: var(--gold); }

.page-header-quote {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 1180px;
  margin: 0 0 32px;
}
.page-header-quote .italic { font-style: italic; font-weight: 400; }
.page-header.on-cream      .page-header-quote .italic { color: var(--wine); }
.page-header.on-cream-warm .page-header-quote .italic { color: var(--wine); }
.page-header.on-emerald    .page-header-quote .italic { color: var(--gold); }
.page-header.on-wine       .page-header-quote .italic { color: var(--gold); }

.page-header-attribution {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic; font-weight: 400;
  font-size: 18px;
  opacity: 0.75;
  margin-top: -8px;
}
.page-header-title {
  margin-top: 56px;
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 0.5px solid currentColor;
  padding-top: 18px;
  opacity: 0.7;
}
.page-header-title .label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
}

/* The big > etched watermark behind a header — set color via background-color */
.header-watermark {
  position: absolute;
  right: -120px; top: 50%;
  transform: translateY(-50%) rotate(-3deg);
  width: 620px;
  aspect-ratio: 415 / 370;
  -webkit-mask-image: url("assets/gt-etched-mask.png");
          mask-image: url("assets/gt-etched-mask.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

/* ---------- Section scaffolding ---------- */
section {
  position: relative;
  padding: 120px 56px;
}
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.section-eyebrow.gold { color: var(--gold); }
.section-eyebrow.rose { color: var(--rose); }
.section-eyebrow.wine { color: var(--wine); }

.section-heading {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--emerald);
  margin: 0;
}
.section-heading .italic { font-style: italic; font-weight: 400; color: var(--wine); }

.section-deck {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic;
  font-weight: 400;
  font-size: 22px; line-height: 1.4;
  color: var(--ink, #26201A);
  max-width: 720px;
  margin: 18px 0 0;
}

.container { max-width: 1280px; margin: 0 auto; }

/* ---------- HERO (homepage only) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 120px 56px 80px;
  text-align: center;
  overflow: hidden;
  background: var(--cream);
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 36px;
}
.hero-name {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 600;
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--emerald);
  margin: 0;
}
.hero-name .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
}
.hero-rule {
  width: 64px; height: 0.5px;
  background: var(--gold);
  margin: 38px auto;
}
.hero-tagline {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
  color: var(--emerald);
  letter-spacing: -0.015em;
  max-width: 820px;
  margin: 0 auto;
}
.hero-tagline .italic { font-style: italic; color: var(--wine); }
.hero-sub {
  margin-top: 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; line-height: 1.7;
  letter-spacing: 0.02em;
  color: #26201A;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.hero-cta {
  margin-top: 56px;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  background: var(--emerald);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 1px;
  transition: background 0.2s ease;
}
.hero-cta:hover { background: var(--emerald-deep); }
.hero-cta .gt-svg { width: 16px; height: 14px; }

.hero-watermark {
  position: absolute;
  right: -120px; top: 50%;
  transform: translateY(-50%) rotate(-3deg);
  width: 720px;
  aspect-ratio: 415 / 370;
  -webkit-mask-image: url("assets/gt-etched-mask.png");
          mask-image: url("assets/gt-etched-mask.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--gold);
  opacity: 0.10;
  pointer-events: none;
}
.hero-trust {
  position: absolute;
  bottom: 36px; left: 56px; right: 56px;
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--slate);
}
.hero-trust em {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic; font-weight: 400; font-size: 13px; letter-spacing: 0;
  color: var(--emerald); text-transform: none;
}

/* ---------- CLIENT LOGO GRID ---------- */
.clients {
  background: var(--cream-warm);
  padding: 80px 56px 88px;
  border-top: 0.5px solid var(--slate);
  border-bottom: 0.5px solid var(--slate);
}
.clients-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 56px;
  max-width: 1280px; margin-left: auto; margin-right: auto;
  gap: 24px;
}
.clients-head .heading {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-weight: 500;
  font-size: 22px;
  color: var(--emerald);
  letter-spacing: -0.005em;
}
.clients-head .heading .italic { font-style: italic; color: var(--wine); font-weight: 400; }
.clients-head .link {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic; font-weight: 500; font-size: 15px;
  color: var(--wine);
  border-bottom: 0.5px solid var(--wine);
  padding-bottom: 2px;
  white-space: nowrap;
}
.clients-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.logo-cell {
  aspect-ratio: 5 / 2;
  display: flex; align-items: center; justify-content: center;
  border-right: 0.5px solid var(--slate);
  border-bottom: 0.5px solid var(--slate);
  padding: 28px 32px;
  transition: background 0.25s ease, opacity 0.25s ease;
  opacity: 0.78;
}
.logo-cell:hover { background: rgba(91, 35, 51, 0.04); opacity: 1; }
.logo-cell:nth-child(5n) { border-right: 0; }
.logo-cell:nth-last-child(-n+5) { border-bottom: 0; }
.logo-cell img {
  max-width: 100%;
  max-height: 64px;
  width: auto; height: auto;
  object-fit: contain;
}
.logo-cell.lg img { max-height: 80px; }
.logo-cell.md img { max-height: 60px; }
.logo-cell.sm img { max-height: 48px; }

/* ---------- CASE STUDY SPREAD ---------- */
.case-study {
  background: var(--cream);
  padding: 0;
  overflow: hidden;
}
.case-pages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
}
.case-left {
  background: var(--emerald);
  position: relative;
  overflow: hidden;
  padding: 56px 56px;
  color: var(--cream);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 40px;
}
.case-left.on-wine     { background: var(--wine); }
.case-left.on-navy     { background: var(--navy); }
.case-left.on-emerald-deep { background: var(--emerald-deep); }

.case-ghost {
  position: absolute;
  left: -40px; top: -120px;
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-style: italic;
  font-weight: 300;
  font-size: 620px;
  line-height: 0.78;
  color: var(--emerald-deep);
  user-select: none;
  pointer-events: none;
}
.case-left.on-wine     .case-ghost { color: rgba(0,0,0,0.18); }
.case-left.on-navy     .case-ghost { color: rgba(0,0,0,0.32); }
.case-left.on-emerald-deep .case-ghost { color: rgba(0,0,0,0.22); }

.case-masthead {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
}
.case-masthead .label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
}
.case-masthead .gold { color: var(--gold); }
.case-masthead .rose { color: var(--rose); }
.case-headline {
  position: relative; z-index: 2;
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 600;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  max-width: 460px;
  margin: 0;
}
.case-headline .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.case-deck {
  position: relative; z-index: 2;
  margin-top: 28px;
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
  color: var(--cream-warm);
  max-width: 440px;
}
.case-foot {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: end;
  border-top: 0.5px solid rgba(212, 168, 67, 0.4);
  padding-top: 18px;
  gap: 24px;
}
.case-foot .meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--slate);
}
.case-foot .meta .em { color: var(--gold); font-weight: 700; }
.case-gt {
  width: 64px;
  aspect-ratio: 415 / 370;
  -webkit-mask-image: url("assets/gt-etched-mask.png");
          mask-image: url("assets/gt-etched-mask.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--gold);
  transform: rotate(-4deg);
  flex-shrink: 0;
}

.case-right {
  background: var(--cream-warm);
  padding: 56px 56px;
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
}
.case-right.on-cream { background: var(--cream); }
.case-right .label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 24px;
}

/* Case video links — under the body, above numbers */
.case-videos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 0 0 32px;
  padding: 14px 0 0;
  border-top: 0.5px solid var(--slate);
}
.case-videos-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate);
}
.case-videos a {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--wine);
  border-bottom: 0.5px solid var(--wine);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.case-videos a:hover { color: var(--emerald); border-color: var(--emerald); }
.case-pull {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--emerald);
  max-width: 540px;
  margin: 0 0 36px;
}
.case-pull .italic { font-style: italic; color: var(--wine); }
.case-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; line-height: 1.7;
  color: #26201A;
  max-width: 520px;
  margin: 0 0 48px;
}
.case-body p { margin: 0 0 16px; }
.case-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--slate);
  padding-top: 28px;
  margin-top: auto;
}
.num-cell {
  border-right: 0.5px solid var(--slate);
  padding-right: 20px;
}
.num-cell:last-child { border-right: 0; padding-right: 0; }
.num-value {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 600;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--wine);
}
.num-value .italic { font-style: italic; font-weight: 400; }
.num-label {
  margin-top: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.4;
}

/* Recognition strip — used between case studies */
.recognition {
  background: var(--navy);
  color: var(--cream);
  padding: 28px 56px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
}
.recognition .em {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic; font-weight: 400; font-size: 16px;
  letter-spacing: 0; text-transform: none;
  color: var(--gold);
}

/* ---------- METHOD CARDS (homepage + methodology) ---------- */
.method {
  background: var(--cream);
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--slate);
  border-bottom: 0.5px solid var(--slate);
  margin-top: 64px;
}
.method-card {
  padding: 48px 32px 56px;
  border-right: 0.5px solid var(--slate);
}
.method-card:last-child { border-right: 0; }
.method-num {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--gold);
  margin: 0 0 18px;
}
.method-card h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--emerald);
  margin: 0 0 8px;
}
.method-card .lede {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: var(--wine);
  margin: 0 0 18px;
}
.method-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #26201A;
  margin: 0;
}

/* ---------- BELIEFS / NON-NEGOTIABLES ---------- */
.beliefs {
  background: var(--emerald);
  color: var(--cream);
}
.beliefs .section-heading { color: var(--cream); }
.beliefs .section-heading .italic { color: var(--gold); }
.beliefs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 0.5px solid rgba(212, 168, 67, 0.35);
}
.belief {
  padding: 40px 40px 48px;
  border-right: 0.5px solid rgba(212, 168, 67, 0.35);
  border-bottom: 0.5px solid rgba(212, 168, 67, 0.35);
}
.belief:nth-child(2n) { border-right: 0; }
.belief:nth-last-child(-n+2) { border-bottom: 0; }
.belief h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 14px;
}
.belief h3 .gt {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin: 0 6px;
}
.belief p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--cream-warm);
  opacity: 0.9;
  margin: 0;
  max-width: 480px;
}

/* ---------- ABOUT — bio split ---------- */
.bio {
  background: var(--cream-warm);
}
.bio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.bio-portrait {
  aspect-ratio: 4 / 5;
  background: var(--emerald);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.bio-portrait .placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  opacity: 0.5;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.bio-portrait img { width: 100%; height: 100%; object-fit: cover; }
.bio-text h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 600;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--emerald);
  margin: 0 0 28px;
}
.bio-text h2 .italic { font-style: italic; font-weight: 400; color: var(--wine); }
.bio-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; line-height: 1.75;
  color: #26201A;
  margin: 0 0 16px;
  max-width: 600px;
}
.bio-text p strong { color: var(--emerald); font-weight: 700; }
.bio-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 0.5px solid var(--slate);
  padding-top: 28px;
}
.bio-stat { border-right: 0.5px solid var(--slate); padding-right: 20px; }
.bio-stat:last-child { border-right: 0; padding-right: 0; }
.bio-stat-value {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 600;
  font-size: 56px; line-height: 1;
  letter-spacing: -0.025em;
  color: var(--wine);
}
.bio-stat-label {
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.4;
}

/* ---------- SERVICES — entry points ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 0.5px solid var(--slate);
  border-left: 0.5px solid var(--slate);
}
.service-card {
  padding: 48px 40px;
  border-right: 0.5px solid var(--slate);
  border-bottom: 0.5px solid var(--slate);
  background: var(--cream);
  transition: background 0.25s ease;
  display: flex; flex-direction: column; gap: 18px;
}
.service-card:hover { background: var(--cream-warm); }
.service-num {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-style: italic; font-weight: 400;
  font-size: 56px; line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--gold);
}
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--emerald);
  margin: 0;
}
.service-card h3 .italic { font-style: italic; color: var(--wine); font-weight: 400; }
.service-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; line-height: 1.7;
  color: #26201A;
  margin: 0;
  max-width: 480px;
}
.service-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 0.5px solid var(--slate);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--slate);
}
.service-meta .em {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic; font-weight: 500;
  font-size: 14px; letter-spacing: 0; text-transform: none;
  color: var(--wine);
}

/* ---------- METHODOLOGY — phase rows ---------- */
.phase-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 0.5px solid var(--slate);
}
.phase-row:first-child { border-top: 0.5px solid var(--slate); }
.phase-num {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-style: italic; font-weight: 400;
  font-size: 144px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.phase-content h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 600;
  font-size: 56px;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--emerald);
  margin: 0 0 14px;
}
.phase-content h3 .italic { font-style: italic; font-weight: 400; color: var(--wine); }
.phase-content .deck {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic; font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: var(--wine);
  margin: 0 0 24px;
  max-width: 720px;
}
.phase-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; line-height: 1.75;
  color: #26201A;
  margin: 0 0 14px;
  max-width: 720px;
}
.phase-content .outputs {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 0.5px solid var(--slate);
  display: flex; gap: 32px; flex-wrap: wrap;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate);
}
.phase-content .outputs strong {
  color: var(--navy); font-weight: 700;
}

/* ---------- CTA BLOCK (used on every page footer above the footer) ---------- */
.cta-block {
  background: var(--wine);
  color: var(--cream);
  padding: 120px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block .section-eyebrow { color: var(--gold); }
.cta-block h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 600;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 14px 0 24px;
  max-width: 1000px;
  margin-left: auto; margin-right: auto;
}
.cta-block h2 .italic { font-style: italic; font-weight: 400; color: var(--gold); }
.cta-block p {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.5;
  color: var(--cream-warm);
  max-width: 640px;
  margin: 0 auto 48px;
}
.cta-block .btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 32px;
  background: var(--cream);
  color: var(--wine);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 1px;
  transition: background 0.2s ease, color 0.2s ease;
}
.cta-block .btn:hover { background: var(--gold); color: var(--wine); }
.cta-block .contact {
  margin-top: 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--cream-warm); opacity: 0.85;
}
.cta-block .contact a { border-bottom: 0.5px solid currentColor; padding-bottom: 1px; }
.cta-block-watermark {
  position: absolute;
  right: -100px; bottom: -160px;
  width: 540px;
  aspect-ratio: 415 / 370;
  -webkit-mask-image: url("assets/gt-etched-mask.png");
          mask-image: url("assets/gt-etched-mask.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--gold);
  opacity: 0.10;
  pointer-events: none;
  transform: rotate(-4deg);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--emerald-deep);
  color: var(--cream);
  padding: 80px 56px 40px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-mark {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 600;
  font-size: 32px; line-height: 1;
  color: var(--cream);
  letter-spacing: -0.015em;
}
.footer-mark .italic { font-style: italic; font-weight: 400; color: var(--gold); }
.footer-essence {
  margin-top: 18px;
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic; font-weight: 400;
  font-size: 16px;
  color: var(--gold);
}
.footer-essence .small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--slate);
  margin-top: 6px;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer-col a, .footer-col p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; line-height: 1.8;
  color: var(--cream-warm);
  display: block;
  opacity: 0.85;
  margin: 0;
}
.footer-col a:hover { color: var(--gold); opacity: 1; }
.footer-bottom {
  max-width: 1280px;
  margin: 64px auto 0;
  padding-top: 24px;
  border-top: 0.5px solid rgba(212, 168, 67, 0.3);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--slate);
}

/* ---------- Generic 2-col grid ---------- */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

/* ---------- BLOG INDEX ---------- */
.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 0.5px solid var(--slate);
}
.blog-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 48px;
  align-items: baseline;
  padding: 40px 0;
  border-bottom: 0.5px solid var(--slate);
  transition: background 0.2s ease;
}
.blog-card:hover { background: rgba(91, 35, 51, 0.025); }
.blog-card-meta {
  font-family: 'DM Sans', sans-serif;
}

/* ===========================================================
   MOBILE RESPONSIVE — restored from May 6 backup,
   extended with rules for blog-grid, hero-trust, hamburger menu,
   and tighter sub-600px breakpoint.
   =========================================================== */
@media (max-width: 900px) {
  /* Nav: show hamburger, hide desktop links + cta */
  .nav { grid-template-columns: 1fr auto; padding: 18px 24px; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--slate);
    padding: 8px 24px 20px;
  }
  body.nav-open .nav-links { display: flex; }
  body.nav-open .nav-links a {
    padding: 14px 0;
    border-bottom: 0.5px solid rgba(143, 163, 154, 0.4);
    font-size: 13px;
  }
  body.nav-open .nav-links a:last-child { border-bottom: 0; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Section padding */
  section, .clients, .recognition, .cta-block, .site-footer, .page-header {
    padding-left: 24px; padding-right: 24px;
  }
  .page-header { padding-top: 80px; padding-bottom: 64px; }
  section { padding-top: 72px; padding-bottom: 72px; }
  .cta-block { padding-top: 80px; padding-bottom: 80px; }

  /* Hero */
  .hero { padding: 80px 24px 64px; min-height: 80vh; }
  .hero-watermark { width: 420px; right: -180px; }
  .hero-trust {
    position: static;
    flex-direction: column; gap: 8px;
    align-items: flex-start;
    margin-top: 48px;
  }

  /* Page header watermark — pull it tighter so it doesn't spill */
  .header-watermark { width: 380px; right: -140px; }

  /* Client logos */
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-cell:nth-child(5n) { border-right: 0.5px solid var(--slate); }
  .logo-cell:nth-child(2n) { border-right: 0; }
  .logo-cell:nth-last-child(-n+5) { border-bottom: 0.5px solid var(--slate); }
  .logo-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .clients-head { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Case study spreads */
  .case-pages { grid-template-columns: 1fr; min-height: 0; }
  .case-left, .case-right { padding: 48px 32px; }
  .case-ghost { font-size: 380px; left: -20px; top: -40px; }
  .case-numbers { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .num-cell:nth-child(2n) { border-right: 0; }

  /* Recognition strip */
  .recognition { flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px; }

  /* Method cards */
  .method-grid { grid-template-columns: 1fr 1fr; }
  .method-card:nth-child(2n) { border-right: 0; }
  .method-card { border-bottom: 0.5px solid var(--slate); }
  .method-card:nth-last-child(-n+2) { border-bottom: 0; }

  /* Beliefs */
  .beliefs-grid { grid-template-columns: 1fr; }
  .belief { border-right: 0; }

  /* Bio (about page) */
  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-stats { grid-template-columns: 1fr; gap: 16px; }
  .bio-stat { border-right: 0; border-bottom: 0.5px solid var(--slate); padding: 0 0 16px; }
  .bio-stat:last-child { border-bottom: 0; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0; }

  /* Methodology phases */
  .phase-row { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
  .phase-num { font-size: 96px; }
  .phase-content h3 { font-size: 40px; }

  /* CTA block */
  .cta-block-watermark { width: 380px; right: -120px; bottom: -120px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Generic 2-col */
  .two-col { grid-template-columns: 1fr; gap: 32px; }

  /* Blog index — stack rows */
  .blog-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 32px 0;
  }
  .blog-card-arrow { display: none; }
}

@media (max-width: 600px) {
  /* Tighter still for phones */
  .nav { padding: 14px 20px; }
  section, .clients, .recognition, .cta-block, .site-footer, .page-header {
    padding-left: 20px; padding-right: 20px;
  }
  .hero { padding: 64px 20px 56px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-card { border-right: 0; }
  .case-numbers { grid-template-columns: 1fr; gap: 0; }
  .num-cell {
    border-right: 0;
    padding-right: 0; padding-bottom: 16px;
    border-bottom: 0.5px solid var(--slate);
  }
  .num-cell:last-child { border-bottom: 0; padding-bottom: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .case-ghost { font-size: 260px; }
  .case-left, .case-right { padding: 40px 24px; }
}
