/* =============================================================
   JJD-Build v11.0 | johndegaetano.com
   "FOUNDRY" — editorial-industrial 2026
   ------------------------------------------------------------------
   Design DNA:
   - Warm ink charcoal canvas, cream paper text, brass-gold accent.
   - Fraunces (high-contrast serif display) + Space Grotesk (UI)
     + JetBrains Mono (labels / numerals).
   - Asymmetric editorial grids, bento compositions, oversized index
     numerals, marquee dividers, horizontal proof strip, grain texture.
   - Radically different from v10.5 (light SaaS) — dark, tactile,
     editorial, award-caliber.
   Same content, copy, and images — completely new presentation.
   ============================================================= */

/* -------------------------------------------------------------
   TOKENS
   ------------------------------------------------------------- */
:root {
  /* Warm ink canvas */
  --bg:            #0e0d0b;
  --bg-2:          #14120f;
  --bg-3:          #1a1814;
  --bg-4:          #211e19;
  --bg-paper:      #f3efe6;
  --bg-paper-2:    #e9e2d2;

  --text:          #f3efe6;
  --text-muted:    #b9b1a0;
  --text-subtle:   #8a8272;
  --text-ink:      #1a1712;
  --text-ink-muted:#4a4438;

  --line:          rgba(243,239,230,0.12);
  --line-strong:   rgba(243,239,230,0.22);
  --line-paper:    rgba(26,23,18,0.14);

  /* Brand accents — brass gold */
  --gold:          #c9a84c;
  --gold-bright:   #e8cf8a;
  --gold-deep:     #9a7d2f;
  --gold-soft:     rgba(201,168,76,0.12);
  --blue:          #7aa2ff;
  --blue-deep:     #4c7dff;

  /* Gradients */
  --grad-gold: linear-gradient(120deg, #9a7d2f 0%, #c9a84c 45%, #e8cf8a 100%);
  --grad-text: linear-gradient(120deg, #e8cf8a 0%, #c9a84c 60%, #9a7d2f 100%);

  /* Shadows */
  --shadow-sm: 0 1px 0 rgba(0,0,0,0.4);
  --shadow-md: 0 18px 40px -20px rgba(0,0,0,0.6);
  --shadow-lg: 0 40px 80px -30px rgba(0,0,0,0.7);
  --shadow-gold: 0 16px 40px -18px rgba(201,168,76,0.35);

  /* Radii — tactile, slightly rounded */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-pill: 999px;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-ui:      'Space Grotesk', 'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', 'Space Mono', monospace;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6.5rem;
  --space-2xl: 9rem;

  /* Layout */
  --max-w:    1280px;
  --max-w-md: 900px;

  /* Motion */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-fast:  cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:   0.2s;
  --dur-med:    0.5s;
  --dur-slow:   0.9s;
}

/* -------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
::selection { background: rgba(201,168,76,0.35); color: var(--text); }

/* Film grain — tactile editorial texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* -------------------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------------------- */
.text-gold {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.section-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--grad-gold);
  flex-shrink: 0;
}
.section-eyebrow--right { justify-content: flex-end; }
.section-eyebrow--right::before { order: 2; }

.section-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.link-gold {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--gold-bright);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(232,207,138,0.4);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
  transition: color var(--dur-fast) var(--ease-fast), border-color var(--dur-fast) var(--ease-fast), gap var(--dur-fast) var(--ease);
}
.link-gold:hover { color: var(--gold); border-color: var(--gold); gap: 0.8rem; }

.problem__head .section-headline,
.faq__head .section-headline {
  font-size: clamp(44px, 6vw, 92px);
  max-width: 20ch;
}

/* -------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 0.85em 1.7em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-gold);
  color: #1a1712;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover { box-shadow: 0 20px 46px -16px rgba(201,168,76,0.5); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); background: var(--gold-soft); }

.btn--lg { padding: 1.05em 2.3em; font-size: 16px; }
.btn--sm { padding: 0.6em 1.2em; font-size: 12px; }

.cta-group { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; }

/* -------------------------------------------------------------
   NAVIGATION — fixed top bar + full-screen menu overlay
   ------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.9rem var(--space-md);
  transition: background var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
  background: rgba(14,13,11,0.7);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(14,13,11,0.9);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,0.7);
}
.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.nav__logo { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.nav__logo img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(201,168,76,0.25)); }
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav__links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav__link {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5em 0.85em;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease-fast), background var(--dur-fast) var(--ease-fast);
}
.nav__link:hover, .nav__link.is-active { color: var(--text); background: var(--bg-3); }
.nav__cta {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: #1a1712;
  background: var(--grad-gold);
  padding: 0.6em 1.3em;
  border-radius: var(--radius-sm);
  margin-left: 0.4rem;
  box-shadow: var(--shadow-gold);
  transition: box-shadow var(--dur-fast) var(--ease-fast), transform var(--dur-fast) var(--ease-fast);
}
.nav__cta:hover { box-shadow: 0 14px 34px -12px rgba(201,168,76,0.55); transform: translateY(-1px); }

/* Menu trigger */
.nav__menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 0.55em 1.1em;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  transition: border-color var(--dur-fast) var(--ease-fast), color var(--dur-fast) var(--ease-fast), background var(--dur-fast) var(--ease-fast);
}
.nav__menu-btn:hover { border-color: var(--gold); color: var(--gold-bright); background: var(--bg-3); }
.nav__menu-btn .burger { display: flex; flex-direction: column; gap: 4px; }
.nav__menu-btn .burger span { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }

/* Full-screen menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility var(--dur-med);
}
.menu-overlay.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.menu-overlay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--space-md);
  border-bottom: 1px solid var(--line);
}
.menu-overlay__close {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 0.55em 1.1em;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  transition: border-color var(--dur-fast) var(--ease-fast), color var(--dur-fast) var(--ease-fast);
}
.menu-overlay__close:hover { border-color: var(--gold); color: var(--gold-bright); }
.menu-overlay__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.menu-overlay__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
}
.menu-overlay__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.menu-overlay__primary { display: flex; flex-direction: column; }
.menu-overlay__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  color: var(--text);
  padding: 0.35em 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  transition: color var(--dur-fast) var(--ease-fast), padding-left var(--dur-fast) var(--ease);
}
.menu-overlay__link:first-child { border-top: 1px solid var(--line); }
.menu-overlay__link .idx {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.menu-overlay__link:hover { color: var(--gold-bright); padding-left: 0.5rem; }
.menu-overlay__secondary { display: flex; flex-direction: column; gap: 0.4rem; }
.menu-overlay__secondary a {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5em 0;
  border-bottom: 1px solid var(--line);
  transition: color var(--dur-fast) var(--ease-fast);
}
.menu-overlay__secondary a:hover { color: var(--gold-bright); }
.menu-overlay__foot {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-lg);
  border-top: 1px solid var(--line);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  justify-content: space-between;
}
.menu-overlay__foot p { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-subtle); }

/* -------------------------------------------------------------
   HERO — asymmetric editorial split
   ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg);
  padding-top: 96px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/b2b-digital-marketing-strategist-hero.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.6;
  filter: saturate(1.05);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(14,13,11,0.82) 0%, rgba(14,13,11,0.4) 45%, rgba(14,13,11,0.15) 100%),
    linear-gradient(to top, rgba(14,13,11,0.9) 0%, transparent 50%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.hero__eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--grad-gold); }
.hero__headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-lg);
  max-width: 15ch;
  color: var(--text);
}
.hero__line { display: block; overflow: hidden; padding: 0.04em 0; }
.hero__line--gold {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-family: var(--font-ui);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  max-width: 34ch;
  margin-bottom: var(--space-md);
}
.hero__body {
  font-size: clamp(14px, 1.1vw, 17px);
  color: var(--text-muted);
  max-width: 40ch;
  margin-bottom: var(--space-lg);
}
.hero__cta-group { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.hero__micro {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero__scroll-indicator span {
  display: block;
  width: 1px;
  height: 58px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.25;} 50%{opacity:1;} }

/* Hero entrance — CSS only */
.hero__eyebrow { animation: fadeSlideUp 0.7s var(--ease) 0.15s both; }
.hero__line:nth-child(1) { animation: stampIn 0.8s var(--ease) 0.3s both; }
.hero__line:nth-child(2) { animation: stampIn 0.8s var(--ease) 0.42s both; }
.hero__line:nth-child(3) { animation: stampIn 0.8s var(--ease) 0.54s both; }
.hero__line:nth-child(4) { animation: stampIn 0.8s var(--ease) 0.66s both; }
.hero__sub   { animation: fadeSlideUp 0.7s var(--ease) 0.8s both; }
.hero__body  { animation: fadeSlideUp 0.7s var(--ease) 0.92s both; }
.hero__cta-group { animation: fadeSlideUp 0.6s var(--ease) 1.05s both; }
.hero__micro { animation: fadeIn 0.7s ease 1.2s both; }
@keyframes stampIn {
  from { opacity: 0; transform: translateY(70%); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* -------------------------------------------------------------
   MANIFESTO — big editorial statement
   ------------------------------------------------------------- */
.manifesto {
  position: relative;
  padding: var(--space-2xl) var(--space-md);
  border-top: 1px solid var(--line);
  background-color: var(--bg);
  background-image: url('../images/jjd-degaetano-design-&-marketing-cleveland-ohio.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14,13,11,0.78) 0%,
    rgba(14,13,11,0.45) 45%,
    rgba(14,13,11,0.18) 100%
  );
  pointer-events: none;
}
.manifesto__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.manifesto__statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 22ch;
}
.manifesto__statement em { font-style: italic; color: var(--gold-bright); }
.manifesto__meta {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: var(--space-md);
}
.manifesto__meta p { color: var(--text-muted); max-width: 52ch; font-size: 15px; }
.manifesto__index {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.8;
  color: var(--bg-3);
  -webkit-text-stroke: 1px var(--line-strong);
  color: transparent;
  user-select: none;
}

/* -------------------------------------------------------------
   BENTO STATS — asymmetric grid
   ------------------------------------------------------------- */
.bento {
  padding: var(--space-2xl) var(--space-md);
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.bento__inner { max-width: var(--max-w); margin: 0 auto; }
.bento__head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-md); margin-bottom: var(--space-xl); flex-wrap: wrap; }
.bento__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 1.1rem;
}
.bento__cell {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  background: var(--bg-3);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.bento__cell:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bento__cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.bento__cell:hover::before { opacity: 0.9; }
.bento__cell--stat { grid-column: span 3; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.bento__cell--wide { grid-column: span 6; }
.bento__cell--tall { grid-row: span 2; }
.bento__cell--featured { grid-column: span 6; background: linear-gradient(135deg, var(--bg-4) 0%, var(--bg-3) 60%); border-color: rgba(201,168,76,0.4); }
.bento__cell--featured::before { opacity: 0.9; }
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(52px, 6vw, 92px);
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.3em;
}
.stat__label { display: block; font-family: var(--font-ui); font-size: 13px; font-weight: 500; color: var(--text-muted); line-height: 1.5; }
.bento__cell-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 28px);
  color: var(--text);
  margin-bottom: 0.5em;
  line-height: 1.15;
}
.bento__cell p { color: var(--text-muted); font-size: 14px; line-height: 1.75; }
.bento__cell .idx {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.7;
}

/* Marquee divider */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 1.4rem 0;
  position: relative;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 46s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 40px);
  color: var(--text-subtle);
  white-space: nowrap;
  padding-right: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.marquee__item .dot { color: var(--gold); font-size: 0.6em; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -------------------------------------------------------------
   PROBLEM — editorial numbered list
   ------------------------------------------------------------- */
.problem { padding: var(--space-2xl) var(--space-md); background: var(--bg); }
.problem__inner { max-width: var(--max-w); margin: 0 auto; }
.problem__head {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin-bottom: var(--space-xl);
  max-width: 100%;
}
.problem__head-note {
  font-size: clamp(19px, 1.5vw, 26px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 52ch;
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
}
.problem__body p { color: var(--text-muted); margin-bottom: 1.2em; }
.problem__body p:first-child {
  font-size: clamp(18px, 1.5vw, 24px);
  color: var(--text);
  font-weight: 500;
  font-family: var(--font-display);
}
.problem__list { display: flex; flex-direction: column; }
.problem__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--line);
  transition: background var(--dur-fast) var(--ease-fast);
}
.problem__item:last-child { border-bottom: 1px solid var(--line); }
.problem__item:hover { background: var(--bg-2); }
.problem__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 44px);
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.problem__item-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 30px);
  color: var(--text);
  margin-bottom: 0.4em;
  line-height: 1.2;
}
.problem__item p { color: var(--text-muted); font-size: 15px; max-width: 70ch; }
.problem__close {
  margin-top: var(--space-xl);
  font-size: clamp(18px, 1.5vw, 24px);
  color: var(--text);
  line-height: 1.6;
  font-family: var(--font-display);
  max-width: 60ch;
}

/* -------------------------------------------------------------
   ORIGIN — alternating editorial timeline
   ------------------------------------------------------------- */
.origin {
  position: relative;
  padding: var(--space-2xl) var(--space-md);
  border-top: 1px solid var(--line);
  background-color: var(--bg);
  background-image: url('../images/john-degaetano-34-years-marketing-legacy.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.origin::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14,13,11,0.88) 0%,
    rgba(14,13,11,0.72) 45%,
    rgba(14,13,11,0.55) 100%
  );
  pointer-events: none;
}
.origin__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.origin__intro {
  font-size: clamp(22px, 2vw, 30px);
  color: var(--text);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
  font-family: var(--font-display);
  max-width: 60ch;
}
.origin__chapters { display: flex; flex-direction: column; }
.chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.chapter:last-child { border-bottom: none; }
.chapter:nth-child(even) .chapter__marker { order: 2; }
.chapter__marker { display: flex; flex-direction: column; align-items: flex-start; }
.chapter__year {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  white-space: nowrap;
  padding: 0.4em 0.9em;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
}
.chapter__line {
  width: 2px;
  flex: 1;
  min-height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
}
.chapter__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 42px);
  color: var(--text);
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}
.chapter__content p { color: var(--text); margin-bottom: 1em; font-size: clamp(17px, 1.2vw, 20px); line-height: 1.7; }
.chapter__content p:last-child { margin-bottom: 0; }
.chapter__content strong { color: var(--gold-bright); font-weight: 600; }
.origin__cta-block {
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid var(--line);
  margin-top: var(--space-lg);
}
.origin__cta-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 42px);
  color: var(--text);
  margin-bottom: var(--space-md);
}
.origin__byline {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

/* -------------------------------------------------------------
   SYSTEM — bento grid
   ------------------------------------------------------------- */
.system { padding: var(--space-2xl) var(--space-md); background: var(--bg); border-top: 1px solid var(--line); }
.system__inner { max-width: var(--max-w); margin: 0 auto; }
.system__intro {
  color: var(--text-muted);
  max-width: 74ch;
  font-size: clamp(16px, 1.25vw, 20px);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}
.system__hero-image {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  position: relative;
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
}
.system__hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.2s var(--ease);
}
.system__hero-image:hover img { transform: scale(1.03); }
.system__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
  margin-bottom: var(--space-xl);
}
.system-card {
  grid-column: span 4;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.system-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.system-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.system-card:hover::before { opacity: 0.9; }
.system-card--featured {
  grid-column: span 8;
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(135deg, var(--bg-4) 0%, var(--bg-2) 60%);
}
.system-card--featured::before { opacity: 0.9; }
.system-card__number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--gold);
  opacity: 0.8;
  pointer-events: none;
  user-select: none;
}
.system-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 28px);
  color: var(--text);
  margin-bottom: 0.4em;
  padding-right: 2.5rem;
  line-height: 1.15;
}
.system-card__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}
.system-card p { color: var(--text-muted); font-size: 14px; line-height: 1.75; }
.system-card__ctas { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--space-md); }
.system__summary {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  position: relative;
  overflow: hidden;
}
.system__summary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0.9;
}
.system__summary-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 1.8vw, 30px);
  color: var(--text);
  margin-bottom: var(--space-md);
}
.system__summary-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.system__summary-list li {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}
.system__summary-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* -------------------------------------------------------------
   CLIENTS — editorial index rows
   ------------------------------------------------------------- */
.clients { padding: var(--space-2xl) var(--space-md); background: var(--bg-2); border-top: 1px solid var(--line); }
.clients__inner { max-width: var(--max-w); margin: 0 auto; }
.clients__intro {
  color: var(--text-muted);
  max-width: 74ch;
  font-size: clamp(16px, 1.25vw, 20px);
  margin-bottom: var(--space-xl);
}
.clients__index { display: flex; flex-direction: column; margin-bottom: var(--space-xl); }
.client-row {
  display: grid;
  grid-template-columns: 60px 1.2fr 1.6fr;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--line);
  align-items: start;
  transition: background var(--dur-fast) var(--ease-fast);
}
.client-row:last-child { border-bottom: 1px solid var(--line); }
.client-row:hover { background: var(--bg-3); }
.client-row__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding-top: 6px;
}
.client-row__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 30px);
  color: var(--text);
  line-height: 1.15;
}
.client-row__names {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  margin-top: 0.5em;
}
.client-row p { color: var(--text-muted); font-size: 14px; line-height: 1.75; }
.clients__context {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
}
.clients__context::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0.9;
}
.clients__context-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.2vw, 36px);
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.clients__context p { color: var(--text-muted); font-size: clamp(17px, 1.15vw, 20px); line-height: 1.75; }
.clients__geo {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-subtle);
  text-align: center;
  margin-bottom: var(--space-md);
}
.clients__close-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(13px, 1.1vw, 17px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

/* -------------------------------------------------------------
   WHY JOHN — split editorial
   ------------------------------------------------------------- */
.why {
  padding: var(--space-2xl) var(--space-md);
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.why__inner { max-width: var(--max-w); margin: 0 auto; }
.why__intro {
  color: var(--text-muted);
  max-width: 74ch;
  font-size: clamp(16px, 1.25vw, 20px);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}
.why__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.1rem; margin-bottom: var(--space-xl); }
.why-card {
  grid-column: span 4;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-md);
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: transform var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 1.6vw, 26px);
  color: var(--text);
  margin-bottom: 0.75em;
  line-height: 1.2;
}
.why-card p { color: var(--text-muted); font-size: 14px; line-height: 1.75; }
.why__statement {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-md);
}
.why__statement p {
  font-size: clamp(16px, 1.3vw, 21px);
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1em;
  font-family: var(--font-display);
}
.why__statement p:last-child { margin-bottom: 0; }
.why__close-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(13px, 1.1vw, 17px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

/* -------------------------------------------------------------
   PROOF — horizontal scroll strip
   ------------------------------------------------------------- */
.proof {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.proof__inner { max-width: var(--max-w); margin: 0 auto; }
.proof__intro {
  color: var(--text-muted);
  max-width: 74ch;
  font-size: clamp(16px, 1.25vw, 20px);
  margin-bottom: var(--space-xl);
}
.proof__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(300px, 1fr));
  gap: 1.4rem;
  overflow-x: auto;
  padding-bottom: var(--space-md);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.proof__cards::-webkit-scrollbar { height: 8px; }
.proof__cards::-webkit-scrollbar-thumb { background: var(--bg-4); border-radius: 4px; }
.proof__cards::-webkit-scrollbar-track { background: transparent; }
.proof-card {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.proof-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.proof-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-4);
}
.proof-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s var(--ease);
}
.proof-card__img-wrap .proof-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  text-align: center;
  padding: var(--space-md);
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.12) 0%, transparent 70%),
    var(--bg-4);
}
.proof-card__placeholder .ph-monogram {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.proof-card__placeholder .ph-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.proof-card__placeholder .ph-note {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-subtle);
  max-width: 30ch;
  line-height: 1.5;
}
.proof-card:hover .proof-card__img-wrap img { transform: scale(1.04); }
.proof-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,13,11,0);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background var(--dur-med) var(--ease);
}
.proof-card:hover .proof-card__overlay { background: rgba(14,13,11,0.65); }
.proof-card__visit {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--gold-bright);
  border: 1px solid var(--gold-bright);
  border-radius: var(--radius-sm);
  padding: 0.7em 1.5em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.proof-card:hover .proof-card__visit { opacity: 1; transform: translateY(0); }
.proof-card__meta {
  padding: 1rem var(--space-md);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.proof-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--text);
  line-height: 1.3;
}
.proof-card__url {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  flex-shrink: 0;
}
.proof__close {
  color: var(--text-muted);
  font-size: clamp(16px, 1.25vw, 20px);
  max-width: 70ch;
  margin-top: var(--space-lg);
  line-height: 1.7;
}
.proof__close-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(12px, 1vw, 15px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-top: var(--space-md);
}

/* -------------------------------------------------------------
   FAQ — two-column editorial
   ------------------------------------------------------------- */
.faq {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.faq__inner { max-width: var(--max-w); margin: 0 auto; }
.faq__head {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin-bottom: var(--space-xl);
  max-width: 100%;
}
.faq__head-note {
  font-size: clamp(19px, 1.5vw, 26px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 52ch;
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
}
.faq__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; align-items: start; }
.faq-item {
  border-radius: var(--radius-md);
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.faq-item:hover { border-color: var(--gold); }
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--text);
  text-align: left;
  line-height: 1.35;
  transition: color var(--dur-fast) var(--ease-fast);
}
.faq-item__question:hover { color: var(--gold-bright); }
.faq-item__icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition: transform var(--dur-med) var(--ease), background var(--dur-med) var(--ease), color var(--dur-med) var(--ease);
}
.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--grad-gold);
  color: #1a1712;
  border-color: transparent;
}
.faq-item__question[aria-expanded="true"] { color: var(--gold-bright); }
.faq-item__answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-md);
  border-top: 1px solid var(--line);
}
.faq-item__answer p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 1em;
  padding-top: var(--space-md);
}
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq__close {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-subtle);
  text-align: center;
  margin-top: var(--space-xl);
}

/* -------------------------------------------------------------
   CONTACT / CTA — big editorial close
   ------------------------------------------------------------- */
.contact {
  position: relative;
  padding: var(--space-2xl) var(--space-md);
  border-top: 1px solid var(--line);
  background-color: var(--bg);
  background-image: url('../images/jjd-degaetano-design-&-marketing-cleveland-ohio-view-2.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14,13,11,0.78) 0%,
    rgba(14,13,11,0.45) 45%,
    rgba(14,13,11,0.18) 100%
  );
  pointer-events: none;
}
.contact__inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; }
.contact__body {
  color: var(--text);
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 70ch;
}
.contact__reassurances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}
.reassurance {
  padding: var(--space-lg) var(--space-md);
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.reassurance:hover { border-color: var(--gold); transform: translateY(-4px); }
.reassurance__mark { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-bottom: 0.6rem; display: block; }
.reassurance strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--text);
  margin-bottom: 0.3em;
}
.reassurance p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.contact__strategy-day {
  background: var(--bg-3);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-xl);
}
.contact__strategy-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2vw, 34px);
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.contact__strategy-day p { color: var(--text-muted); margin-bottom: var(--space-md); font-size: 15px; line-height: 1.75; }
.contact__appt-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: var(--space-sm);
}
.contact__primary-cta { text-align: center; margin: var(--space-xl) 0; }
.contact__secondary-ctas { text-align: center; margin-bottom: var(--space-xl); }
.contact__secondary-ctas > p { color: var(--text-muted); margin-bottom: var(--space-sm); font-size: 14px; }
.contact__secondary-ctas .cta-group { justify-content: center; margin-bottom: var(--space-sm); }
.contact__audit-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.contact__sign-off { border-top: 1px solid var(--line); padding-top: var(--space-xl); margin-bottom: var(--space-lg); }
.contact__sign-off > p {
  color: var(--text);
  font-size: clamp(19px, 1.4vw, 24px);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 66ch;
  font-family: var(--font-display);
}
.contact__signature { font-size: 14px; line-height: 1.9; }
.contact__signature strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 600;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.2em;
}
.contact__signature span { color: var(--text-muted); display: block; }
.contact__close-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
}

/* -------------------------------------------------------------
   FOOTER — dark editorial
   ------------------------------------------------------------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: var(--space-xl) var(--space-md) var(--space-md);
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-lg);
}
.footer__brand { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__brand img { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(201,168,76,0.25)); }
.footer__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--text);
}
.footer__title, .footer__sub {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.footer__tagline {
  font-size: 13px;
  color: var(--text-subtle);
  line-height: 1.7;
  margin-top: 0.5rem;
  max-width: 30ch;
}
.footer__nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__col li, .footer__col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease-fast);
  line-height: 1.5;
}
.footer__col a:hover { color: var(--gold-bright); }
.footer__contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.footer__contact-strip > p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.footer__contact-ctas { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer__contact-ctas .btn--primary { background: var(--grad-gold); color: #1a1712; }
.footer__contact-ctas .btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.footer__contact-ctas .btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.footer__bottom { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__legal { font-size: 12px; color: var(--text-muted); }
.footer__domains {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.footer__domains a { color: var(--gold); transition: color var(--dur-fast) var(--ease-fast); }
.footer__domains a:hover { color: var(--gold-bright); }
.footer__entity { font-size: 11px; color: var(--text-subtle); line-height: 1.6; max-width: 90ch; margin-top: var(--space-sm); }

/* -------------------------------------------------------------
   ACCESSIBILITY
   ------------------------------------------------------------- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* -------------------------------------------------------------
   SCROLL REVEAL — progressive enhancement (html.js gate)
   ------------------------------------------------------------- */
html.js .system-card,
html.js .why-card,
html.js .client-row,
html.js .chapter,
html.js .bento__cell,
html.js .problem__item,
html.js .faq-item,
html.js .proof-card,
html.js .reassurance,
html.js .contact__strategy-day,
html.js .system__summary,
html.js .clients__context,
html.js .why__statement,
html.js .system__hero-image,
html.js .manifesto__statement,
html.js .ind-section__panel,
html.js .ind-section__text,
html.js .ind-hero__intro {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
html.js .is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------
   RESPONSIVE — 1024px
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .problem__head, .faq__head { grid-template-columns: 1fr; gap: var(--space-md); }
  .hero__headline { font-size: clamp(46px, 9vw, 84px); line-height: 1.08; }
  .hero__line { padding: 0.03em 0; }
  .system-card { grid-column: span 6; }
  .system-card--featured { grid-column: span 12; }
  .why-card { grid-column: span 6; }
  .bento__cell--stat { grid-column: span 6; }
  .bento__cell--wide, .bento__cell--featured { grid-column: span 12; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .contact__reassurances { grid-template-columns: 1fr; }
  .menu-overlay__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .chapter { grid-template-columns: 1fr; gap: var(--space-md); }
  .chapter:nth-child(even) .chapter__marker { order: 0; }
  .chapter__marker { flex-direction: row; align-items: center; gap: 1rem; }
  .chapter__line { display: none; }
  .client-row { grid-template-columns: 50px 1fr; }
  .client-row p { grid-column: 2; }
}

/* -------------------------------------------------------------
   RESPONSIVE — 768px
   ------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --space-xl: 4.5rem; --space-2xl: 5.5rem; }
  .nav { padding: 0.75rem var(--space-sm); }
  .nav__links { display: none; }
  .nav__link { display: none; }
  .nav__cta { display: none; }
  .nav__menu-btn { display: inline-flex; }
  .hero__headline { font-size: clamp(44px, 12vw, 72px); line-height: 1.1; }
  .hero__line { padding: 0.02em 0; }
  .system__grid { grid-template-columns: 1fr; }
  .system-card { grid-column: span 1; }
  .system-card--featured { grid-column: span 1; }
  .system__summary-list { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .why-card { grid-column: span 1; }
  .bento__grid { grid-template-columns: 1fr; }
  .bento__cell { grid-column: span 1 !important; }
  .faq__list { grid-template-columns: 1fr; }
  .client-row { grid-template-columns: 1fr; gap: var(--space-sm); }
  .client-row p { grid-column: 1; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__contact-strip { flex-direction: column; align-items: flex-start; }
  .why__statement, .clients__context, .contact__strategy-day, .system__summary { padding: var(--space-md); }
  .menu-overlay__link { font-size: clamp(26px, 8vw, 40px); }
}

@media (max-width: 480px) {
  .footer__nav { grid-template-columns: 1fr; }
  .hero__headline { font-size: clamp(38px, 12.5vw, 56px); line-height: 1.12; }
  .hero__cta-group, .cta-group { flex-direction: column; }
  .hero__cta-group .btn, .cta-group .btn { width: 100%; justify-content: center; }
  .problem__item { grid-template-columns: 50px 1fr; }
}

/* -------------------------------------------------------------
   REDUCED MOTION — always honored
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html.js .system-card,
  html.js .why-card,
  html.js .client-row,
  html.js .chapter,
  html.js .bento__cell,
  html.js .problem__item,
  html.js .faq-item,
  html.js .proof-card,
  html.js .reassurance,
  html.js .contact__strategy-day,
  html.js .system__summary,
  html.js .clients__context,
  html.js .why__statement,
  html.js .system__hero-image,
  html.js .manifesto__statement,
  html.js .ind-section__panel,
  html.js .ind-section__text,
  html.js .ind-hero__intro {
    opacity: 1;
    transform: none;
  }
}
