/* ─────────────────────────────────────────────
   PPG Website — Primary People Group
   Typography: Bricolage Grotesque + DM Sans
     (--serif legacy variable name kept; value is now sans display)
   Direction: Option 2 — Modern Minimalist
   ───────────────────────────────────────────── */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  /* Brand colours — PPG Brand Guidelines p.9 (approved April 2026)
     Usage: Indigo for authority, Platinum for breathing room.
     Mauve, Rose & Verdigris accent — never dominate.
     Gold is reserved for moments of crossover with Demi. */

  /* Lead */
  --navy:      #1F295C;  /* Space Indigo */
  --navy-80:   rgba(31,41,92,0.08);
  --platinum:  #EFF1F3;  /* Platinum */

  /* Signature accent — shared with Demi, used sparingly */
  --gold:      #E6AF2E;  /* Sunflower Gold */

  /* Secondary creative — accent only */
  --mauve:     #977380;  /* Dusty Mauve */
  --rose:      #AC7B7D;  /* Dusty Rose */
  --verdigris: #2A9D8F;  /* Verdigris */
  --purple:    #7C60C3;  /* Demi Purple — Demi-specific elements only */

  /* Neutrals */
  --text:      #1A1A1A;
  --mid:       #555;
  --muted:     #888;
  --line:      #E5E5E5;
  --bg-off:    #FAFAFA;

  /* Type */
  --serif: 'Bricolage Grotesque', system-ui, sans-serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-pad: 96px 80px;
  --nav-h: 108px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; border-radius: 8px; }
a   { text-decoration: none; color: inherit; }

button {
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}


/* ─── NAVIGATION ──────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: var(--nav-h);
}

.nav__logo img {
  height: 99px;
  width: auto;
  border-radius: 0;
}

.nav__links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav__links a {
  font-weight: 500;
  font-size: 21px;
  color: #333;
  transition: color 0.15s;
}

.nav__links a:hover { color: var(--mauve); }

.nav__cta {
  background: var(--navy);
  color: #fff;
  padding: 11px 26px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}

.nav__cta:hover { opacity: 0.88; }


/* ─── HERO ────────────────────────────────── */
.hero {
  background: #fff;
  padding: 100px 80px 80px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.hero__label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__label-text {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 82px;
  line-height: 1.0;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--navy);
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero__body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--mid);
  max-width: 520px;
  margin-bottom: 48px;
}

.hero__ctas {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  padding: 15px 36px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}

.btn-primary:hover { opacity: 0.88; }

.btn-text {
  background: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.btn-text:hover { gap: 14px; }

.hero__img-wrap {
  aspect-ratio: 3/4;
  background: #F4F4F4;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}


/* ─── ABOUT ───────────────────────────────── */
.about {
  padding: var(--section-pad);
  background: #fff;
}

.about__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}


.about__divider {
  width: 48px;
  height: 2px;
  background: var(--navy);
  margin-bottom: 32px;
}

.about h2 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  color: var(--navy);
}

.about h2 em {
  color: var(--gold);
  font-style: italic;
}

.about__body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 16px;
}

.about__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 36px;
}

.about__tile {
  padding: 28px 24px;
  border-left: 3px solid var(--mauve);
  background: var(--platinum);
  font-size: 15px;
  color: var(--mid);
  line-height: 1.4;
}

.about__tile strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.about__img-wrap {
  background: #F4F4F4;
  border: 1px solid var(--line);
  order: -1;
  width: 100%;
}

.about__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}


/* ─── SERVICES (Option 2 — Interactive Split) ─ */
.services {
  background: var(--bg-off);
  padding: var(--section-pad);
  border-top: 1px solid var(--line);
}

.services__head {
  margin-bottom: 56px;
}

.services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.services__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.services__h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--navy);
  margin: 0;
}

.services__h2 em {
  color: var(--gold);
  font-style: italic;
}

.services__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT — service index */
.services__index {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #C9BEA8;
}

.services__row {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  align-items: center;
  gap: 20px;
  padding: 22px 24px 22px 28px;
  border: none;
  border-bottom: 1px solid #C9BEA8;
  border-left: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.services__row:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: -2px;
}

.services__row.is-active {
  background: #FFFFFF;
  border-left-color: var(--gold);
  padding-left: 26px;
}

.services__row-num {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #9C9088;
  transition: color 220ms ease;
}

.services__row-num { display: none; }
.services__row.is-active .services__row-num { color: var(--accent); }

.services__row-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  opacity: 0.55;
  transition: background 220ms ease, opacity 220ms ease;
}

.services__row.is-active .services__row-icon {
  background: var(--gold);
  opacity: 1;
}

.services__row-icon svg { width: 20px; height: 20px; }

.services__row-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #5C5248;
  transition: color 220ms ease, font-weight 220ms ease;
}

.services__row.is-active .services__row-title {
  color: var(--navy);
  font-weight: 600;
}

.services__row-arrow {
  font-size: 22px;
  color: var(--gold);
  opacity: 0;
  text-align: right;
  transition: opacity 220ms ease;
}

.services__row.is-active .services__row-arrow { opacity: 1; }

/* RIGHT — detail panel */
.services__detail-wrap {
  position: sticky;
  top: 24px;
}

.services__detail {
  background: #FFFFFF;
  padding: 40px 44px 36px;
  box-shadow: 0 24px 60px -28px rgba(31, 41, 92, 0.25);
  border-top: 4px solid var(--gold);
  min-height: 560px;
}

.services__detail-head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.services__detail-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  transition: background 220ms ease;
}

.services__detail-icon svg { width: 32px; height: 32px; }

.services__detail-num {
  display: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  transition: color 220ms ease;
}

.services__detail-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 34px;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}

.services__detail-long {
  font-family: var(--sans);
  font-size: 15px;
  color: #1C1916;
  line-height: 1.65;
  margin: 0 0 28px;
}

.services__includes {
  background: #FAF8F3;
  padding: 22px 24px 24px;
  margin-bottom: 24px;
}

.services__includes-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5C5248;
  margin-bottom: 14px;
}

.services__includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.services__includes-list li {
  font-family: var(--sans);
  font-size: 14px;
  color: #1C1916;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.services__includes-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.services__outcome {
  padding-top: 20px;
  border-top: 1px dotted #C9BEA8;
  margin-bottom: 24px;
}

.services__outcome-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A0632A;
  margin-bottom: 8px;
}

.services__outcome-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.45;
  margin: 0;
}

.services__cta {
  display: inline-block;
  padding: 14px 28px;
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: var(--mauve);
  transition: opacity 0.15s;
}

.services__cta:hover { opacity: 0.92; }


/* ─── HOW WE WORK ─────────────────────────── */
.how {
  background: #fff;
  padding: var(--section-pad);
  border-top: 1px solid var(--line);
}

.how h2 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 56px;
  letter-spacing: -0.015em;
  line-height: 1;
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.how__cell {
  background: #fff;
  padding: 48px 40px;
}

.how__cell-num {
  font-weight: 500;
  font-size: 13px;
  color: #ccc;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.how__cell-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.how__cell-icon svg { width: 28px; height: 28px; }

.how--4col .how__grid {
  grid-template-columns: repeat(4, 1fr);
}

.how__cell h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.how__cell p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
}

.how__cell-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: gap 0.2s;
}

.how__cell-cta:hover { gap: 14px; }

.how__cell-note {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--mauve);
  font-style: normal;
  letter-spacing: 0.02em;
  margin-left: 6px;
}

.how__demi {
  margin-top: 2px;
  padding: 36px 40px;
  border-left: 3px solid var(--purple);
  background: var(--bg-off);
}

.how__demi-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--purple);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.how__demi p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.65;
  max-width: 840px;
  margin-bottom: 20px;
}


/* ─── CLIENT STORIES / TESTIMONIALS ───────── */
.testimonials {
  background: #fff;
  padding: var(--section-pad);
}

.testimonials h2 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 56px;
  letter-spacing: -0.015em;
  line-height: 1;
}

.testimonials h2 em {
  color: var(--gold);
  font-style: italic;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

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

.testimonial {
  background: #fff;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial__quote {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial__avatar {
  flex: none;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.02em;
  overflow: hidden;
}

.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial__avatar--photo {
  border: 2px solid var(--line);
}

.testimonial__name {
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}

.testimonial__company {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}


/* ─── FAQ ─────────────────────────────────── */
.faq {
  background: #fff;
  padding: var(--section-pad);
  border-top: 1px solid var(--line);
}

.faq__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 72px;
  align-items: start;
}

.faq h2 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 40px;
  letter-spacing: -0.015em;
  line-height: 1;
}

.faq__list {
  column-count: 2;
  column-gap: 48px;
}

.faq__image {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.faq__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85% center;
}

.faq__item {
  border-top: 1px solid var(--line);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }

.faq__q {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 28px 56px 28px 0;
  line-height: 1.3;
}

.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ''; }

.faq__q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1;
}

.faq__item[open] .faq__q::after { content: '\2212'; }

.faq__a { padding: 0 0 28px 0; max-width: 760px; }

.faq__a p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mid);
}


/* ─── IMAGE BAND (full-width lifestyle photo) ── */
.image-band {
  background: var(--platinum);
  border-radius: 8px;
  overflow: hidden;
}

.image-band img,
.image-band video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}


/* ─── DEMI CALLOUT (homepage crossover) ────── */
.demi-callout {
  background: var(--platinum);
  padding: var(--section-pad);
}

.demi-callout__inner {
  max-width: 720px;
  margin: 0 auto;
}

.demi-callout__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.demi-callout__label-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--purple);
}

.demi-callout__label-text {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 600;
}

.demi-callout h2 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 24px;
}

.demi-callout h2 em {
  color: var(--purple);
  font-style: normal;
}

.demi-callout p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--mid);
  margin-bottom: 28px;
  max-width: 700px;
}

.demi-callout__link {
  color: var(--purple);
}


/* ─── CTA ─────────────────────────────────── */
.cta {
  background: var(--navy);
  padding: var(--section-pad);
  text-align: center;
}

.cta h2 {
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.0;
}

.cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta__break { display: none; }

.cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.cta__btn {
  background: #fff;
  color: var(--navy);
  padding: 18px 40px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}

.cta__btn:hover { opacity: 0.9; }


/* ─── FOOTER ──────────────────────────────── */
.footer {
  background: #111;
  padding: 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo img {
  height: 38px;
  width: auto;
  border-radius: 0;
  filter: brightness(0) invert(1);
}

.footer__copy {
  font-size: 13px;
  color: #777;
}

.footer__nav {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__nav a {
  font-size: 13px;
  color: #777;
  transition: color 0.15s;
}

.footer__nav a:hover { color: #bbb; }

.footer__nav a.footer__social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 25px; height: 25px;
}

.footer__nav a.footer__social-link svg { width: 22px; height: 22px; display: block; }


/* ─── MOBILE NAV TOGGLE (hidden on desktop) ── */
.nav__mobile-toggle { display: none; }


/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1100px) {
  :root { --section-pad: 80px 48px; }

  .hero {
    padding: 80px 48px 64px;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero h1 { font-size: 64px; }

  .nav { padding: 0 48px; }

  .services__head { margin-bottom: 40px; }
  .services__detail { padding: 32px 32px 28px; }
  .services__detail-title { font-size: 30px; }

  .how--4col .how__grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 768px) {
  :root { --section-pad: 64px 24px; --nav-h: 72px; }

  .nav { padding: 0 24px; }
  .nav__logo img { height: 66px; }
  .nav__links { display: none; }

  .nav__mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 16px;
  }

  .nav__mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
  }

  /* mobile nav dropdown */
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav__links.nav__links--open {
    display: flex;
  }

  .nav__links li {
    border-bottom: 1px solid var(--line);
  }

  .nav__links li:last-child { border-bottom: none; }

  .nav__links a {
    display: block;
    padding: 14px 0;
    font-size: 22.5px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 48px;
    gap: 40px;
  }

  .hero h1 { font-size: 48px; }
  .hero__body { font-size: 16px; }
  .hero__img-wrap { aspect-ratio: 4/3; }
  .hero__img-wrap img { object-position: center 60%; }

  .about h2 { font-size: 38px; }
  .about__tiles { grid-template-columns: 1fr; }

  .services__head { margin-bottom: 32px; }
  .services__h2 { font-size: 38px; }
  .services__split { grid-template-columns: 1fr; gap: 24px; }
  .services__detail-wrap { position: static; }
  .services__row { grid-template-columns: 40px 1fr 20px; padding: 18px 16px; gap: 14px; }
  .services__row.is-active { padding-left: 14px; }
  .services__row-icon { width: 40px; height: 40px; }
  .services__row-icon svg { width: 18px; height: 18px; }
  .services__row-title { font-size: 18px; }
  .services__detail { padding: 28px 24px 24px; min-height: 0; }
  .services__detail-head { grid-template-columns: 56px 1fr; gap: 16px; margin-bottom: 22px; }
  .services__detail-icon { width: 56px; height: 56px; }
  .services__detail-icon svg { width: 28px; height: 28px; }
  .services__detail-title { font-size: 26px; }
  .services__includes-list { grid-template-columns: 1fr; gap: 10px; }

  .how__grid { grid-template-columns: 1fr; }
  .how--4col .how__grid { grid-template-columns: 1fr; }
  .how h2 { font-size: 38px; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials h2 { font-size: 38px; }

  .demi-callout h2 { font-size: 32px; }

  .faq h2 { font-size: 38px; margin-bottom: 32px; }
  .faq__q { font-size: 18px; padding: 22px 48px 22px 0; }
  .faq__q::after { font-size: 24px; }
  .faq__layout { grid-template-columns: 1fr; gap: 48px; }
  .faq__image { aspect-ratio: 16/9; position: static; max-width: 480px; }
  .faq__list { column-count: 1; }

  .cta h2 { font-size: 44px; }
  .cta__break { display: block; }

  .footer {
    flex-direction: column;
    gap: 24px;
    padding: 40px 24px;
    text-align: center;
  }

  .footer__nav { justify-content: center; }
}
