/* ============================================================
   Mosaic Sports Media Group — styles.css
   Single-page brand site. Plain CSS, no build step.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy:        #1B2A4A;
  --navy-deep:   #0F1A33;
  --navy-soft:   #2C3E66;
  --burgundy:    #8B1A2B;
  --burgundy-d:  #6E1A26;
  --gold:        #C9A22A;
  --gold-soft:   #E8BC3F;
  --slate:       #6B8CAE;
  --cream:       #F8F6F1;
  --paper:       #FBFAF7;
  --white:       #FFFFFF;
  --ink:         #14171C;
  --ink-soft:    #2A2F38;
  --muted:       #6B7280;
  --hairline:    rgba(20, 23, 28, 0.10);
  --hairline-on-dark: rgba(255,255,255,0.14);

  --container:   1200px;
  --pad-x:       clamp(20px, 4vw, 56px);
  --section-y:   clamp(72px, 9vw, 140px);

  --radius-sm:   6px;
  --radius:      14px;
  --radius-lg:   22px;

  --shadow-sm:   0 2px 8px rgba(15, 26, 51, 0.06);
  --shadow:      0 12px 40px rgba(15, 26, 51, 0.10);
  --shadow-lg:   0 30px 80px rgba(15, 26, 51, 0.18);

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ol, ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ---------- Typography ---------- */
.display {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 500;
  font-size: clamp(44px, 7.4vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--navy);
}
.display-accent {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 400;
}
.h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 500;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--navy);
}
.h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  color: var(--navy);
}
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 32px;
  line-height: 1.55;
}
.section-lede {
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 0 0 56px;
}
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--burgundy);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--burgundy);
}
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  border: 1px solid var(--hairline);
  color: var(--navy);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.btn-link {
  padding: 14px 4px;
  color: var(--navy);
  font-weight: 600;
  position: relative;
}
.btn-link::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.btn-link:hover::after { transform: scaleX(1); }

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}
.brand-logo {
  height: 44px;
  max-height: 44px;
  width: auto;
  max-width: none;
  display: block;
}
.brand-text { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 2px;
  transition: color .2s var(--ease);
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--navy); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-links .btn { padding: 9px 18px; font-size: 14px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 120px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 100% 0%, rgba(201, 162, 42, 0.10), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(139, 26, 43, 0.08), transparent 60%),
    var(--paper);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-copy { max-width: 720px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(27, 42, 74, 0.06);
  border: 1px solid var(--hairline);
  padding: 8px 14px;
  border-radius: 999px;
  margin: 0 0 24px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(139, 26, 43, 0.18);
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero mosaic art */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  height: 100%;
  transform: rotate(-4deg);
  transition: transform .8s var(--ease);
}
.hero-art:hover .mosaic-grid { transform: rotate(0deg); }
.mosaic-grid .m {
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .5s var(--ease);
}
.mosaic-grid .m:nth-child(odd) { animation: float 7s ease-in-out infinite; }
.mosaic-grid .m:nth-child(even) { animation: float 8s ease-in-out infinite reverse; }
.mosaic-grid .m:nth-child(3n) { animation-delay: -2s; }
.mosaic-grid .m:nth-child(3n+1) { animation-delay: -4s; }
.m-burgundy { background: var(--burgundy); }
.m-gold     { background: var(--gold); }
.m-navy     { background: var(--navy); }
.m-slate    { background: var(--slate); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .mosaic-grid .m { animation: none !important; }
  .mosaic-grid { transform: rotate(-2deg) !important; }
  html { scroll-behavior: auto; }
}

/* Hero marquee */
.hero-marquee {
  margin-top: clamp(48px, 7vw, 88px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
  overflow: hidden;
  background: var(--cream);
}
.marquee-track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
}
.marquee-track span:nth-child(even) { color: var(--burgundy); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  padding: var(--section-y) 0;
  background: var(--white);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.mission .container { text-align: center; max-width: 980px; }
.mission .section-label { display: inline-flex; }
.mission-quote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 8px auto 32px;
}
.mission-quote em {
  font-style: italic;
  color: var(--burgundy);
}
.mission-tag {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-soft);
  max-width: 70ch;
  margin: 0 auto;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-stats {
  display: grid;
  gap: 18px;
}
.stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ============================================================
   FOUNDERS
   ============================================================ */
.founders {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.founder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.founder {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.founder:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(27, 42, 74, 0.3);
}
.founder-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--burgundy));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.founder:nth-child(1) .founder-photo { background: linear-gradient(135deg, var(--navy), var(--burgundy)); }
.founder:nth-child(2) .founder-photo { background: linear-gradient(135deg, var(--burgundy), var(--gold)); }
.founder:nth-child(3) .founder-photo { background: linear-gradient(135deg, var(--navy), var(--slate)); }
.founder:nth-child(4) .founder-photo { background: linear-gradient(135deg, var(--gold), var(--navy)); }
.founder-name {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.founder-role {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
}
.founder-bio {
  margin: 4px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================================
   CAPABILITIES
   ============================================================ */
.capabilities {
  padding: var(--section-y) 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.capabilities::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 100%, rgba(201, 162, 42, 0.20), transparent 60%),
    radial-gradient(700px 400px at 0% 0%, rgba(139, 26, 43, 0.20), transparent 60%);
  pointer-events: none;
}
.capabilities .container { position: relative; z-index: 1; }
.capabilities .section-label { color: var(--gold); }
.capabilities .section-label::before { background: var(--gold); }
.capabilities .h2 { color: var(--white); }
.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.capabilities-intro p {
  color: rgba(255,255,255,0.78);
  max-width: 48ch;
}
.capabilities-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline-on-dark);
}
.capabilities-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline-on-dark);
  transition: padding-left .3s var(--ease), color .3s var(--ease);
}
.capabilities-list li:hover { padding-left: 12px; }
.capabilities-list li span {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.capabilities-list li strong {
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--white);
  letter-spacing: -0.005em;
}

/* ============================================================
   WHAT WE DO
   ============================================================ */
.what {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}
.what-col {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
}
.what-col-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}
.what-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(27, 42, 74, 0.08);
  color: var(--navy);
}
.what-tag-alt {
  background: rgba(139, 26, 43, 0.10);
  color: var(--burgundy);
}
.what-cards { display: grid; gap: 20px; }
.what-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.what-card:hover {
  border-color: var(--hairline);
  background: var(--white);
  transform: translateY(-2px);
}
.what-card h4 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.what-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: var(--section-y) 0;
  background: var(--white);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.process-steps {
  display: grid;
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--hairline);
}
.step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
  transition: background .3s var(--ease);
}
.step:hover { background: var(--cream); }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.step-phase {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
  margin: 0 0 6px;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.step-body p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  max-width: 64ch;
}
.step-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px !important;
  padding: 8px 14px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 13px !important;
  color: var(--navy) !important;
  font-weight: 500;
}
.step-meta span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
}

/* ============================================================
   WHY MOSAIC
   ============================================================ */
.why {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.why-quote {
  margin: 0 auto 64px;
  max-width: 980px;
  text-align: center;
  position: relative;
  padding: 0 clamp(20px, 4vw, 60px);
}
.why-quote::before {
  content: '“';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  font-size: 140px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  pointer-events: none;
}
.why-quote p {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.3;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 20px;
  letter-spacing: -0.005em;
}
.why-quote footer {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px;
  height: 4px;
  background: var(--burgundy);
  border-radius: 0 0 4px 4px;
}
.why-card:nth-child(2)::before { background: var(--gold); }
.why-card:nth-child(3)::before { background: var(--navy); }
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.why-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ============================================================
   PARTNERS / RFP
   ============================================================ */
.partners {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.rfp-form {
  max-width: 760px;
  margin: 16px 0 80px;
  display: grid;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.rfp-form label {
  display: grid;
  gap: 8px;
}
.rfp-form label.full { grid-column: 1 / -1; }
.rfp-form span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.rfp-form input,
.rfp-form textarea {
  font: inherit;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  resize: vertical;
}
.rfp-form input:focus,
.rfp-form textarea:focus {
  outline: 0;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.12);
}
.rfp-form button { justify-self: start; }

.partner-logos { margin-top: 40px; }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.partner-slot {
  height: 64px;
  border-radius: var(--radius-sm);
  background:
    repeating-linear-gradient(
      45deg,
      rgba(27, 42, 74, 0.04) 0,
      rgba(27, 42, 74, 0.04) 10px,
      transparent 10px,
      transparent 20px
    );
  border: 1px dashed rgba(27, 42, 74, 0.18);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: clamp(56px, 8vw, 96px) 0 32px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 100% 0%, rgba(201, 162, 42, 0.08), transparent 60%);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline-on-dark);
}
.footer-mark {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.footer-tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--white);
  margin: 0;
  max-width: 28ch;
  line-height: 1.4;
}
.footer-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-base {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-base .muted { color: rgba(255,255,255,0.45); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    padding: 20px var(--pad-x) 28px;
    gap: 8px;
    border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow);
  }
  .site-header.is-open .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--hairline);
    font-size: 16px;
  }
  .site-header.is-open .nav-links .btn { margin-top: 8px; padding: 12px 18px; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { max-width: 380px; justify-self: start; }

  .about-grid,
  .capabilities-grid { grid-template-columns: 1fr; }

  .founder-grid { grid-template-columns: repeat(2, 1fr); }

  .what-grid { grid-template-columns: 1fr; }

  .step { grid-template-columns: 80px 1fr; }
  .step-num { font-size: 44px; }

  .why-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .partner-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { grid-template-columns: 1fr; gap: 6px; }
  .step { grid-template-columns: 1fr; }
  .step-num { font-size: 40px; }
}
