/* =========================================================================
   p2o.work — site stylesheet
   Design tokens come from assets/css/tokens/*.css (copied from the
   P2O / Ade Nichols design system). Everything below is site-level layout.
   ========================================================================= */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }

a { color: var(--text-link); }
a:hover { color: var(--brand-primary-strong); }

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ---- Eyebrow (SectionLabel) --------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-text); font-weight: var(--fw-bold);
  font-size: var(--text-xs); letter-spacing: var(--tracking-label);
  text-transform: uppercase; color: var(--brand-primary);
}
.eyebrow--on-dark { color: var(--text-on-dark); }
.eyebrow--accent { color: var(--brand-accent); }
.eyebrow--muted { color: var(--text-muted); }
.eyebrow__tick { width: 22px; height: 3px; border-radius: 2px; background: currentColor; flex: 0 0 auto; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-text); font-weight: var(--fw-bold);
  border: 0; border-radius: 14px; cursor: pointer; text-decoration: none;
  background: var(--brand-primary); color: var(--brand-primary-on);
  padding: 12px 22px; font-size: var(--text-md); line-height: 1.2;
  box-shadow: var(--shadow-sm);
  transition: background var(--dur-med) var(--ease-standard),
              transform var(--dur-med) var(--ease-standard),
              box-shadow var(--dur-med) var(--ease-standard);
}
.btn:hover { background: var(--brand-primary-strong); color: var(--brand-primary-on); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: none; }
.btn--sm { padding: 9px 16px; font-size: var(--text-sm); border-radius: 12px; }
.btn--lg { padding: 15px 28px; font-size: var(--text-lg); border-radius: 16px; }
.btn--orange { background: var(--orange-500); color: #fff; }
.btn--orange:hover { background: var(--orange-600); color: #fff; }
.btn--white { background: #fff; color: var(--blue-600); }
.btn--white:hover { background: rgba(255,255,255,0.9); color: var(--blue-600); }

/* Text link with the signature accent underline */
.link-rule {
  font-family: var(--font-text); font-weight: var(--fw-bold);
  color: var(--brand-primary); text-decoration: none;
  border-bottom: 2px solid var(--brand-accent); padding-bottom: 3px;
}
.link-rule:hover { color: var(--brand-primary-strong); }
.link-rule--on-dark { color: #fff; border-bottom-color: rgba(255,255,255,0.45); }
.link-rule--on-dark:hover { color: #fff; border-bottom-color: #fff; }

/* ---- Dot grid ------------------------------------------------------------ */
.dots { display: flex; flex-direction: column; gap: 8px; }
.dots__row { display: flex; gap: 8px; }
.dots__dot { width: 14px; height: 14px; border-radius: var(--radius-xs); background: var(--ink-300); flex: 0 0 auto; }
.dots__dot--on { background: var(--brand-primary); }
.dots--sm .dots__dot { width: 12px; height: 12px; }
.dots--lg .dots__dot { width: 16px; height: 16px; }

/* ---- Header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: var(--blue-600); border-bottom: 1px solid rgba(255,255,255,0.14);
}
.site-header__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 36px; width: auto; display: block; }
.logo__word { font-family: var(--font-display); font-weight: var(--fw-medium); font-size: 18px; color: var(--text-on-dark); letter-spacing: -0.01em; white-space: nowrap; }
.nav { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.nav a { font-family: var(--font-text); font-weight: var(--fw-semibold, 600); font-size: 15px; color: rgba(255,255,255,0.86); text-decoration: none; }
.nav a:hover { color: #fff; }
.nav-toggle { display: none; }

/* ---- Sections ------------------------------------------------------------ */
.section { scroll-margin-top: 72px; }
.section__body { padding-block: 88px 92px; }
.section--page { background: var(--surface-page); }
.section--card { background: var(--surface-card); border-top: 1px solid var(--border-hair); }
.section--sunken { background: var(--surface-sunken); border-top: 1px solid var(--border-hair); }
.section--ink { background: var(--surface-invert); }
.section--hairline { border-top: 1px solid var(--border-hair); }

.h2 {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: clamp(30px, 3.4vw, 50px); line-height: 1.04; letter-spacing: -0.02em;
  color: var(--text-strong); margin: 14px 0 14px; text-wrap: balance;
}
.h2--on-dark { color: #fff; font-size: clamp(34px, 4.4vw, 66px); line-height: 1.02; letter-spacing: -0.025em; }
.lede { font-family: var(--font-text); font-size: var(--text-lg); line-height: 1.55; color: var(--text-body); max-width: 58ch; margin: 0; text-wrap: pretty; }
.lede--on-dark { color: rgba(248,247,241,0.86); max-width: 56ch; }
.pull {
  font-family: var(--font-accent); font-style: italic;
  font-size: clamp(24px, 2.8vw, 40px); line-height: 1.25;
  color: var(--orange-400); margin: 64px 0 0; max-width: 30ch; text-wrap: balance;
}

.split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: start; }

/* ---- Hero ---------------------------------------------------------------- */
.hero { position: relative; background: var(--grad-p2o-logo); overflow: hidden; }
.hero__ring { position: absolute; right: -4vw; top: -6vw; width: 46vw; height: 46vw; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12); }
.hero__blob { position: absolute; right: 6vw; bottom: -14vw; width: 34vw; height: 34vw; border-radius: 999px; background: rgba(228,147,29,0.13); }
.hero__inner { position: relative; padding-top: 86px; }
.hero__title {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: clamp(46px, 7vw, 104px); line-height: 0.98; letter-spacing: -0.03em;
  color: #fff; margin: 22px 0 0; max-width: 17ch; text-wrap: balance;
}
.hero__title em { font-style: normal; color: var(--orange-400); }
.hero__cols { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: end; margin-top: 44px; padding-bottom: 64px; }
.hero__lede { font-family: var(--font-text); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; color: rgba(255,255,255,0.92); max-width: 50ch; margin: 0 0 32px; text-wrap: pretty; }
.hero__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero__quote { border-left: 3px solid var(--orange-500); padding-left: 24px; }
.hero__quote p { font-family: var(--font-accent); font-style: italic; font-size: clamp(19px, 1.7vw, 25px); line-height: 1.35; color: #fff; margin: 0 0 18px; text-wrap: pretty; }
.hero__quote cite { font-family: var(--font-text); font-style: normal; font-size: var(--text-xs); font-weight: var(--fw-bold); letter-spacing: var(--tracking-label); text-transform: uppercase; color: rgba(255,255,255,0.7); }
.hero__stats { position: relative; border-top: 1px solid rgba(255,255,255,0.16); }
.hero__stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: 26px 28px; border-left: 1px solid rgba(255,255,255,0.16); }
.stat:first-child { padding-left: 0; border-left: 0; }
.stat:last-child { padding-right: 0; }
.stat__figure { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-3xl); color: var(--orange-400); line-height: 1; }
.stat__note { font-family: var(--font-text); font-size: var(--text-sm); color: rgba(255,255,255,0.82); margin-top: 6px; }

/* ---- Drag list ----------------------------------------------------------- */
.drag-list { list-style: none; margin: 0; padding: 0; }
.drag-item { display: grid; grid-template-columns: 88px 1fr; gap: 0 28px; align-items: start; padding: 24px 0; border-top: 1px solid var(--border-hair); }
.drag-item:last-child { border-bottom: 1px solid var(--border-hair); }
.drag-item__num { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(38px, 4vw, 58px); line-height: 0.9; color: var(--brand-accent); opacity: 0.5; }
.drag-item p { font-family: var(--font-text); font-size: var(--text-lg); line-height: 1.5; color: var(--text-body); margin: 0; }
.drag-item strong, .stage strong { color: var(--text-strong); }
.stage { font-family: var(--font-text); font-size: var(--text-lg); line-height: 1.55; color: var(--text-body); margin: 0 0 16px; }

/* ---- Pillars (approach) --------------------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; margin-top: 56px; }
.pillar { position: relative; padding-top: 30px; border-top: 3px solid var(--orange-500); overflow: hidden; }
.pillar--teal { border-top-color: var(--teal-400); }
.pillar--coral { border-top-color: var(--coral); }
.pillar__ghost { position: absolute; right: -6px; top: 8px; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 150px; line-height: 1; color: rgba(248,247,241,0.07); pointer-events: none; user-select: none; }
.pillar h3 { position: relative; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-2xl); color: #fff; margin: 0 0 12px; }
.pillar p { position: relative; font-family: var(--font-text); font-size: var(--text-md); line-height: 1.6; color: rgba(248,247,241,0.86); margin: 0; }

/* ---- Differentiators ------------------------------------------------------ */
.diff-list { display: grid; gap: 30px; }
.diff { border-left: 4px solid var(--brand-accent); padding: 4px 0 4px 26px; }
.diff h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-2xl); color: var(--text-strong); margin: 0 0 10px; text-wrap: balance; }
.diff p { font-family: var(--font-text); font-size: var(--text-md); line-height: 1.6; color: var(--text-body); margin: 0; max-width: 60ch; }
.diff p + p { margin-top: 14px; }
.diff cite { font-family: var(--font-accent); font-style: italic; }

/* ---- Services ------------------------------------------------------------- */
.audit {
  position: relative; overflow: hidden; border-radius: 26px;
  background: var(--grad-resonance); padding: 44px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
  margin-bottom: 26px;
}
.audit__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.audit__meta .eyebrow { color: var(--orange-400); }
.audit__meta .eyebrow--quiet { color: rgba(255,255,255,0.82); }
.audit__dot { width: 4px; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.6); }
.audit h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(32px, 3.6vw, 52px); line-height: 1.02; letter-spacing: -0.02em; color: #fff; margin: 0 0 16px; }
.audit p { font-family: var(--font-text); font-size: var(--text-lg); line-height: 1.55; color: rgba(255,255,255,0.92); margin: 0 0 26px; max-width: 46ch; }
.audit__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.audit__list li { display: flex; gap: 14px; font-family: var(--font-text); font-size: var(--text-md); color: #fff; line-height: 1.5; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.2); }
.audit__list li:last-child { padding-bottom: 0; border-bottom: 0; }
.audit__list li::before { content: "\00B7"; color: var(--orange-400); font-weight: var(--fw-bold); }

.offer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.card {
  background: var(--surface-card); border: 1px solid var(--border-hair);
  border-radius: 18px; padding: 32px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-2xl); color: var(--text-strong); margin: 14px 0 12px; }
.card h3.tight { margin-bottom: 8px; }
.card p { font-family: var(--font-text); font-size: var(--text-md); line-height: 1.6; color: var(--text-body); margin: 0 0 14px; }
.card p:last-child { margin-bottom: 0; }
.card p.quiet { color: var(--text-muted); }
.card em { font-family: var(--font-accent); }
.card__foot { margin-top: auto; padding-top: 22px; }

/* ---- Experience ----------------------------------------------------------- */
.experience { max-width: 62ch; border-top: 3px solid var(--brand-accent); padding-top: 32px; display: grid; gap: 22px; }
.experience p { font-family: var(--font-text); font-size: var(--text-lg); line-height: 1.6; color: var(--text-body); margin: 0; }
.confidential {
  font-family: var(--font-accent); font-style: italic; font-size: var(--text-xl);
  line-height: 1.35; color: var(--text-strong); margin: 48px 0 0; max-width: 44ch;
  border-top: 1px solid var(--border-hair); padding-top: 32px;
}

/* ---- Writing -------------------------------------------------------------- */
.writing__head { display: flex; align-items: end; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
.writing__head .h2 { max-width: 26ch; }
.writing__head .lede { max-width: 54ch; }
.feature { text-decoration: none; display: block; border-top: 3px solid var(--brand-accent); padding-top: 32px; }
.feature__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
.feature h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(28px, 3.2vw, 46px); line-height: 1.05; letter-spacing: -0.02em; color: var(--text-strong); margin: 0; text-wrap: balance; }
.feature__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.feature__meta .eyebrow { color: var(--brand-accent); }
.feature__meta .eyebrow--time { color: var(--text-muted); }
.feature__dot { width: 4px; height: 4px; border-radius: 999px; background: var(--brand-primary); }
.feature p { font-family: var(--font-text); font-size: var(--text-lg); line-height: 1.55; color: var(--text-body); margin: 0 0 18px; }
.feature__more { font-family: var(--font-text); font-size: var(--text-md); font-weight: var(--fw-bold); color: var(--brand-primary); }
.feature:hover h3 { color: var(--brand-primary); }

.post-list { margin-top: 44px; }
.post-row {
  text-decoration: none; display: grid; grid-template-columns: 1fr auto; gap: 32px;
  align-items: center; padding: 26px 0; border-top: 1px solid var(--border-hair);
  transition: background var(--dur-med) var(--ease-standard);
}
.post-list .post-row:last-child { border-bottom: 1px solid var(--border-hair); }
.post-row:hover { background: var(--surface-sunken); }
.post-row h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-2xl); color: var(--text-strong); margin: 0 0 8px; text-wrap: pretty; }
.post-row p { font-family: var(--font-text); font-size: var(--text-md); line-height: 1.6; color: var(--text-body); margin: 0; max-width: 68ch; }
.post-row__time { font-family: var(--font-text); font-size: var(--text-sm); font-weight: var(--fw-bold); color: var(--brand-primary); white-space: nowrap; }
.empty-note { font-family: var(--font-text); font-size: var(--text-md); color: var(--text-muted); border-top: 1px solid var(--border-hair); padding-top: 26px; margin: 0; }

.writing__foot { margin-top: 34px; }

/* ---- Archive page ---------------------------------------------------------- */
.page-head { max-width: 60ch; margin-bottom: 64px; }
.page-head__title {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: clamp(34px, 4.4vw, 62px); line-height: 1.02; letter-spacing: -0.025em;
  color: var(--text-strong); margin: 14px 0 18px; text-wrap: balance;
}
.page-head__actions { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 26px; }
.archive-year { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 40px; align-items: start; }
.archive-year + .archive-year { margin-top: 56px; }
.archive-year__label {
  font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-2xl);
  color: var(--brand-accent); margin: 26px 0 0; line-height: 1;
}
.post-list--flush { margin-top: 0; }
.post-row__read { color: var(--brand-primary); }
.post-row__time time { display: block; color: var(--text-muted); font-weight: var(--fw-regular, 400); margin-bottom: 4px; }
.article-foot--split { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ---- Contact --------------------------------------------------------------- */
.contact { position: relative; background: var(--grad-warm-field); overflow: hidden; }
.contact__ring { position: absolute; left: -8vw; bottom: -18vw; width: 40vw; height: 40vw; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18); }
.contact__inner { position: relative; padding-block: 90px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.contact h2 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(34px, 4.4vw, 62px); line-height: 1.01; letter-spacing: -0.025em; color: #fff; margin: 18px 0; max-width: 18ch; text-wrap: balance; }
.contact p.lede { color: #fff; max-width: 46ch; margin: 0 0 30px; }
.contact__actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.byline { display: flex; gap: 18px; align-items: center; margin-bottom: 26px; }
.byline img, .byline picture img { width: 84px; height: 84px; border-radius: 999px; object-fit: cover; object-position: center top; border: 2px solid rgba(255,255,255,0.5); }
.byline__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-2xl); color: #fff; line-height: 1.1; }
.byline__role { font-family: var(--font-text); font-size: var(--text-sm); color: #fff; margin-top: 4px; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; counter-reset: step; }
.steps li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-family: var(--font-text); font-size: var(--text-md); color: #fff; line-height: 1.5; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.28); counter-increment: step; }
.steps li:last-child { padding-bottom: 0; border-bottom: 0; }
.steps li::before { content: counter(step); font-family: var(--font-display); font-weight: var(--fw-bold); }

/* ---- Footer ---------------------------------------------------------------- */
.site-footer { background: var(--surface-invert); color: var(--text-on-dark); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-block: 56px 40px; }
.site-footer .logo img { height: 40px; }
.site-footer .logo__word { font-size: 20px; }
.site-footer p { font-family: var(--font-text); font-size: var(--text-sm); line-height: 1.6; color: rgba(248,247,241,0.75); max-width: 36ch; margin-top: 16px; }
.site-footer__title { font-family: var(--font-text); font-weight: var(--fw-bold); font-size: var(--text-xs); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--brand-accent); margin-bottom: 14px; }
.site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a { font-family: var(--font-text); font-size: var(--text-sm); color: rgba(248,247,241,0.85); text-decoration: none; }
.site-footer__links a:hover { color: #fff; }
.site-footer__legal { padding-block: 0 28px; font-family: var(--font-text); font-size: var(--text-xs); color: rgba(248,247,241,0.55); }

/* ---- Article page ------------------------------------------------------------ */
.article-head { background: var(--grad-p2o-logo); }
.article-head__inner { padding-block: 72px 64px; }
.article-head h1 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(34px, 4.6vw, 68px); line-height: 1.02; letter-spacing: -0.025em; color: #fff; margin: 18px 0 0; max-width: 20ch; text-wrap: balance; }
.article-head__meta { display: flex; gap: 10px; align-items: center; margin-top: 22px; font-family: var(--font-text); font-size: var(--text-sm); color: rgba(255,255,255,0.82); }

.article { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 64px; align-items: start; padding-block: 72px 96px; }
.toc { position: sticky; top: 104px; }
.toc__title { font-family: var(--font-text); font-weight: var(--fw-bold); font-size: var(--text-xs); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; border-left: 2px solid var(--border-hair); }
.toc a { display: block; padding-left: 16px; margin-left: -2px; border-left: 2px solid transparent; font-family: var(--font-text); font-size: var(--text-sm); line-height: 1.4; color: var(--text-muted); text-decoration: none; }
.toc a:hover, .toc a.is-active { color: var(--brand-primary); border-left-color: var(--brand-accent); }

.prose { max-width: 68ch; }
.prose > * { max-width: 68ch; }
.prose p { font-family: var(--font-text); font-size: var(--text-lg); line-height: 1.65; color: var(--text-body); margin: 0 0 24px; text-wrap: pretty; }
.prose h2 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(26px, 2.6vw, 36px); line-height: 1.12; letter-spacing: -0.02em; color: var(--text-strong); margin: 52px 0 16px; scroll-margin-top: 96px; text-wrap: balance; }
.prose h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-2xl); color: var(--text-strong); margin: 36px 0 12px; scroll-margin-top: 96px; }
.prose ul, .prose ol { font-family: var(--font-text); font-size: var(--text-lg); line-height: 1.65; color: var(--text-body); margin: 0 0 24px; padding-left: 22px; }
.prose li { margin-bottom: 10px; }
.prose blockquote { margin: 32px 0; padding: 4px 0 4px 26px; border-left: 4px solid var(--brand-accent); }
.prose blockquote p { font-family: var(--font-accent); font-style: italic; font-size: var(--text-xl); line-height: 1.4; color: var(--text-strong); margin: 0; }
.prose a { color: var(--brand-primary); text-decoration: none; border-bottom: 2px solid var(--brand-accent); }
.prose strong { color: var(--text-strong); }
.prose img { border-radius: 18px; display: block; }
.prose hr { border: 0; border-top: 1px solid var(--border-hair); margin: 48px 0; }
.prose code { font-size: 0.9em; background: var(--surface-sunken); padding: 2px 6px; border-radius: 6px; }
.prose pre { background: var(--surface-invert); color: var(--text-on-dark); padding: 22px; border-radius: 14px; overflow-x: auto; }
.prose pre code { background: none; padding: 0; }

.article-foot { border-top: 1px solid var(--border-hair); margin-top: 56px; padding-top: 32px; }

/* ---- 404 -------------------------------------------------------------------- */
.notfound { padding-block: 120px 140px; }
.notfound h1 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: clamp(46px, 7vw, 96px); line-height: 1; letter-spacing: -0.03em; color: var(--text-strong); margin: 18px 0 20px; }

/* ---- Responsive --------------------------------------------------------------- */
@media (max-width: 1000px) {
  .split, .hero__cols, .audit, .feature__grid, .contact__inner, .article { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .toc { position: static; }
  .toc ol { display: flex; flex-wrap: wrap; gap: 8px 20px; border-left: 0; }
  .toc a { padding-left: 0; border-left: 0; }
  .hero__quote { border-left: 0; border-top: 3px solid var(--orange-500); padding: 22px 0 0; }
}

@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .section__body { padding-block: 64px; }
  .nav { display: none; }
  .nav.is-open {
    display: flex; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--blue-600); padding: 8px 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }
  .nav.is-open a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: auto; background: none; border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px; color: #fff; padding: 8px 12px; font-family: var(--font-text);
    font-size: 14px; font-weight: var(--fw-bold); cursor: pointer;
  }
  .site-header .btn { display: none; }
  .pillars, .offer-grid, .site-footer__grid, .hero__stats-grid { grid-template-columns: minmax(0, 1fr); }
  .stat { padding: 20px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,0.16); }
  .stat:first-child { border-top: 0; }
  .audit { padding: 30px; }
  .drag-item { grid-template-columns: 58px 1fr; gap: 0 18px; }
  .post-row { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .archive-year { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .archive-year__label { margin-top: 0; }
  .post-row__time time { display: inline; margin: 0; }
  .hero__inner { padding-top: 56px; }
  .contact__inner { padding-block: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
