/* Dimopoulos Advisory — page styles
   Self-contained: no external dependencies.
   Locked palette: NOIR mood, NATURAL atmosphere (per design system handoff).
   Class prefix: adv-
*/

:root {
  /* NOIR — cool slate & steel; austere, financial */
  --adv-ink:        #161E2A;
  --adv-ink-deep:   #0A0F17;
  --adv-bone:       #E7EBF0;
  --adv-paper:      #EDF0F4;
  --adv-rule:       #C2CBD6;
  --adv-mute:       #5A6B82;
  --adv-steel:      #5E86B0;
  --adv-steel-soft: #AEC6DE;
  --adv-steel-deep: #3A5778;
  --adv-serif:      "Cormorant Garamond", serif;
  --adv-sans:       "Source Sans 3", system-ui, sans-serif;
}

.adv-root {
  font-family: var(--adv-sans);
  color: var(--adv-ink);
  background: var(--adv-bone);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
.adv-root a { color: inherit; text-decoration: none; }
.adv-root *, .adv-root *::before, .adv-root *::after { box-sizing: border-box; }

/* ===== MINIMAL NAV (standalone — no firm-page links) ===== */
.adv-nav {
  background: var(--adv-bone);
  border-bottom: 1px solid var(--adv-rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.adv-nav-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.adv-nav-brand {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
}
.adv-nav-end {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
}
.adv-nav-cta {
  font-family: var(--adv-sans);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--adv-bone);
  background: var(--adv-ink);
  border: 0;
  padding: 13px 22px;
  cursor: pointer;
  transition: background 200ms ease;
}
.adv-nav-cta:hover { background: var(--adv-steel-deep); }

@media (max-width: 640px) {
  /* Two-up nav: logo left, CTA right, so the CTA keeps its full 13px
     label (the a11y floor set in June) without overflowing. */
  .adv-nav-row {
    grid-template-columns: auto 1fr;
    padding: 14px 18px;
    gap: 10px;
  }
  .adv-nav-brand { grid-column: 1; justify-self: start; gap: 0; }
  .adv-nav-end { grid-column: 2; }
  .adv-nav-cta { padding: 11px 14px; font-size: 13px; letter-spacing: 0.1em; }
}

@media (max-width: 400px) {
  /* Small phones: tighten spacing only — type stays at the 13px a11y floor. */
  .adv-nav-row { padding: 14px 14px; gap: 8px; }
  .adv-nav-cta { padding: 11px 10px; letter-spacing: 0.03em; }
}

/* ===== MINIMAL FOOTER ===== */
.adv-foot {
  background: var(--adv-ink-deep);
  color: var(--adv-bone);
  padding: 36px 32px;
  border-top: 2px solid var(--adv-steel);
}
.adv-foot-row {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.adv-foot-mark {
  font-family: var(--adv-serif);
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--adv-bone);
}
.adv-foot-of {
  font-family: var(--adv-sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(231, 235, 240, 0.78);
}
.adv-foot-copy {
  font-family: var(--adv-sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(231, 235, 240, 0.78);
}
.adv-foot-note {
  font-family: var(--adv-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--adv-steel-soft);
}
@media (max-width: 720px) {
  .adv-foot { padding: 28px 24px; }
  .adv-foot-row { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ===== Shared bits ===== */
.adv-eyebrow {
  font-family: var(--adv-sans);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--adv-steel);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.adv-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--adv-steel);
}
.adv-eyebrow.on-dark { color: var(--adv-steel-soft); }
.adv-eyebrow.on-dark::before { background: var(--adv-steel-soft); }

.adv-h2 {
  font-family: var(--adv-serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--adv-ink);
  margin: 0 0 22px;
  text-wrap: balance;
}
.adv-h2 em { font-style: italic; color: var(--adv-steel); }

/* ===== HERO ===== */
.adv-hero {
  position: relative;
  background: var(--adv-ink);
  color: var(--adv-bone);
  padding: 0;
  overflow: hidden;
}
.adv-hero::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--adv-steel);
  z-index: 2;
}
.adv-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 78vh;
}
.adv-hero-text-side {
  display: flex;
  align-items: center;
  padding: 96px 72px 88px;
}
.adv-hero-text { max-width: 580px; }
.adv-hero-kicker {
  font-family: var(--adv-sans);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--adv-steel-soft);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.adv-hero-kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--adv-steel-soft);
}
.adv-hero-h1 {
  font-family: var(--adv-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--adv-bone);
  margin: 22px 0 22px;
  text-wrap: balance;
}
.adv-hero-h1 em { font-style: italic; color: var(--adv-steel-soft); }
.adv-hero-lede {
  font-family: var(--adv-serif);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.5;
  color: rgba(231, 235, 240, 0.86);
  margin: 0 0 32px;
  max-width: 54ch;
}
.adv-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.adv-hero .hp-cta-primary {
  font-family: var(--adv-sans);
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--adv-ink);
  background: var(--adv-bone);
  border: 0;
  padding: 18px 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: background 200ms ease, color 200ms ease;
}
.adv-hero .hp-cta-primary:hover { background: var(--adv-steel-soft); color: var(--adv-ink-deep); }
.adv-hero .hp-cta-primary .arr::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
}

.adv-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(231, 235, 240, 0.18);
}
.adv-hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.adv-hero-meta dt {
  font-family: var(--adv-sans);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #C8DBED;
}
.adv-hero-meta dd {
  margin: 0;
  font-family: var(--adv-serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--adv-bone);
}

.adv-hero-img-side { position: relative; overflow: hidden; }
/* NATURAL atmosphere: bright, lightly graded, photographic feel */
.adv-hero-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85% 52%;
  display: block;
  filter: grayscale(0.12) contrast(1.02) brightness(1.02) saturate(1.06);
}
.adv-hero-img-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--adv-ink-deep) 80%, transparent) 0%,
    color-mix(in srgb, var(--adv-ink-deep) 26%, transparent) 34%,
    transparent 62%);
  pointer-events: none;
}

/* Hero scroll cue — sits at the bottom of the hero text column */
.adv-hero-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  font-family: var(--adv-sans);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--adv-steel-soft);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.adv-hero-cue .line {
  position: relative;
  width: 46px; height: 1px;
  background: rgba(174, 198, 222, 0.4);
  overflow: hidden;
}
.adv-hero-cue .line::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 18px;
  background: var(--adv-steel-soft);
  animation: adv-cue 2.4s cubic-bezier(.5,0,.2,1) infinite;
}
@keyframes adv-cue {
  0%   { transform: translateX(-20px); }
  60%  { transform: translateX(46px); }
  100% { transform: translateX(46px); }
}
@media (prefers-reduced-motion: reduce) {
  .adv-hero-cue .line::after { animation: none; }
}
@media (max-width: 820px) { .adv-hero-cue { display: none; } }

/* ===== LEDE band ===== */
.adv-lede {
  background: var(--adv-paper);
  border-top: 1px solid var(--adv-rule);
  border-bottom: 1px solid var(--adv-rule);
  padding: 80px 72px;
}
.adv-lede-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
}
.adv-lede-side {
  font-family: var(--adv-sans);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--adv-steel);
  padding-top: 12px;
  border-top: 1px solid var(--adv-steel);
}
.adv-lede-body p {
  font-family: var(--adv-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.42;
  color: var(--adv-ink);
  margin: 0;
  max-width: 68ch;
  text-wrap: balance;
}
.adv-lede-body strong { font-weight: 600; color: var(--adv-ink-deep); }

/* ===== ABOUT — split with pull-quote ===== */
.adv-about { padding: 104px 72px; }
.adv-about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: start;
}
.adv-about-text p {
  font-family: var(--adv-serif);
  font-size: 20px;
  line-height: 1.65;
  color: var(--adv-ink);
  margin: 0 0 18px;
  max-width: 56ch;
}
.adv-about-disclaimer {
  margin-top: 28px !important;
  padding-top: 24px;
  border-top: 1px solid var(--adv-rule);
  font-style: italic;
  color: var(--adv-ink) !important;
  font-size: 20px !important;
}

.adv-about-quote {
  position: sticky;
  top: 80px;
  padding: 48px 40px;
  background: var(--adv-ink);
  color: var(--adv-bone);
  border-left: 2px solid var(--adv-steel);
}
.adv-about-quote blockquote { margin: 0; }
.adv-about-quote blockquote p {
  font-family: var(--adv-serif);
  font-style: italic;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.22;
  color: var(--adv-bone);
  margin: 0 0 18px;
  text-wrap: balance;
}
.adv-about-quote blockquote p em { color: var(--adv-steel-soft); }
.adv-about-quote blockquote footer {
  font-family: var(--adv-sans);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--adv-steel-soft);
  font-weight: 600;
}

/* ===== PROBLEM — dossier-style impact register ===== */
.adv-problem {
  background: var(--adv-paper);
  padding: 104px 72px;
  border-top: 1px solid var(--adv-rule);
  border-bottom: 1px solid var(--adv-rule);
}
.adv-problem-inner { max-width: 1280px; margin: 0 auto; }
.adv-problem-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.adv-problem-head .adv-eyebrow { justify-content: center; }
.adv-problem-lede {
  font-family: var(--adv-serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--adv-ink);
  margin: 0 0 24px;
}
.adv-problem-lede-tight { margin-bottom: 34px; }
.adv-problem-sub {
  font-family: var(--adv-sans);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--adv-mute);
  margin: 0;
}

.adv-impact { position: relative; }

/* Closing note beneath the impact register */
.adv-problem-close {
  max-width: 860px;
  margin: 56px auto 0;
  text-align: center;
}
.adv-problem-close .adv-eyebrow { justify-content: center; }
.adv-problem-close p {
  font-family: var(--adv-serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--adv-ink);
  margin: 0;
}

[data-problem-style="dossier"] .adv-impact-grid {
  display: block;
  counter-reset: dossier;
  max-width: 1040px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--adv-ink);
}
[data-problem-style="dossier"] .adv-impact-grid li {
  counter-increment: dossier;
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(240px, 1fr) 1.05fr;
  align-items: baseline;
  gap: 28px;
  padding: 26px 16px;
  background: transparent;
  border-bottom: 1px solid var(--adv-rule);
  transition: background 320ms ease, padding-left 420ms cubic-bezier(.2,.7,.2,1);
}
[data-problem-style="dossier"] .adv-impact-grid li::before {
  content: counter(dossier, upper-roman);
  font-family: var(--adv-serif);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--adv-steel);
  transition: color 320ms ease;
}
[data-problem-style="dossier"] .adv-impact-lbl {
  display: block;
  font-family: var(--adv-serif);
  font-weight: 400;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--adv-ink);
  text-wrap: pretty;
  transition: color 320ms ease;
}
[data-problem-style="dossier"] .adv-impact-sub {
  display: block;
  font-family: var(--adv-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--adv-mute);
  text-align: right;
  align-self: center;
}
[data-problem-style="dossier"] .adv-impact-grid li:hover {
  background: color-mix(in srgb, var(--adv-ink) 6%, var(--adv-paper));
  padding-left: 28px;
}
[data-problem-style="dossier"] .adv-impact-grid li:hover::before { color: var(--adv-steel-deep); }
[data-problem-style="dossier"] .adv-impact-grid li:hover .adv-impact-lbl { color: var(--adv-steel-deep); }

/* ===== PROGRAM — offerings with ghost-numeral watermark and hover fill ===== */
.adv-program { padding: 104px 72px; }
.adv-program-inner { max-width: 1280px; margin: 0 auto; }
.adv-program-head { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.adv-program-head .adv-eyebrow { justify-content: center; }
.adv-program-lede {
  font-family: var(--adv-serif);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.5;
  color: var(--adv-mute);
  margin: 0;
}
.adv-offerings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--adv-rule);
  border-left: 1px solid var(--adv-rule);
}
.adv-offering {
  position: relative;
  padding: 52px 44px 48px;
  border-right: 1px solid var(--adv-rule);
  border-bottom: 1px solid var(--adv-rule);
  background: var(--adv-bone);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  isolation: isolate;
  transition: background 360ms ease;
}
.adv-offering::before {
  content: attr(data-ghost);
  position: absolute;
  z-index: 0;
  top: -18px;
  right: 14px;
  font-family: var(--adv-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 150px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--adv-steel);
  opacity: 0.06;
  pointer-events: none;
  transition: opacity 360ms ease, transform 600ms cubic-bezier(.2,.7,.2,1), color 360ms ease;
}
.adv-offering::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--adv-steel-soft);
  transition: width 520ms cubic-bezier(.2,.7,.2,1);
  z-index: 2;
}
.adv-offering > * { position: relative; z-index: 1; }
.adv-offering:hover { background: var(--adv-ink); }
.adv-offering:hover::before {
  opacity: 0.16;
  color: var(--adv-steel-soft);
  transform: translateY(6px) scale(1.04);
}
.adv-offering:hover::after { width: 100%; }

.adv-offering-n {
  font-family: var(--adv-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--adv-steel);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 360ms ease;
}
.adv-offering-n::after {
  content: '';
  width: 26px; height: 1px;
  background: var(--adv-rule);
  transition: width 520ms cubic-bezier(.2,.7,.2,1), background-color 360ms ease;
}
.adv-offering:hover .adv-offering-n { color: var(--adv-steel-soft); }
.adv-offering:hover .adv-offering-n::after { width: 48px; background: var(--adv-steel); }

.adv-offering-title {
  font-family: var(--adv-serif);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--adv-ink);
  margin: 0 0 6px;
  transition: color 360ms ease;
}
.adv-offering:hover .adv-offering-title { color: var(--adv-bone); }
.adv-offering p {
  font-family: var(--adv-serif);
  font-size: 19px;
  line-height: 1.6;
  color: var(--adv-ink);
  margin: 0;
  max-width: 52ch;
  transition: color 360ms ease;
}
.adv-offering:hover p { color: rgba(231, 235, 240, 0.82); }

/* ===== AUDIENCE — horizontal flow ===== */
.adv-audience {
  background: var(--adv-paper);
  border-top: 1px solid var(--adv-rule);
  border-bottom: 1px solid var(--adv-rule);
  padding: 96px 72px;
}
.adv-audience-inner { max-width: 1280px; margin: 0 auto; }
.adv-audience-center { max-width: 1000px; text-align: center; margin: 0 auto; }
.adv-audience-flow {
  margin: 40px auto 0;
  max-width: 880px;
  line-height: 1.7;
}
.adv-aud-item {
  font-family: var(--adv-serif);
  font-size: 28px;
  color: var(--adv-ink);
  white-space: nowrap;
  transition: color 280ms ease;
}
.adv-aud-item:hover { color: var(--adv-steel-deep); }
.adv-aud-sep {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--adv-steel);
  transform: rotate(45deg);
  opacity: 0.55;
  margin: 0 22px;
  vertical-align: middle;
}
.adv-audience-rule {
  width: 64px; height: 1px;
  background: var(--adv-steel);
  margin: 52px auto 0;
}
.adv-audience-coda {
  font-family: var(--adv-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--adv-mute);
  margin: 28px auto 0;
  max-width: 52ch;
}

/* ===== CTA BAND ===== */
.adv-cta-band {
  background: var(--adv-ink);
  color: var(--adv-bone);
  padding: 110px 72px;
  text-align: center;
  position: relative;
}
.adv-cta-band::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--adv-steel);
}
.adv-cta-inner { max-width: 760px; margin: 0 auto; }
.adv-cta-band .adv-eyebrow { justify-content: center; }
.adv-cta-h2 {
  font-family: var(--adv-serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--adv-bone);
  margin: 0 0 22px;
  text-wrap: balance;
}
.adv-cta-h2 em { font-style: italic; color: var(--adv-steel-soft); }
.adv-cta-sub {
  font-family: var(--adv-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(231, 235, 240, 0.86);
  margin: 0 auto 40px;
  max-width: 58ch;
}
.adv-cta-button {
  font-family: var(--adv-sans);
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--adv-ink);
  background: var(--adv-bone);
  border: 0;
  padding: 20px 36px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: background 200ms ease;
}
.adv-cta-button:hover { background: var(--adv-steel-soft); }
.adv-cta-button .arr::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
}

/* ===== ENTRANCE MOTION ===== */
/* Scroll-reveal: elements rise as they enter the viewport. Transform-only
   (no opacity fade) so content is NEVER blank if animation playback is
   disabled — it just shows in place. Toggled by IntersectionObserver. */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    transform: translateY(24px);
    transition: transform 820ms cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform;
  }
  [data-reveal].is-in { transform: none; }

  /* Hero entrance stagger — plays on load (rise only) */
  .adv-hero-text > * {
    transform: translateY(22px);
    animation: adv-rise 980ms cubic-bezier(.2,.7,.2,1) forwards;
  }
  .adv-hero-kicker  { animation-delay: 80ms; }
  .adv-hero-h1      { animation-delay: 160ms; }
  .adv-hero-lede    { animation-delay: 300ms; }
  .adv-hero-actions { animation-delay: 420ms; }
  .adv-hero-meta    { animation-delay: 540ms; }
  .adv-hero-cue     { animation-delay: 640ms; }

  .adv-hero-img-side img {
    animation: adv-hero-img 1400ms cubic-bezier(.2,.7,.2,1) forwards;
  }
}

@keyframes adv-rise {
  to { transform: none; }
}
@keyframes adv-hero-img {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .adv-hero-text-side { padding: 80px 48px 64px; }
  .adv-lede, .adv-about, .adv-problem, .adv-program, .adv-audience, .adv-cta-band {
    padding-left: 48px;
    padding-right: 48px;
  }
  .adv-about-inner { grid-template-columns: 1fr; gap: 48px; }
  .adv-about-quote { position: static; }
  .adv-audience-flow { max-width: 640px; }
  .adv-lede-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 820px) {
  .adv-hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .adv-hero-img-side { order: -1; aspect-ratio: 4/3; }
  .adv-hero-img-side::after {
    background: linear-gradient(180deg,
      color-mix(in srgb, var(--adv-ink-deep) 20%, transparent) 0%,
      color-mix(in srgb, var(--adv-ink-deep) 60%, transparent) 60%,
      var(--adv-ink) 100%);
  }
  .adv-hero-text-side { padding: 48px 32px 64px; }
  .adv-hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .adv-lede, .adv-about, .adv-problem, .adv-program, .adv-audience, .adv-cta-band {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .adv-aud-item { font-size: 22px; }
  .adv-aud-sep { margin: 0 14px; }
  .adv-offerings { grid-template-columns: 1fr; }
  .adv-offering { padding: 36px 28px; }
  .adv-about-quote { padding: 32px 28px; }
  [data-problem-style="dossier"] .adv-impact-grid li {
    grid-template-columns: 40px 1fr;
    gap: 6px 18px;
    padding: 22px 8px;
  }
  [data-problem-style="dossier"] .adv-impact-sub {
    grid-column: 2;
    text-align: left;
    align-self: start;
    margin-top: 4px;
  }
}

/* Small phones: the longest audience item ("Law, accounting & professional
   services") overflowed the viewport because .adv-aud-item is nowrap.
   Placed last so it wins the cascade over that base rule. */
@media (max-width: 640px) {
  .adv-aud-item { white-space: normal; }
}

/* ===== SHORT-VIEWPORT HERO ===== */
/* On laptops the hero ran past the fold because the text column, not the
   photo, sets its height (892px of content + 184px of padding at 2000x1000).
   Spacing only below — no font-size touched, so the June readability passes
   stand. Tall displays keep the original rhythm. */
@media (min-width: 901px) and (max-height: 1100px) {
  .adv-hero-text-side { padding-top: 44px; padding-bottom: 44px; }
  .adv-hero-h1 { margin-top: 14px; margin-bottom: 14px; }
  .adv-hero-lede { margin-bottom: 24px; }
  .adv-hero-actions { margin-bottom: 28px; }
  .adv-hero-cue { margin-top: 20px; }
}

/* ===== DISCLAIMER (25 Aug 2026) ===== */
/* Part A: body text size, sitting directly above the CTA button as the
   drafting instruction requires — deliberately NOT fine print. */
.adv-notice-short {
  max-width: 720px;
  margin: 0 auto 30px;
  font-family: var(--adv-sans);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(231, 235, 240, 0.92);
}
.adv-notice-short a { color: var(--adv-steel-soft); text-underline-offset: 3px; }
.adv-notice-short a:hover { color: var(--adv-bone); }

/* Part B: the full notice */
.adv-notice {
  background: var(--adv-paper);
  border-top: 1px solid var(--adv-rule);
  padding: 72px 32px 88px;
}
.adv-notice-inner { max-width: 820px; margin: 0 auto; }
.adv-notice-h2 {
  font-family: var(--adv-serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--adv-ink);
  margin: 0 0 36px;
}
.adv-notice-h2 em { font-style: italic; color: var(--adv-steel-deep); }
.adv-notice-list { counter-reset: notice; list-style: none; margin: 0; padding: 0; }
.adv-notice-list > li {
  counter-increment: notice;
  position: relative;
  padding: 0 0 26px 44px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--adv-rule);
}
.adv-notice-list > li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.adv-notice-list > li::before {
  content: counter(notice) ".";
  position: absolute;
  left: 0; top: 1px;
  font-family: var(--adv-serif);
  font-size: 18px;
  color: var(--adv-steel);
}
.adv-notice-list h3 {
  font-family: var(--adv-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--adv-ink);
  margin: 0 0 10px;
}
.adv-notice-list p {
  font-family: var(--adv-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--adv-mute);
  margin: 0 0 12px;
}
.adv-notice-list p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
  .adv-notice { padding: 56px 20px 64px; }
  .adv-notice-list > li { padding-left: 34px; }
}

/* Part A in the hero: same notice, tuned for the dark hero column.
   Body size, above the button, per the drafting instruction. */
.adv-notice-short-hero {
  max-width: 560px;
  margin: 0 0 26px;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(231, 235, 240, 0.82);
}

/* ===== NAV WORDMARK ===== */
/* The firm logo was the masthead until the disclaimer landed. Section 1 of
   the notice says Dimo Advisory is not a law firm and is separate from
   Dimopoulos Law Firm, P.C., so leading with the firm's mark contradicted
   the notice on the same page. Wordmark instead, both breakpoints. */
/* Kat's Dimo Advisory mark. Transparent PNG source, so it sits on the
   #E7EBF0 nav without a white box. 6.78:1, so height drives the width. */
.adv-nav-logo { height: 26px; width: auto; display: block; }
@media (max-width: 640px) { .adv-nav-logo { height: 21px; } }
@media (max-width: 400px) { .adv-nav-logo { height: 18px; } }
