:root {
  --canvas: #f6f3ec;
  --surface: #fdfbf7;
  --surface-deep: #ece8de;
  --ink: #25251f;
  --ink-soft: #5c594f;
  --ink-body: #4f4d45;
  --device: #24241f;
  --moss: #465d49;
  --moss-dark: #354838;
  --moss-soft: #d4ddcf;
  --walnut: #573e2f;
  --clay: #b88c69;
  --line: rgba(37, 37, 31, 0.12);
  --shadow: 0 28px 70px rgba(54, 48, 39, 0.12);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: 0.5rem;
  color: #fff;
  background: var(--moss-dark);
  transform: translateY(-180%);
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus { transform: translateY(0); }

/* One gutter for the whole site, at every width: 1rem on a phone, opening up
   to 2rem by the time the window is wide enough to notice the difference.
   Everything on every page aligns to the two lines it defines. */
.shell {
  width: min(100% - clamp(2rem, 5vw, 4rem), 72rem);
  margin-inline: auto;
}

/* The bar travels with the reader. At the top of a page it is invisible — no
   background, no border, so the page starts on its own hero. Once anything has
   scrolled under it, `data-scrolled` fades in a frosted pill behind the links.
   The pill is a pseudo-element, so nothing in the bar moves when it appears. */
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  padding-block: 1.1rem;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.25rem;
}

/* The pill paints under the bar's contents by document order rather than a
   negative z-index: Safari renders backdrop-filter unreliably on a layer that
   sits behind its own stacking context. */
.nav > * { position: relative; z-index: 1; }

.nav::before {
  content: "";
  position: absolute;
  /* Stays inside the shell's own gutter, so the pill can never widen the page. */
  inset: -0.55rem -0.85rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

/* The blur belongs to the scrolled state only: `saturate` tints even an empty
   backdrop, which would show as a faint panel at the top of the page. */
.site-header[data-scrolled="true"] .nav::before {
  border-color: var(--line);
  background: rgba(246, 243, 236, 0.7);
  box-shadow: 0 14px 38px rgba(54, 48, 39, 0.1);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
}

/* Without backdrop-filter the pill has to be opaque, or the text behind it
   shows through the bar. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header[data-scrolled="true"] .nav::before { background: rgba(246, 243, 236, 0.98); }
}

/* Anchored sections clear the bar instead of hiding beneath it. */
:target,
[id] { scroll-margin-top: 6rem; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 0.65rem;
  color: var(--surface);
  background: var(--moss);
  background-image: url("brand-symbol.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.45rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 620;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a[aria-current="page"],
.nav-links a:hover { color: var(--ink); }

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface);
}

.menu-button svg { width: 1.2rem; }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(21rem, 1.08fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  min-height: calc(100svh - 5.5rem);
  padding-block: clamp(3rem, 7vw, 7rem);
}

.hero h1,
.page-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.15rem, 7vw, 6.3rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero-copy {
  max-width: 34rem;
  margin: 1.6rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.85rem 1.15rem;
  border: 0;
  border-radius: 0.7rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 140ms var(--ease-out);
}

.button:active { transform: scale(0.97); }
.button-primary { color: #fff; background: var(--moss); }
.button-primary:hover { background: var(--moss-dark); }
.button-secondary { border: 1px solid var(--line); background: var(--surface); }
.button-secondary:hover { border-color: rgba(37, 37, 31, 0.28); }
/* Availability marker, not a control: there is no listing to link to yet.
   At launch this is replaced by Apple's official App Store badge artwork. */
.cta .store-badge {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.7rem;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.small-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.hero-stage {
  position: relative;
  min-height: clamp(35rem, 67vw, 47rem);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 7% 1% 8% 9%;
  border-radius: 48% 52% 46% 54% / 58% 42% 58% 42%;
  background: var(--moss-soft);
}

.phone {
  position: absolute;
  overflow: hidden;
  width: min(51%, 17.2rem);
  border: 0.42rem solid var(--device);
  border-radius: 2.5rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.phone img { width: 100%; height: auto; }
.phone-home { top: 0; right: 4%; transform: rotate(3deg); }
.phone-result { bottom: 0; left: 8%; z-index: 2; transform: rotate(-4deg); }

.floating-note {
  position: absolute;
  right: 0;
  bottom: 17%;
  z-index: 3;
  width: 10.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 1rem;
  color: var(--walnut);
  background: rgba(253, 251, 247, 0.9);
  box-shadow: 0 12px 34px rgba(54, 48, 39, 0.1);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 680;
  line-height: 1.35;
}

.floating-note span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--moss);
  font-size: 1.1rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: clamp(5rem, 9vw, 9rem);
  border-block: 1px solid var(--line);
}

.trust-row div {
  padding: 1.25rem clamp(0.5rem, 2vw, 1.5rem);
  color: var(--ink-soft);
  text-align: center;
  font-size: 0.86rem;
}

.trust-row div + div { border-left: 1px solid var(--line); }
.trust-row strong { display: block; color: var(--ink); font-size: 0.94rem; }

.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section + .section { border-top: 1px solid var(--line); }

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2,
.cta h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading p {
  max-width: 34rem;
  margin: 0 0 0.25rem auto;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.step {
  min-height: 18rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.step-number {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: var(--moss);
  font-size: 0.78rem;
  font-weight: 760;
}

.step h3 { margin: 4.5rem 0 0.5rem; font-size: 1.35rem; letter-spacing: -0.025em; }
.step p { margin: 0; color: var(--ink-soft); }

.feature-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1rem; }
.feature-card {
  min-height: 27rem;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.feature-card.moss-card { color: #fff; background: var(--moss); }
.feature-card h3 { max-width: 14ch; margin: 0; font-size: clamp(1.8rem, 3vw, 2.7rem); letter-spacing: -0.045em; line-height: 1.08; }
.feature-card p { max-width: 30rem; color: var(--ink-soft); }
.feature-card.moss-card p { color: rgba(255,255,255,0.72); }

.swatches { display: flex; gap: 0.8rem; align-items: end; margin-top: 5rem; }
.swatch { width: 17%; min-width: 3.25rem; aspect-ratio: 1; border: 0.45rem solid rgba(255,255,255,0.4); border-radius: 50%; box-shadow: 0 7px 24px rgba(0,0,0,0.11); }
.swatch:nth-child(1) { background: #e6ded1; }
.swatch:nth-child(2) { background: #9daa91; transform: translateY(-1.2rem); }
.swatch:nth-child(3) { background: #b98769; }
.swatch:nth-child(4) { background: #344b61; transform: translateY(-0.5rem); }
.swatch:nth-child(5) { background: #52534e; }

.compare-demo {
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
  aspect-ratio: 4 / 3;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #ccd5c7 0 61%, #b99570 61%);
}

.compare-demo::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 0;
  background: linear-gradient(180deg, #bac6b1 0 61%, #a97f5d 61%);
}

.compare-demo::after {
  content: "↔";
  position: absolute;
  top: 50%; left: 50%;
  display: grid;
  width: 3rem; height: 3rem;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transform: translate(-50%, -50%);
}

.compare-line { position: absolute; z-index: 1; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; }
.compare-sofa { position: absolute; z-index: 1; right: 18%; bottom: 16%; left: 18%; height: 31%; border-radius: 0.9rem 0.9rem 0.55rem 0.55rem; background: var(--walnut); }

.shots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 17rem));
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  justify-content: space-between;
}

.shot { margin: 0; }
.shot:nth-child(2) { margin-top: 3rem; }
.shot img {
  width: 100%;
  height: auto;
  border: 0.38rem solid var(--device);
  border-radius: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.shot figcaption { margin-top: 1.1rem; color: var(--ink-soft); font-size: 0.9rem; }
.shot strong { display: block; color: var(--ink); font-size: 1rem; }

.blog-header { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 2.5rem; }
.blog-header p { max-width: 32rem; margin: 0; color: var(--ink-soft); }
.articles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.article-card {
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms var(--ease-out);
}

.article-card small { color: var(--moss); font-weight: 720; letter-spacing: 0.08em; text-transform: uppercase; }
.article-card h2,
.article-card h3 { max-width: 18ch; margin: 1rem 0; font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.04em; line-height: 1.1; }
.article-card p { max-width: 33rem; margin: 0; color: var(--ink-soft); }
.article-card .read-more { margin-top: 2.5rem; color: var(--ink); font-weight: 700; }

@media (hover: hover) and (pointer: fine) {
  .article-card:hover { border-color: rgba(37,37,31,0.3); transform: translateY(-3px); }
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-block: clamp(4rem, 9vw, 8rem);
  padding: clamp(2rem, 6vw, 5rem);
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--moss);
}

.cta-eyebrow { color: var(--moss-soft); }
.cta p { max-width: 35rem; margin: 1rem 0 0; color: rgba(255,255,255,0.78); }
.cta .button { color: var(--moss-dark); background: var(--surface); }

.site-footer { padding-block: 2.5rem; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; align-items: end; }
.footer-meta { margin-top: 1rem; color: var(--ink-soft); font-size: 0.8rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a { display: inline-block; padding-block: 0.55rem; color: var(--ink-soft); font-size: 0.85rem; text-decoration: none; }

/* A trail back up, for the reader who arrived from a search result rather
   than from the home page. Sits above the hero, not inside it, so the hero's
   own top padding still sets the distance to the heading. */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  padding-top: clamp(2rem, 5vw, 3.5rem);
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumb span { color: rgba(37, 37, 31, 0.35); }
.breadcrumb [aria-current="page"] { color: var(--ink); }
.breadcrumb + .page-hero { padding-top: clamp(1.5rem, 4vw, 3rem); }

/* One card, not the two-column `.articles` grid: there is only ever one thing
   to read next. */
.related { margin-block: clamp(3.5rem, 8vw, 6rem) 0; }

.related > h2 {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related .article-card { min-height: 0; }
.related .article-card .read-more { margin-top: 1.75rem; }

.page-hero { padding-block: clamp(4rem, 10vw, 8rem); }
.page-hero h1 { max-width: 14ch; font-size: clamp(3.1rem, 8vw, 6.5rem); }
.page-hero > p:not(.eyebrow) { max-width: 42rem; margin: 1.5rem 0 0; color: var(--ink-soft); font-size: 1.15rem; }

.article-list { padding-bottom: 7rem; }

.legal-layout,
.article-layout {
  display: grid;
  grid-template-columns: 13rem minmax(0, 44rem);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
  padding-bottom: 7rem;
}

.toc { position: sticky; top: 6.5rem; }
/* The label and the link text share a left edge; the active bar sits in the
   0.7rem to their left, inside the page's alignment line rather than across it. */
.toc p { margin-top: 0; padding-left: 0.7rem; color: var(--ink); font-size: 0.78rem; font-weight: 760; letter-spacing: 0.1em; text-transform: uppercase; }
.toc a {
  display: block;
  padding: 0.3rem 0.7rem;
  border-left: 2px solid transparent;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.35;
  text-decoration: none;
}
.toc a[aria-current="location"] {
  border-left-color: var(--moss);
  color: var(--moss-dark);
  background: linear-gradient(90deg, rgba(70, 93, 73, 0.09), transparent 85%);
  font-weight: 700;
}
.prose { min-width: 0; }
.prose h2 { margin: 4.5rem 0 1rem; font-size: clamp(1.75rem, 4vw, 2.7rem); letter-spacing: -0.04em; line-height: 1.1; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 2.25rem 0 0.65rem; font-size: 1.25rem; }
.prose p, .prose li { color: var(--ink-body); }
.prose strong { color: var(--ink); }
.prose a { text-underline-offset: 0.15em; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: 0.5rem; }
.prose table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; font-size: 0.88rem; }
.prose th, .prose td { min-width: 9rem; padding: 0.8rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { color: var(--ink); background: var(--surface-deep); }
.prose blockquote { margin: 2rem 0; padding: 1.2rem 1.4rem; border-left: 3px solid var(--moss); background: var(--surface); }
.prose .summary {
  margin-bottom: 1rem;
  padding: clamp(1.9rem, 3.4vw, 2.6rem) clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.prose .summary h2 { font-size: clamp(1.45rem, 2.6vw, 1.95rem); letter-spacing: -0.03em; }
.prose .summary > :last-child { margin-bottom: 0; }
.article-byline { margin-top: 1rem; color: var(--ink-soft); font-size: 0.88rem; }

@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 39rem; }
  .hero-stage { width: min(100%, 38rem); margin-inline: auto; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading p { margin-left: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .legal-layout, .article-layout { grid-template-columns: 1fr; }
  .toc { position: static; padding: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
  .toc a { padding-block: 0.55rem; }
}

@media (max-width: 680px) {
  /* The collapsed menu only exists where JS can reopen it. Without JS the nav
     stays a plain stacked list rather than becoming permanently unreachable. */
  .js .menu-button { display: grid; place-items: center; }
  /* Anchored to the bar itself, so it hangs the same distance below it
     whatever the header padding is. */
  .js .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(253,251,247,0.86);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 18px 45px rgba(54,48,39,0.14);
    opacity: 0;
    /* visibility, not just opacity: an opacity-0 menu keeps its links in the
       tab order and in the accessibility tree. */
    visibility: hidden;
    transform: translateY(-0.5rem) scale(0.98);
    transform-origin: top right;
    transition: opacity 160ms ease, transform 160ms var(--ease-out), visibility 0s linear 160ms;
  }
  .js .nav-links[data-open="true"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }
  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .js .nav-links { background: rgba(253,251,247,0.98); }
  }
  .nav::before { inset: -0.5rem -0.5rem; }
  .nav-links a { padding: 0.75rem 0.85rem; }
  html:not(.js) .nav { flex-wrap: wrap; row-gap: 0.5rem; }
  html:not(.js) .nav-links { flex-wrap: wrap; gap: 1rem; }
  .hero { padding-top: 3.5rem; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.5rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-stage { min-height: 32rem; }
  .phone { width: 52%; border-width: 0.3rem; border-radius: 1.8rem; }
  .floating-note { right: 1%; bottom: 13%; }
  /* One card per row: the tall minimum that balances the desktop grid leaves
     the text-only cards with a screenful of empty background on a phone. */
  .feature-card { min-height: 0; }
  /* Five swatches at a fixed minimum are wider than a phone-width card. */
  .swatches { gap: 0.5rem; }
  .swatch { min-width: 0; border-width: 0.35rem; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-row div + div { border-top: 1px solid var(--line); border-left: 0; }
  .steps, .articles { grid-template-columns: 1fr; }
  .step { min-height: auto; }
  .step h3 { margin-top: 3rem; }
  /* The three screens stack full width, like every other grid on a phone. As a
     sideways strip one card always sat against an edge — bleeding past the
     page's alignment line, or cut off at it — and half a screenshot is not
     worth the swipe. */
  .shots {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 2.75rem;
  }
  .shot:nth-child(2) { margin-top: 0; }
  .shot img { border-width: 0.3rem; border-radius: 1.6rem; }
  /* Narrower cells so the two- and three-column policy tables fit a phone
     instead of scrolling sideways. The four-column one still has to. */
  .prose th, .prose td { min-width: 7rem; padding: 0.65rem; }
  .blog-header, .footer-inner { align-items: start; flex-direction: column; }
  .cta { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}

@media print {
  .site-header, .site-footer, .toc, .cta, .breadcrumb, .related { display: none; }
  body { background: #fff; }
  .page-hero { padding-block: 1rem 2rem; }
  .legal-layout { display: block; }
  .prose { max-width: none; }
}
