/* BrandNova, one-page site.
   Mobile-first: base styles follow "BrandNova Site Mobile.dc.html" (390px),
   the 900px+ block follows "BrandNova Site.dc.html" (1180px container). */

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-latin.woff2") format("woff2");
  font-weight: 300 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #181818;
  --ink-2: #2b2b2b;
  --ink-3: #202020;
  --paper: #F5F3EB;
  --soft: #EEEEEC;
  --white: #FFFFFF;
  --near-white: #FFFCFC;
  --red: #D2232A;
  --red-hover: #A81C22;
  --red-soft: #E8656A;
  --muted: #9E9F9F;
  --body-dark: #C9C9C7;
  --lead-dark: #DEDEDC;
  --body-light: #3a3a38;
  /* design uses #8a8a86 for light-surface eyebrows; darkened for AA contrast on small text */
  --eyebrow-light: #6d6d69;
  --line-light: #dcd9cf;
  --line-soft: #ececea;
  --line-dark: #2b2b2b;

  --sans: "Archivo", Helvetica, Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --mono: ui-monospace, Menlo, Consolas, monospace;

  --gutter: 20px;
  --container: 1180px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-hover); }

:focus-visible { outline: 2px solid var(--red-soft); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 50;
  background: var(--near-white); color: var(--ink);
  padding: 10px 14px; font-size: 14px;
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

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

/* ---------- Shared pieces ---------- */

.eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--eyebrow-light);
}

.section-title {
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -.018em;
  font-weight: 500;
  text-wrap: pretty;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-weight: 500;
  border-radius: 2px;
  text-align: center;
  transition: background-color .18s ease;
}
.btn:hover, .btn:focus-visible { background: var(--red-hover); color: #fff; }

.btn-lg {
  font-size: 15.5px;
  padding: 16px 20px;
  min-height: 52px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--near-white);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.brand:hover { color: var(--near-white); }
.brand-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red); display: inline-block;
}

.plus {
  color: var(--red-soft);
  font-size: 19px;
  line-height: 1;
  transition: transform .18s ease;
}
details[open] > summary .plus { transform: rotate(45deg); }

summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(24, 24, 24, .96);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 14px;
}
.btn-header {
  font-size: 13.5px;
  padding: 12px 16px;
  min-height: 44px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--near-white);
  padding: 56px 0 44px;
}
.hero-art {
  position: absolute; top: 0; right: 0;
  width: 100%; height: 260px;
  background: var(--ink) url("../img/hero-system.webp") center right / cover no-repeat;
  opacity: .9;
}
.hero-shade {
  position: absolute; top: 0; right: 0;
  width: 100%; height: 260px;
  background: linear-gradient(180deg, rgba(24,24,24,.2) 0%, rgba(24,24,24,.75) 60%, var(--ink) 100%);
}
.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 120px;
}
.hero .eyebrow { color: var(--muted); }
.hero h1 {
  font-size: clamp(2.25rem, 1.2rem + 4.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.022em;
  font-weight: 500;
  max-width: 18ch;
  text-wrap: pretty;
}
.hero-foot {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.regions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  padding-top: 18px;
  border-top: 1px solid #2f2f2f;
}
.regions li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.regions li:not(:last-child) { flex: 1; }
.regions li::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red); flex: none;
}
.regions li:not(:last-child)::after {
  content: "";
  flex: 1; height: 1px; background: #333;
  margin-left: 6px;
}
.region-full {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- What I do ---------- */

.services {
  background: var(--paper);
  padding: 52px 0;
}
.services .eyebrow { margin-bottom: 22px; }
.service-list { border-top: 1px solid var(--line-light); }
.service-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}
.service-list li:last-child { border-bottom: 0; }
.service-list h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.service-idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red);
}

/* ---------- Framework ---------- */

.framework {
  background: var(--ink);
  color: var(--near-white);
  padding: 52px 0;
}
.framework .eyebrow { color: var(--muted); margin-bottom: 16px; }
.framework .section-title { margin-bottom: 28px; }

.step-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.step-progress span {
  flex: 1; height: 3px; background: #3a3a3a;
  transition: background-color .2s ease;
}
.step-progress span.is-on { background: var(--red); }

.steps { border-top: 1px solid var(--line-dark); }
.steps > li { border-bottom: 1px solid var(--line-dark); }
.steps > li:last-child { border-bottom: 0; }

.step summary {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 56px;
}
.step h3 { font-size: 17px; font-weight: 600; }
.step-num {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid #3d3d3d; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.step-num.is-first { border-color: var(--red); color: var(--red-soft); }
.step-body { padding: 0 0 18px 46px; }
.step-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body-dark);
}
.step-body p + p { margin-top: 10px; }
.step-body .step-quote {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  color: var(--red-soft);
}

/* ---------- Statement ---------- */

.statement {
  background: var(--soft);
  border-bottom: 1px solid #e2e2df;
  padding: 48px 0;
}
.statement p {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.22;
  font-weight: 300;
  letter-spacing: -.01em;
  text-wrap: pretty;
}
.statement p::after {
  content: "";
  display: block;
  width: 48px; height: 3px;
  background: var(--red);
  margin-top: 20px;
}

/* ---------- About ---------- */

.about {
  background: var(--ink);
  color: var(--near-white);
  padding: 52px 0;
}
.about .eyebrow { color: var(--muted); }
.about-head { margin-bottom: 22px; }
.about-rule, .about-markets { display: none; }

.portrait {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 24px;
}
.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--ink-3);
}
.portrait figcaption {
  font-size: 15px;
  line-height: 1.45;
  padding-bottom: 4px;
}
.portrait small { font-size: 12.5px; color: var(--muted); }
.portrait-idx { display: none; }

.about-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--lead-dark);
  margin-bottom: 24px;
}

.triad {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 18px 0;
  margin-bottom: 24px;
}
.triad > li:not(.triad-link) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}
.triad-link { width: 18px; height: 1px; background: #3a3a3a; margin: 5px 8px 0; }
.triad-icon { width: 10px; height: 10px; border: 1px solid var(--red); }
.triad-icon.is-solid { background: var(--red); }
.triad-icon.is-round { border-radius: 50%; }

.about-quote {
  padding-left: 16px;
  border-left: 3px solid var(--red);
}
.about-quote p {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.36;
  font-weight: 300;
  color: var(--near-white);
  text-wrap: pretty;
}

/* ---------- AI ---------- */

.ai {
  background: var(--ink);
  color: var(--near-white);
  padding: 0 0 52px;
}
.ai-banner {
  position: relative;
  background: #141414;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ai-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ai-fade {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(24,24,24,0) 0%, rgba(24,24,24,.8) 55%, var(--ink) 100%);
}
.ai-banner-inner {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
}
.ai .eyebrow { color: var(--red-soft); margin-bottom: 12px; }
.ai-statement {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.28;
  font-weight: 300;
  max-width: 26ch;
  text-wrap: pretty;
}
.ai-label { display: none; }
.ai-grid { padding-top: 8px; }
.ai-intro p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--body-dark);
  margin-top: 8px;
}
.chips {
  display: flex;
  gap: 8px;
  margin: 18px 0;
}
.chips li {
  border: 1px solid #2f2f2f;
  color: var(--muted);
  font-size: 12px;
  padding: 6px 10px;
}

/* Accordions (AI practice + FAQ) */
.accordion-dark { border-top: 1px solid var(--line-dark); }
.accordion-dark details { border-bottom: 1px solid var(--line-dark); }
.accordion-dark summary {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 8px 0;
}
.acc-num { font-family: var(--mono); font-size: 11px; color: var(--red-soft); }
.acc-title { font-size: 15.5px; font-weight: 500; color: var(--near-white); }
.accordion-dark p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--body-dark);
  padding: 0 0 16px 42px;
}

.accordion-light { border-top: 1px solid var(--line-light); }
.accordion-light details { border-bottom: 1px solid var(--line-light); }
.accordion-light summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 10px 0;
  font-size: 16.5px;
  font-weight: 500;
}
.accordion-light .plus { color: var(--red); }
.accordion-light p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body-light);
  padding-bottom: 18px;
  max-width: 62ch;
}

/* ---------- Clarity ---------- */

.clarity {
  background: var(--white);
  padding: 52px 0;
}
.clarity .eyebrow { margin-bottom: 18px; }
.clarity-word {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.02em;
}
.red-bar {
  display: block;
  width: 48px; height: 3px;
  background: var(--red);
  margin: 20px 0;
}
.clarity-list { border-top: 1px solid var(--line-soft); }
.clarity-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15.5px;
  color: var(--body-light);
}
.clarity-list li:last-child { border-bottom: 0; }
.clarity-list span { font-family: var(--mono); font-size: 11px; color: var(--red); }
.clarity-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--body-light);
  margin-top: 24px;
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--paper);
  padding: 52px 0;
}
.faq .eyebrow { margin-bottom: 18px; }
/* The mobile design shows only the "FAQ" label; the heading stays for screen readers. */
.faq-title {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Contact + footer ---------- */

.contact {
  background: var(--ink);
  color: var(--near-white);
  padding: 56px 0 0;
}
.contact h2 {
  font-size: 28px;
  line-height: 1.14;
  letter-spacing: -.02em;
  font-weight: 500;
  max-width: 24ch;
  text-wrap: pretty;
}
.contact-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body-dark);
  margin-top: 16px;
  max-width: 58ch;
}
.contact .btn { margin-top: 28px; }
.btn-block-mobile { display: flex; width: 100%; }
.contact-alt {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}
.contact-alt a { color: var(--near-white); border-bottom: 1px solid #4a4a4a; overflow-wrap: anywhere; }
.contact-alt a:hover { color: var(--near-white); border-bottom-color: var(--red-soft); }

.site-footer {
  background: var(--ink);
  color: var(--near-white);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
}
.footer-inner::before {
  content: "";
  flex-basis: 100%;
  height: 1px;
  background: var(--line-dark);
  margin-bottom: 12px;
}
.brand-footer { font-size: 15px; }
.footer-tag { font-size: 13px; color: #8a8a8a; }

/* ---------- Reveal on scroll (only when JS runs; off for reduced motion) ---------- */

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .js .reveal.is-visible { opacity: 1; transform: none; }
}

/* ============================================================
   Tablet: same layout as mobile, wider gutters
   ============================================================ */

@media (min-width: 600px) {
  :root { --gutter: 32px; }
  .hero-art, .hero-shade { height: 340px; }
  .hero-inner { padding-top: 180px; }
  .hero .btn-lg { align-self: flex-start; }
  .btn-block-mobile { display: inline-flex; width: auto; }
  .ai-banner { min-height: 420px; }
  .portrait { grid-template-columns: 160px 1fr; gap: 20px; }
}

/* ============================================================
   Desktop (900px+): "BrandNova Site.dc.html"
   ============================================================ */

@media (min-width: 900px) {
  .eyebrow { font-size: 12px; }
  .section-title { font-size: 38px; line-height: 1.14; letter-spacing: -.02em; }

  .btn-lg { font-size: 15.5px; padding: 15px 26px; min-height: 0; }

  /* Header */
  .header-inner { padding-block: 16px; gap: 24px; }
  .brand { font-size: 19px; gap: 8px; }
  .brand-dot { width: 6px; height: 6px; }
  .btn-header { font-size: 14px; padding: 10px 18px; min-height: 0; }

  /* Hero */
  .hero { padding: 104px 0 92px; }
  .hero-art {
    width: 46%; height: auto; bottom: 0;
    border-left: 1px solid var(--line-dark);
    opacity: 1;
  }
  .hero-shade {
    width: 70%; height: auto; bottom: 0;
    background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 34%, rgba(24,24,24,.86) 56%, rgba(24,24,24,.55) 100%);
  }
  .hero-inner { gap: 56px; padding-top: 0; }
  .hero h1 { line-height: 1.05; letter-spacing: -.025em; }
  .hero-foot {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 34px;
    border-top: 1px solid #2f2f2f;
  }
  .hero .btn-lg { align-self: auto; }
  .regions {
    gap: 26px;
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: .04em;
    padding-top: 0;
    border-top: 0;
    flex-wrap: wrap;
  }
  .regions li:not(:last-child) { flex: none; }
  .regions li::before, .regions li:not(:last-child)::after { display: none; }
  .region-full { position: static; width: auto; height: auto; overflow: visible; clip: auto; }
  .region-short { display: none; }

  /* What I do */
  .services { padding: 96px 0; }
  .services .eyebrow { margin-bottom: 52px; }
  .service-list li {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 2.2fr;
    gap: 48px;
    align-items: baseline;
    padding: 28px 0;
  }
  .service-list h3 {
    display: flex; align-items: baseline; gap: 12px;
    font-size: 20px;
    grid-column: 1;
  }
  .service-idx { display: none; }
  .service-list h3::before {
    content: "";
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--red); flex: none;
    position: relative; top: -3px;
  }

  /* Framework */
  .framework { padding: 100px 0; }
  .framework .eyebrow { margin-bottom: 22px; }
  .framework .section-title { max-width: 24ch; margin-bottom: 56px; }
  .step-progress { display: none; }
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line-dark);
    border: 1px solid var(--line-dark);
  }
  .steps > li { background: var(--ink); padding: 32px 28px; border-bottom: 0; }
  .step summary {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 0;
    margin-bottom: 18px;
    cursor: default;
  }
  .step .plus { display: none; }
  .step h3 { font-size: 19px; }
  .step-num { width: 30px; height: 30px; font-size: 13px; }
  .step-body { padding: 0; }
  .step-body p { font-size: 15.5px; }
  .step-body p + p { margin-top: 14px; }
  .step-body .step-quote { font-size: 19px; }

  /* Statement */
  .statement {
    padding: 88px 0;
    border-top: 1px solid #e2e2df;
    text-align: center;
  }
  .statement .wrap { max-width: 900px; }
  .statement p { font-size: 44px; line-height: 1.2; letter-spacing: -.015em; }
  .statement p::after { display: none; }

  /* About */
  .about { padding: 100px 0; }
  .about-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-dark);
    margin-bottom: 56px;
  }
  .about-rule { display: block; flex: 1; min-width: 120px; height: 1px; background: var(--line-dark); }
  .about-markets {
    display: flex; align-items: center; gap: 16px;
    font-family: var(--mono); font-size: 11.5px; color: var(--muted);
  }
  .about-markets span { display: flex; align-items: center; gap: 7px; }
  .about-markets i { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
  .about-markets b { width: 22px; height: 1px; background: #3a3a3a; }

  .about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: start;
  }
  .portrait { display: block; margin-bottom: 0; }
  .portrait figcaption {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding: 14px 0 0;
    border-top: 1px solid var(--line-dark);
    font-size: 14px;
    line-height: 1.5;
  }
  .portrait-idx { display: inline; font-family: var(--mono); font-size: 11px; color: #6f6f6f; }

  .about-lead { font-size: 19px; margin-bottom: 34px; max-width: 52ch; }
  .triad { padding: 26px 0; margin-bottom: 36px; }
  .triad > li:not(.triad-link) { gap: 12px; font-size: 15px; }
  .triad-link { width: 44px; margin: 6px 16px 0; }
  .triad-icon { width: 12px; height: 12px; }
  .about-quote { padding-left: 22px; }
  .about-quote p { font-size: 27px; line-height: 1.34; }

  /* AI */
  .ai { padding-bottom: 100px; }
  .ai-banner { min-height: 520px; }
  .ai-fade { height: 220px; background: linear-gradient(180deg, rgba(24,24,24,0) 0%, rgba(24,24,24,.75) 55%, var(--ink) 100%); }
  .ai-banner-inner { padding-top: 56px; padding-bottom: 40px; }
  .ai .eyebrow { margin-bottom: 18px; }
  .ai-statement { font-size: 34px; }
  .ai-label {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--muted);
  }
  .ai-label-line { width: 1px; height: 56px; background: linear-gradient(180deg, var(--red), rgba(210,35,42,0)); }
  .ai-label-rule { flex: 1; height: 1px; background: var(--line-dark); }
  .ai-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 1.5fr;
    gap: 72px;
    align-items: start;
    padding-top: 0;
  }
  .ai-intro p { font-size: 16.5px; margin-top: 0; }
  .chips { margin: 24px 0 0; }
  .chips li { font-size: 12.5px; padding: 6px 11px; }

  .accordion-dark details { padding: 20px 0; }
  .accordion-dark summary { grid-template-columns: 40px 1fr auto; gap: 16px; min-height: 0; padding: 0; }
  .acc-num { font-size: 11.5px; }
  .acc-title { font-size: 17.5px; letter-spacing: -.01em; }
  .accordion-dark p { font-size: 16px; line-height: 1.7; padding: 0; margin: 12px 0 0 56px; max-width: 60ch; }

  .accordion-light details { padding: 22px 0; }
  .accordion-light summary { min-height: 0; padding: 0; gap: 24px; font-size: 19px; }
  .accordion-light .plus { font-size: 20px; }
  .accordion-light p { font-size: 16.5px; line-height: 1.7; padding: 0; margin-top: 14px; }

  /* Clarity */
  .clarity { padding: 96px 0; border-top: 1px solid #e6e3d9; }
  .clarity-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
  }
  .clarity .eyebrow { margin-bottom: 26px; }
  .clarity-word { font-size: 76px; }
  .red-bar { width: 64px; margin: 26px 0; }
  .clarity-list li { grid-template-columns: 34px 1fr; gap: 14px; font-size: 15px; }
  .clarity-text { font-size: 17.5px; margin-top: 0; }

  /* FAQ */
  .faq { padding: 96px 0; }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: start;
  }
  .faq .eyebrow { margin-bottom: 22px; }
  .faq-title { position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: normal; }

  /* Contact + footer */
  .contact { padding: 110px 0 0; }
  .contact h2 { font-size: 46px; line-height: 1.1; letter-spacing: -.022em; }
  .contact-text { font-size: 17.5px; line-height: 1.7; margin-top: 26px; }
  .contact .btn { margin-top: 38px; }
  .site-footer { padding: 80px 0 56px; }
  .footer-inner::before { margin-bottom: 18px; }
  .brand-footer { font-size: 16px; }
  .footer-tag { margin-left: 8px; }
}
