/* ──────────────────────────────────────────
   Design Tokens
   ────────────────────────────────────────── */
:root {
  /* Colors */
  --bkg:        #0a0027;
  --white:      #ffffff;
  --blue:       #0077f5;
  --lgt-blue:   #c9e3ff;
  --dirty-gold: #b79a5d;
  --gold:       #ffcc00;
  --lgt-gray:   #ddddda;
  --black-tint: rgba(0, 0, 0, 0.80);

  /* Layout */
  --gutter:     clamp(20px, 6.5vw, 124px);
  --content-max: 1672px;

  /* Border radius */
  --radius-sm:  12px;
  --radius-lg:  48px;

  /* Section spacing */
  --section-gap: clamp(36px, 4vw, 64px);
}

/* ──────────────────────────────────────────
   Reset / Base
   ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bkg);
  color: var(--white);
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  line-height: 26px;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

ul { list-style: disc; padding-left: 1.5em; }

li { margin-bottom: 0; }

p + p { margin-top: 13px; }
p + ul { margin-top: 13px; }
ul + p { margin-top: 13px; }

a { color: inherit; }

em { font-style: italic; }

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* ──────────────────────────────────────────
   Backdrop — full-viewport interactive network (Three.js)
   ────────────────────────────────────────── */
#interactive-network-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  /* Deep blue ambient light behind the network, over the brand base */
  background:
    radial-gradient(ellipse 110% 75% at 62% 45%,
      rgba(26, 84, 210, 0.24) 0%,
      rgba(14, 40, 120, 0.11) 42%,
      rgba(10, 0, 39, 0) 72%),
    var(--bkg);
}

#interactive-network-bg canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ──────────────────────────────────────────
   Page Structure
   ────────────────────────────────────────── */
.page-wrap {
  min-height: 100svh;
  position: relative;
}

.content-wrap {
  width: 100%;
  max-width: calc(var(--content-max) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.content-wrap.full-bleed {
  max-width: none;
  padding: 0;
}

/* ──────────────────────────────────────────
   Hero Area
   ────────────────────────────────────────── */
.hero-area {
  display: flex;
  flex-direction: column;
  padding: 0 var(--gutter);
}

/* Logo */
.site-header {
  padding-top: clamp(40px, 6.7vw, 128px);
  flex-shrink: 0;
}

.logo-link { display: inline-block; }

.site-logo {
  height: clamp(48px, 4vw, 75px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

/* Hero copy */
.hero {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 72px);
  padding-top: clamp(48px, 8.75vw, 168px);
}

h1 {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: clamp(50px, 6.25vw, 120px);
  line-height: 1;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.hero-sub {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 2.4vw, 46px);
  line-height: 1.25;
}

.hero-sub em {
  font-style: italic;
  font-weight: 700;
}

/* Primary Nav */
.primary-nav {
  margin-top: clamp(32px, 5.2vh, 56px);
  padding-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3.3vw, 64px);
  align-items: center;
}

.primary-nav a {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  white-space: nowrap;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s ease;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lgt-blue);
  transition: width 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--lgt-blue);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  width: 100%;
}

.primary-nav a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 6px;
  border-radius: 2px;
}

/* ──────────────────────────────────────────
   Sections — shared
   ────────────────────────────────────────── */
.section {
  padding: var(--section-gap) 0;
}

.section-label {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

h2 {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 2.92vw, 56px);
  line-height: 1.1;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 48px;
}

h2 em {
  font-style: italic;
}

.h3-text {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 1.875vw, 36px);
  line-height: 1.35;
  margin-bottom: 48px;
}

.h3-italic {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 1.875vw, 36px);
  line-height: 1.35;
  margin-bottom: 48px;
}

.leader {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.5;
}

.leader em {
  font-style: italic;
}

.bold-italic {
  font-weight: 700;
  font-style: italic;
}

.bold { font-weight: 700; }

.body-col p.bold:not(:first-child),
.body-col ul + p.bold {
  margin-top: 40px;
}

/* Two-column body text layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.two-col.body-col { margin-bottom: 64px; }

/* ──────────────────────────────────────────
   Value Proposition
   ────────────────────────────────────────── */
.value-prop .leader {
  font-size: clamp(18px, 1.25vw, 24px);
}

/* ──────────────────────────────────────────
   Comparison Table
   ────────────────────────────────────────── */
.comparison-table {
  background: var(--black-tint);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

/* Header: logos + VS badge — column widths match .comparison-row so logos
   sit directly above their respective comparison cells */
.comparison-head {
  display: grid;
  grid-template-columns: 1fr clamp(155px, calc(8.8vw + 34px), 205px) 1fr;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  padding: 92px clamp(24px, 11.4vw, 192px) 48px;
}

/* Both header logos scale on the same curve so they keep the 64:90 height
   relationship from the design. The 1fr columns narrow faster than a fixed
   height allows, so below ~1679px the shared logo would otherwise letterbox
   smaller while Big Law stayed at full size. object-fit is the safety net:
   it guarantees the mark never distorts, whatever the column resolves to. */
.comparison-logo {
  height: clamp(48px, 3.8vw, 64px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  justify-self: start;
}

.vs-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 56px);
  color: var(--gold);
  justify-self: center;
  text-align: center;
  line-height: 1;
}

.biglaw-logo {
  height: clamp(67px, 5.34vw, 90px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  justify-self: center;
}

/* Column divider — runs behind all rows */
.comparison-rows {
  position: relative;
  padding: 0 clamp(24px, 11.4vw, 192px);
}

.comparison-rows::before {
  content: '';
  position: absolute;
  left: 50%;
  top: var(--divider-top, 0px);
  bottom: var(--divider-bottom, 0px);
  width: 1px;
  background: var(--lgt-blue);
  transform: translateX(-0.5px);
  opacity: 0.5;
}

/* Individual rows — CSS Grid keeps label fixed-center, cells scale via 1fr */
.comparison-row {
  display: grid;
  /* The label's font-size scales with the viewport, so the column has to
     scale with it — a fixed 155px overflowed on wide screens once the
     type hit its 18px cap ("PREDICTABILITY" ran ~37px past the chip). */
  grid-template-columns: 1fr clamp(155px, calc(8.8vw + 34px), 205px) 1fr;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
}



/* Verdict + body copy cells */
.comparison-cell {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.comparison-cell.st { color: var(--lgt-blue); }
.comparison-cell.bl { color: var(--dirty-gold); }

.verdict {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.2;
}

/* Center label chip */
.comparison-label {
  background: var(--blue);
  color: var(--white);
  font-family: 'Figtree', sans-serif;
  font-size: clamp(13px, 0.94vw, 18px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.4;
  white-space: normal;
  position: relative;
  z-index: 1;
}

/* Outcomes summary */
.comparison-outcomes {
  padding: 32px clamp(24px, 11.4vw, 192px) 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.outcomes-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
}

.outcomes-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Figtree', sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
}

.outcomes-list img { flex-shrink: 0; }

.leader.small {
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}

/* Closing comparison quote */
.comparison-close {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 1.875vw, 36px);
  line-height: 1.35;
  text-align: center;
  padding: 0 clamp(24px, 6.3vw, 105px) 24px;
}

.comparison-close em {
  font-style: italic;
  font-weight: 700;
}

/* ──────────────────────────────────────────
   Fee Philosophy
   ────────────────────────────────────────── */
.fee-philosophy ul {
  margin-bottom: 16px;
}

.fee-philosophy ul li {
  margin-bottom: 4px;
}

/* ──────────────────────────────────────────
   Services
   ────────────────────────────────────────── */
.services-box {
  background: var(--black-tint);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 3vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 0;
  overflow: hidden;
}

.services-heading {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 1.875vw, 36px);
  line-height: 1.35;
  color: var(--white);
}

.service-category {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-category-label {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(16px, 0.94vw, 18px);
  letter-spacing: 0.1em;
  color: var(--lgt-blue);
  line-height: 1.4;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lgt-blue);
  color: var(--bkg);
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.fractional-gc {
  padding-left: clamp(0px, 3vw, 56px);
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.fractional-gc .services-heading {
  display: block;
}

.closing-h3 {
  margin-top: 48px;
  margin-bottom: 0;
}

/* ──────────────────────────────────────────
   About Us
   ────────────────────────────────────────── */
.about-section .section-label.inset {
  padding: 0 var(--gutter);
}

/* Team carousel */
.team-carousel-wrap {
  padding: 0 var(--gutter);
  margin-bottom: 80px;
}

.team-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.team-card {
  flex: 1;
  min-width: 0;
  background: var(--black-tint);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Avatar ring + shadow (CSS-applied — no baked shadow in source image) */
.avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--blue);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.team-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.team-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 1.875vw, 36px);
  line-height: 1.2;
  text-align: center;
}

.team-title {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(13px, 0.94vw, 18px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.team-bio {
  font-size: 18px;
  line-height: 26px;
  width: 100%;
}

/* Pagination dots — visible only on mobile */
.team-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.team-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease;
}

.team-dot.active {
  background: var(--white);
}

/* ──────────────────────────────────────────
   Testimonials Carousel
   ────────────────────────────────────────── */
.testimonials-outer {
  overflow: hidden;
  padding-left: var(--gutter);
  cursor: grab;
}

.testimonials-outer:active { cursor: grabbing; }

.testimonials-track {
  display: flex;
  gap: 72px;
  width: max-content;
  will-change: transform;
}

.testimonial-card {
  width: clamp(300px, 37.5vw, 720px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stars {
  display: flex;
  gap: 2px;
  align-items: center;
}

.stars img {
  width: clamp(24px, 1.875vw, 36px);
  height: auto;
}

.testimonial-quote {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: var(--white);
}

.testimonial-attr {
  border-top: 1px solid var(--white);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.3;
}

.testimonial-role {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 0;
}

.testimonial-attr .testimonial-role + .testimonial-role {
  margin-top: 0;
}

/* ──────────────────────────────────────────
   Contact
   ────────────────────────────────────────── */

.contact-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bullet-intro {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.5;
  margin-bottom: 0;
}

.contact-list {
  list-style: disc;
  padding-left: 2em;
  margin-top: 0;
  margin-bottom: 0;
}

.contact-list li {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.5;
  margin-bottom: 0;
}

.contact-body p {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.5;
  margin-top: 24px;
}

.contact-cta {
  font-weight: 700;
}

.contact-email {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(24px, 1.875vw, 36px);
  line-height: 1.3;
  color: var(--lgt-blue);
  text-decoration: none;
  position: relative;
  background: rgba(201, 227, 255, 0.12);
  padding: 4px 12px 6px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  margin-left: -12px;
  transition: color 0.25s ease, background 0.25s ease;
}

.contact-email::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.2s ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--white);
}

.contact-email:hover::after,
.contact-email:focus-visible::after {
  width: 100%;
}

.contact-email:focus-visible {
  outline: 2px solid var(--lgt-blue);
  outline-offset: 6px;
  border-radius: 2px;
}

/* ──────────────────────────────────────────
   Footer
   ────────────────────────────────────────── */
.site-footer {
  background: var(--black-tint);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--gutter);
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.linkedin-link:hover,
.linkedin-link:focus-visible { opacity: 1; }

.linkedin-link:focus-visible {
  outline: 2px solid var(--lgt-blue);
  outline-offset: 4px;
  border-radius: 2px;
}

.copyright {
  font-family: 'Figtree', sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 26px;
  color: var(--lgt-gray);
}

/* ──────────────────────────────────────────
   Reveal animations

   Hidden states are gated on html.js so the page stays fully visible
   with JS disabled. The inline script in <head> also adds .no-reveal
   for prefers-reduced-motion, and as a safety net if main.js never
   runs — either one switches every rule below off.
   ────────────────────────────────────────── */
/* The hidden targets sit inside :where() so they contribute no
   specificity. Without it, compound selectors like `.hero h1` would
   outrank the .is-visible rule below and never reveal. */
html.js:not(.no-reveal) :where(
  .site-header,
  .hero > *,
  .primary-nav,
  .section > .content-wrap > *:not(.comparison-table):not(.services-box),
  .comparison-head,
  .services-heading,
  .service-category-label,
  .comparison-cell,
  .comparison-label,
  .service-tag
) {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   550ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 550ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

/* Comparison columns converge from opposite sides — the motion
   performs the contrast the section is making. */
html.js:not(.no-reveal) .comparison-cell.st:not(.is-visible) { transform: translateX(-16px); }
html.js:not(.no-reveal) .comparison-cell.bl:not(.is-visible) { transform: translateX(16px);  }

/* Center label fades only. It is never transformed, so the divider
   script's getBoundingClientRect() measurements stay accurate. */
html.js:not(.no-reveal) .comparison-label:not(.is-visible) { transform: none; }

/* Chips travel a shorter distance for a tighter cascade */
html.js:not(.no-reveal) .service-tag:not(.is-visible) { transform: translateY(12px); }

/* Revealed — ties the base rules on specificity and wins on source order */
html.js:not(.no-reveal) .is-visible {
  opacity: 1;
  transform: none;
}

/* ──────────────────────────────────────────
   Responsive — Tablet (≤ 1024px)
   ────────────────────────────────────────── */
@media (max-width: 1024px) {

  h1 { font-size: clamp(50px, 9.77vw, 100px); line-height: 1.05; }

  h2 { font-size: clamp(32px, 4.69vw, 48px); }

  /* Comparison table: tighter internal padding on tablet — grid matches rows */
  .comparison-head {
    padding: 64px clamp(24px, 6.3vw, 64px) 32px;
    grid-template-columns: 1fr 155px 1fr;
  }

  /* Columns bottom out at ~240px here, so the heights track the column
     width rather than sitting fixed — same 64:90 relationship as desktop. */
  .comparison-logo { height: clamp(33px, 4.3vw, 46px); }
  .biglaw-logo { height: clamp(46px, 6.05vw, 65px); }

  .comparison-rows {
    padding: 0 clamp(24px, 6.3vw, 64px);
  }

  .comparison-row {
    /* 140px clipped the longest label at this breakpoint too */
    grid-template-columns: 1fr 155px 1fr;
  }

  .comparison-outcomes {
    padding: 48px clamp(16px, 3.1vw, 32px);
  }

  /* Team: 2 cards visible on tablet */
  .team-carousel-wrap {
    overflow: hidden;
  }

  .team-track {
    display: grid;
    grid-template-columns: repeat(3, calc(50% - 12px));
    gap: 24px;
    transition: transform 0.4s ease;
  }

  .team-dots { display: flex; }
}

/* ──────────────────────────────────────────
   Responsive — Mobile (≤ 767px)
   ────────────────────────────────────────── */
@media (max-width: 767px) {

  :root { --section-gap: 32px; }

  h1 { font-size: 50px; line-height: 1.1; }
  h2 { font-size: 36px; }

  .hero-sub { font-size: 28px; }

  .primary-nav {
    gap: 20px;
    padding-bottom: 40px;
  }

  .section-label { margin-bottom: 32px; }

  /* Two-col collapses */
  .two-col { grid-template-columns: 1fr; gap: 0; }
  .two-col.body-col { margin-bottom: 40px; }

  /* Comparison: label above, two cells remain side-by-side (CSS Grid) */
  .comparison-head {
    padding: 32px 16px 20px;
  }

  /* Figma mobile spec: nav mark 35px, comparison marks 18px / 23.5px. The
     comparison columns bottom out near 113px wide, so these track the
     column and cap at the design values. */
  .site-logo { height: 35px; }

  .comparison-logo { height: clamp(14px, 4.1vw, 18px); }
  .biglaw-logo { height: clamp(18px, 5.35vw, 23.5px); }
  .vs-text { font-size: clamp(18px, 5vw, 28px); }

  .comparison-rows {
    padding: 0 16px;
  }

  /* Vertical divider stays; grid handles column split */
  .comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 0;
    row-gap: 12px;
    padding: 24px 0;
    align-items: start;
  }

  /* Label spans both columns, sits in row 1 */
  .comparison-label {
    grid-column: 1 / -1;
    grid-row: 1;
    white-space: normal;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    font-size: 11px;
    padding: 6px 12px;
  }

  /* Both cells in row 2 */
  .comparison-cell {
    grid-row: 2;
    width: auto;
    font-size: 13px;
    line-height: 1.45;
  }

  .comparison-cell.st { grid-column: 1; padding-right: 8px; }
  .comparison-cell.bl { grid-column: 2; padding-left: 8px; }

  .comparison-row .verdict { font-size: 15px; }

  .comparison-close {
    padding: 0 20px 16px;
    font-size: 22px;
    text-align: left;
  }

  .comparison-outcomes {
    padding: 40px 20px;
  }

  .outcomes-list li {
    font-size: 18px;
  }

  /* Services */
  .services-box { padding: 24px; }

  .fractional-gc { padding-left: 0; margin-top: 32px; }

  /* Team: 1 card visible, dots enabled */
  .team-carousel-wrap { overflow: hidden; }

  .team-track {
    grid-template-columns: repeat(3, 100%);
    gap: 24px;
  }

  .team-dots { display: flex; }

  .team-card { padding: 32px 24px; }
  .avatar { width: 120px; height: 120px; }

  /* Testimonials */
  .testimonial-card { width: calc(100vw - var(--gutter) - 40px); }

  /* Contact */
  .contact-email { font-size: 24px; }
}

/* ──────────────────────────────────────────
   prefers-reduced-motion
   ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .testimonials-track,
  .team-track,
  .primary-nav a,
  .primary-nav a::after,
  .contact-email,
  .contact-email::after,
  .linkedin-link,
  .team-dot {
    transition: none !important;
    animation: none !important;
  }
}
