/* Pies w Polsce — editorial system */
:root {
  --paper: #f8f5ef;
  --paper-deep: #f1eadf;
  --cream: #f5f1ea;
  --white: #fffdf9;
  --ink: #3a3733;
  --ink-deep: #25221f;
  --muted: #756f66;
  --muted-light: #a9a195;
  --gold: #b0833f;
  --gold-dark: #86602b;
  --gold-pale: #e7d6b8;
  --line: #ded7c9;
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 80px rgba(57, 48, 38, 0.14);
  --shadow-soft: 0 14px 42px rgba(57, 48, 38, 0.09);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Aptos, "Segoe UI", Inter, Arial, sans-serif;
  --shell: min(1280px, calc(100vw - 80px));
  --section-space: clamp(96px, 10vw, 168px);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 34px;
  color-scheme: light;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid rgba(176, 131, 63, 0.52);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink-deep);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.status-bar {
  position: relative;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.status-bar__inner {
  display: flex;
  min-height: 37px;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.status-bar strong {
  color: var(--gold-pale);
  font-weight: 650;
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(248, 245, 239, 0.9);
  backdrop-filter: blur(18px) saturate(130%);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(248, 245, 239, 0.96);
  box-shadow: 0 8px 30px rgba(40, 35, 30, 0.06);
}

.site-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 13px;
}

.wordmark__seal {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: none;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
}

.wordmark__seal::after {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.wordmark__text {
  display: grid;
  gap: 2px;
}

.wordmark__text strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.wordmark__text small {
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.site-nav > a:not(.button) {
  position: relative;
  color: #5f5951;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--compact {
  min-height: 43px;
  padding: 0 23px;
}

.button--large {
  min-height: 61px;
  padding: 0 30px;
}

.button--primary {
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(44, 39, 34, 0.16);
  color: var(--white);
}

.button--primary:hover {
  background: var(--ink-deep);
  box-shadow: 0 16px 36px rgba(44, 39, 34, 0.22);
}

.button--gold {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(176, 131, 63, 0.24);
  color: var(--ink-deep);
}

.button--gold:hover {
  background: #c2944d;
}

.button__arrow {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  line-height: 2;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.text-link--light {
  color: var(--gold-pale);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 7vw, 108px) 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(176, 131, 63, 0.13), transparent 25%),
    linear-gradient(135deg, var(--paper) 0 54%, #eee5d8 54% 100%);
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -18%;
  right: 7%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(176, 131, 63, 0.18);
  border-radius: 50%;
}

.hero::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(176, 131, 63, 0.2), transparent);
}

.hero__inner {
  position: relative;
  display: grid;
  min-height: min(690px, calc(100svh - 119px));
  align-items: center;
  gap: clamp(52px, 7vw, 108px);
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.78fr);
}

.hero__copy {
  max-width: 690px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.kicker::before {
  width: 40px;
  height: 1px;
  flex: none;
  background: currentColor;
  content: "";
}

.kicker--light {
  color: var(--gold-pale);
}

.hero h1,
.section-heading h2,
.checklist h2,
.author h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(4.1rem, 6.1vw, 6.9rem);
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  max-width: 540px;
  margin-top: 22px;
  color: var(--gold-dark);
  font-size: 0.32em;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: 1.18;
}

.hero__lead {
  max-width: 590px;
  margin: 34px 0 0;
  color: #5b554e;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px 30px;
  margin-top: 35px;
}

.hero__micro {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.025em;
}

.hero__visual {
  position: relative;
  min-height: 610px;
}

.hero__photo {
  position: absolute;
  top: 72px;
  right: 0;
  width: min(82%, 460px);
  height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 220px 220px 24px 24px;
  box-shadow: var(--shadow);
}

.hero__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(37, 34, 31, 0.08), transparent 55%);
  content: "";
}

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

.hero__book {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  width: min(49%, 285px);
  margin: 0;
  transform: translateY(-48%) rotate(-2deg);
}

.hero__book::before {
  position: absolute;
  z-index: -1;
  top: 18px;
  right: -18px;
  bottom: -18px;
  left: 18px;
  border: 1px solid rgba(176, 131, 63, 0.55);
  content: "";
}

.hero__book img {
  width: 100%;
  height: auto;
  border-radius: 3px 9px 9px 3px;
  box-shadow: 20px 32px 70px rgba(47, 39, 31, 0.28);
}

.hero__book figcaption {
  position: absolute;
  right: -78px;
  bottom: 24px;
  display: grid;
  min-width: 112px;
  padding: 13px 15px;
  border: 1px solid rgba(176, 131, 63, 0.35);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.hero__book figcaption span,
.hero__visual-note span {
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__book figcaption strong {
  margin-top: 2px;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
}

.hero__visual-note {
  position: absolute;
  top: 14px;
  right: 0;
  display: grid;
  margin: 0;
  padding-right: 18px;
  border-right: 1px solid var(--gold);
  text-align: right;
}

.hero__visual-note strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
}

.metrics {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.metrics__grid {
  display: grid;
  min-height: 150px;
  align-items: stretch;
  grid-template-columns: 1.35fr repeat(5, 1fr);
}

.metrics__intro,
.metric {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  padding: 26px clamp(18px, 2.2vw, 34px);
  border-right: 1px solid var(--line);
}

.metrics__intro {
  padding-left: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.35;
}

.metrics__intro strong {
  color: var(--ink);
  font-size: 1.24rem;
  font-weight: 500;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 450;
  line-height: 1;
}

.metric span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric--date strong {
  color: var(--gold-dark);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.section {
  padding-block: var(--section-space);
}

.section-heading h2,
.checklist h2,
.author h2 {
  font-size: clamp(3rem, 5.4vw, 5.7rem);
}

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

.section-heading--split {
  display: grid;
  align-items: end;
  gap: 60px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.section-heading--split > p,
.section-heading--split > div:last-child:not(:first-child) {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-heading--light,
.section-heading--light h2 {
  color: var(--paper);
}

.section-heading--light > p,
.section-heading--light > div:last-child,
.section-heading--light > div:last-child p {
  color: rgba(255, 255, 255, 0.65);
}

.manifesto {
  background:
    radial-gradient(circle at 12% 20%, rgba(176, 131, 63, 0.07), transparent 28%),
    var(--paper);
}

.manifesto__grid {
  display: grid;
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
}

.manifesto__copy {
  padding-top: 46px;
}

.manifesto__copy > p {
  margin: 0 0 24px;
  color: var(--muted);
}

.lead-copy {
  color: var(--ink) !important;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.018em;
  line-height: 1.35;
}

.not-moving-guide {
  margin-top: 38px !important;
  padding: 24px 0 2px 28px;
  border-left: 2px solid var(--gold);
}

.not-moving-guide strong {
  color: var(--ink);
  font-weight: 750;
}

.promise-grid {
  display: grid;
  margin-top: clamp(68px, 9vw, 120px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.promise {
  min-height: 270px;
  padding: 38px 40px 42px;
  border-right: 1px solid var(--line);
}

.promise:last-child {
  border-right: 0;
}

.promise > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.82rem;
  font-style: italic;
}

.promise h3 {
  margin: 52px 0 15px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.promise p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.book-parts {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--paper);
}

.book-parts::before {
  position: absolute;
  top: -260px;
  right: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(176, 131, 63, 0.22);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(176, 131, 63, 0.025), 0 0 0 140px rgba(176, 131, 63, 0.018);
}

.book-parts .shell {
  position: relative;
}

.parts {
  display: grid;
  min-height: 500px;
  margin-top: 78px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
}

.parts__tabs {
  display: grid;
  align-content: stretch;
  border-right: 1px solid var(--line-dark);
}

.parts__tabs button {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 20px;
  padding: 16px 28px;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.08rem;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, padding 180ms ease;
}

.parts__tabs button:last-child {
  border-bottom: 0;
}

.parts__tabs button span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.parts__tabs button[aria-selected="true"] {
  padding-left: 42px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.parts__panels {
  position: relative;
  min-width: 0;
}

.part-panel {
  display: grid;
  min-height: 100%;
  align-items: center;
  gap: clamp(35px, 6vw, 90px);
  padding: clamp(46px, 7vw, 90px);
  grid-template-columns: minmax(120px, 0.25fr) minmax(0, 0.75fr);
}

.part-panel[hidden] {
  display: none;
}

.part-panel__number {
  margin: 0;
  color: rgba(176, 131, 63, 0.78);
  font-family: var(--display);
  font-size: clamp(8rem, 16vw, 14rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.65;
}

.part-panel__eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.part-panel h3 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.part-panel > div > p:not(.part-panel__eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.part-panel ul {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.part-panel li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
}

.part-panel li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.center-action {
  margin-top: 48px;
  text-align: center;
}

.sample-teaser {
  position: relative;
  padding: clamp(50px, 6vw, 76px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.sample-teaser__grid {
  display: grid;
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
  grid-template-columns: 150px minmax(0, 1fr);
}

.sample-teaser__preview {
  position: relative;
  width: 138px;
  justify-self: center;
}

.sample-teaser__preview::before {
  position: absolute;
  top: 10px;
  right: -10px;
  bottom: -10px;
  left: 10px;
  border: 1px solid var(--gold-pale);
  content: "";
}

.sample-teaser__preview img {
  position: relative;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.sample-teaser__preview span {
  position: absolute;
  right: -24px;
  bottom: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink-deep);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-teaser__copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.4vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.sample-teaser__copy > p:not(.kicker) {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
}

.sample-teaser__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 28px;
}

.sample-teaser__actions .button {
  min-height: 52px;
  padding-inline: 24px;
}

.kropik {
  background:
    linear-gradient(rgba(176, 131, 63, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 131, 63, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 48px 48px;
}

.kropik__intro p {
  margin: 0 0 18px;
}

.kropik__intro strong {
  color: var(--ink);
}

.law-timeline {
  display: grid;
  align-items: center;
  margin: 84px 0 70px;
  grid-template-columns: max-content 1fr max-content;
}

.law-timeline > div:not(.law-timeline__line) {
  display: grid;
  gap: 6px;
}

.law-timeline > div:last-child {
  text-align: right;
}

.law-timeline time {
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.law-timeline span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.law-timeline__line {
  position: relative;
  height: 1px;
  margin: 0 30px;
  background: var(--line);
}

.law-timeline__line::before,
.law-timeline__line::after {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.law-timeline__line::before {
  left: 0;
}

.law-timeline__line::after {
  right: 0;
}

.law-grid {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.law-card {
  display: grid;
  min-height: 190px;
  gap: 26px;
  padding: 34px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 36px 1fr;
}

.law-card:nth-child(2n) {
  border-right: 0;
}

.law-card > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.8rem;
  font-style: italic;
}

.law-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.law-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.source-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 44px;
  padding: 30px 34px;
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 249, 0.65);
}

.source-note > div {
  display: grid;
  gap: 3px;
}

.source-note strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
}

.source-note span {
  color: var(--muted);
  font-size: 0.82rem;
}

.source-note > a {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.cost {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.cost::before {
  position: absolute;
  right: -180px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  content: "";
}

.cost__grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(70px, 11vw, 150px);
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 0.76fr);
}

.cost__copy h2 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.cost__copy > p:not(.kicker, .lead-copy) {
  color: var(--muted);
}

.cost__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.cost__categories li {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 650;
}

.calculator {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.calculator::before {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  content: "12";
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 54px;
  text-align: center;
}

.calculator__result {
  display: grid;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.calculator__result > span {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calculator__result > span strong {
  color: var(--ink);
}

.calculator__result > output {
  margin: 15px 0 10px;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 450;
  letter-spacing: -0.055em;
  line-height: 1;
}

.calculator__result small {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.range-field {
  margin-top: 34px;
}

.range-field__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 13px;
}

.range-field__label label {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.range-field__label output {
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
}

.range-field input[type="range"] {
  width: 100%;
  height: 4px;
  margin: 9px 0;
  border-radius: 999px;
  appearance: none;
  background: linear-gradient(90deg, var(--gold) var(--range-progress, 41%), var(--line) var(--range-progress, 41%));
  cursor: pointer;
}

.range-field input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 5px solid var(--cream);
  border-radius: 50%;
  appearance: none;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 4px 12px rgba(69, 52, 30, 0.24);
}

.range-field input[type="range"]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 5px solid var(--cream);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 4px 12px rgba(69, 52, 30, 0.24);
}

.range-field__scale {
  display: flex;
  justify-content: space-between;
  color: var(--muted-light);
  font-size: 0.6rem;
}

.calculator__note {
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.65;
}

.life {
  background: var(--paper);
}

.photo-carousel {
  margin-top: 70px;
}

.photo-carousel__track {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.photo-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 76px 76px var(--radius-md) var(--radius-md);
  background: var(--paper-deep);
}

.photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(24, 21, 18, 0.82));
  content: "";
  pointer-events: none;
}

.photo-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.photo-card:nth-child(1) img {
  object-position: center 62%;
}

.photo-card:nth-child(2) img {
  object-position: center 58%;
}

.photo-card:nth-child(3) img {
  object-position: center 52%;
}

.photo-card:nth-child(4) img {
  object-position: center 60%;
}

.photo-card:hover img {
  transform: scale(1.035);
}

.photo-card figcaption {
  position: absolute;
  z-index: 2;
  right: 19px;
  bottom: 24px;
  left: 19px;
  display: grid;
  color: var(--white);
}

.photo-card figcaption span {
  margin-bottom: 8px;
  color: var(--gold-pale);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.photo-card figcaption strong {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1;
}

.photo-card figcaption small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  line-height: 1.45;
}

.carousel-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.carousel-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  gap: 7px;
}

.carousel-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
  transition: width 160ms ease, background 160ms ease;
}

.carousel-dots span.is-active {
  width: 20px;
  border-radius: 999px;
  background: var(--gold);
}

.sample {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.sample::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(176, 131, 63, 0.12), transparent 31%),
    linear-gradient(115deg, transparent 45%, rgba(255, 255, 255, 0.018) 45% 46%, transparent 46%);
  content: "";
  pointer-events: none;
}

.sample .shell {
  position: relative;
}

.reader {
  margin-top: 68px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: #1e1b19;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34);
}

.reader:fullscreen {
  width: 100vw;
  height: 100vh;
  border: 0;
  border-radius: 0;
  background: #171513;
}

.reader:fullscreen .reader__stage {
  height: calc(100vh - 138px);
}

.reader__topbar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.reader__topbar > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.reader__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(176, 131, 63, 0.12);
}

.reader__topbar strong {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
}

.reader__topbar small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reader__topbar button {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
}

.reader__stage {
  position: relative;
  display: grid;
  min-height: 680px;
  place-items: center;
  overflow: hidden;
  padding: 44px 74px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 42%),
    #24201d;
  touch-action: pan-y;
}

.reader__spread {
  display: flex;
  max-width: 980px;
  max-height: 700px;
  justify-content: center;
  gap: 3px;
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.36));
}

.reader__spread img {
  width: auto;
  max-width: calc(50% - 2px);
  max-height: 700px;
  object-fit: contain;
  background: white;
}

.reader__spread img:first-child {
  border-radius: 5px 0 0 5px;
}

.reader__spread img:last-child {
  border-radius: 0 5px 5px 0;
}

.reader__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(20, 18, 16, 0.56);
  color: white;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, opacity 180ms ease;
}

.reader__arrow:hover {
  background: var(--gold-dark);
}

.reader__arrow:disabled {
  cursor: default;
  opacity: 0.18;
}

.reader__arrow--prev {
  left: 20px;
}

.reader__arrow--next {
  right: 20px;
}

.reader__controls {
  display: grid;
  min-height: 80px;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  grid-template-columns: 78px minmax(0, 1fr) max-content;
}

.reader__counter {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 0.98rem;
}

.reader__counter i {
  margin: 0 3px;
  color: var(--gold);
  font-style: normal;
}

.reader__controls input[type="range"] {
  width: 100%;
  height: 3px;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) var(--reader-progress, 0%), rgba(255, 255, 255, 0.15) var(--reader-progress, 0%));
  cursor: pointer;
}

.reader__controls input[type="range"]::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  border: 3px solid #1e1b19;
  border-radius: 50%;
  appearance: none;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.reader__controls input[type="range"]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 3px solid #1e1b19;
  border-radius: 50%;
  background: var(--gold);
}

.reader__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.59rem;
  letter-spacing: 0.04em;
}

.sample__after {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 38px;
}

.sample__after p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.sample__after strong {
  color: var(--white);
}

.checklist {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.checklist::after {
  position: absolute;
  top: 12%;
  right: -140px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(176, 131, 63, 0.22);
  border-radius: 50%;
  content: "";
}

.checklist__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(70px, 11vw, 150px);
  grid-template-columns: minmax(310px, 0.6fr) minmax(0, 0.75fr);
}

.checklist__preview {
  position: relative;
  max-width: 490px;
  padding: 24px 24px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 249, 0.7);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.checklist__paper {
  overflow: hidden;
  border: 1px solid #e7e2da;
  background: white;
}

.checklist__paper img {
  width: 100%;
  height: auto;
}

.checklist__badge {
  position: absolute;
  right: -24px;
  bottom: 28px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.checklist__copy h2 {
  max-width: 720px;
}

.checklist__copy .lead-copy {
  max-width: 690px;
  margin: 32px 0;
}

.checklist__list {
  display: grid;
  margin: 0 0 36px;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.checklist__list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.checklist__list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.checklist__micro {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.67rem;
}

.author {
  background: var(--white);
}

.author__grid {
  display: grid;
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 0.72fr);
}

.author__index {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.author__index p {
  display: grid;
  align-items: start;
  gap: 3px 20px;
  margin: 0;
  padding: 25px 4px;
  grid-template-columns: 42px minmax(0, 1fr);
}

.author__index p + p {
  border-top: 1px solid var(--line);
}

.author__index span {
  grid-row: 1 / 3;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
}

.author__index strong {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.2;
}

.author__index small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.author__copy > p:not(.kicker, .lead-copy) {
  max-width: 680px;
  color: var(--muted);
}

.author__signature {
  display: grid;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.author__signature span,
.author__signature small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.author__signature strong {
  margin: 5px 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
}

.faq {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq__grid {
  display: grid;
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 0.72fr);
}

.faq__heading {
  position: sticky;
  top: 130px;
}

.faq__heading h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.faq__heading > p:last-child {
  max-width: 470px;
  margin: 30px 0 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 4px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold-dark);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  max-width: 720px;
  margin: -2px 42px 28px 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 9vw, 140px) 0 70px;
  background: var(--ink-deep);
  color: var(--paper);
}

.final-cta__texture {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    radial-gradient(circle at 80% 20%, rgba(176, 131, 63, 0.2), transparent 25%),
    linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.02) 35% 36%, transparent 36%),
    linear-gradient(30deg, transparent 65%, rgba(255, 255, 255, 0.015) 65% 66%, transparent 66%);
}

.final-cta__grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
}

.final-cta__book {
  position: relative;
  width: 100%;
  max-width: 300px;
  justify-self: center;
}

.final-cta__book::before {
  position: absolute;
  top: -28px;
  right: -28px;
  bottom: 28px;
  left: 28px;
  border: 1px solid rgba(176, 131, 63, 0.45);
  content: "";
}

.final-cta__book img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 4px 10px 10px 4px;
  box-shadow: 25px 40px 80px rgba(0, 0, 0, 0.48);
}

.final-cta h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
}

.final-cta__copy > p:not(.kicker, .final-cta__micro) {
  max-width: 680px;
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
}

.final-cta__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 0 0 40px;
  padding: 0;
  color: var(--gold-pale);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.final-cta__copy li:not(:last-child)::after {
  margin-left: 26px;
  color: var(--gold);
  content: "·";
}

.final-cta__micro {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
}

.final-cta__motto {
  position: relative;
  margin: clamp(90px, 12vw, 160px) 0 0;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 6rem);
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.final-cta__motto span {
  color: var(--gold);
}

.site-footer {
  padding: 54px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #1d1a18;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wordmark--footer .wordmark__seal {
  border-color: rgba(176, 131, 63, 0.6);
  color: var(--gold-pale);
}

.wordmark--footer .wordmark__seal::after {
  border-color: #1d1a18;
}

.wordmark--footer .wordmark__text strong {
  color: var(--white);
}

.wordmark--footer .wordmark__text small {
  color: rgba(255, 255, 255, 0.38);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: 0.72rem;
  font-weight: 650;
}

.site-footer__links a:hover {
  color: var(--gold-pale);
}

.site-footer__legal {
  display: grid;
  gap: 40px;
  padding-top: 30px;
  grid-template-columns: minmax(0, 1fr) max-content;
}

.site-footer__legal p {
  max-width: 940px;
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.64rem;
  line-height: 1.65;
}

.mobile-buy {
  position: fixed;
  z-index: 65;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: auto;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 8px 7px 17px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(37, 34, 31, 0.95);
  box-shadow: 0 18px 50px rgba(25, 20, 16, 0.3);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.mobile-buy[hidden] {
  display: none !important;
}

.mobile-buy > span:first-child {
  display: grid;
}

.mobile-buy small {
  display: none;
}

.mobile-buy strong {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.025em;
}

.mobile-buy > span:last-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink-deep);
}

.menu-open .mobile-buy {
  display: none !important;
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal[data-delay="1"] {
  transition-delay: 100ms;
}

.js .reveal[data-delay="2"] {
  transition-delay: 200ms;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 52px, 1120px);
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.72rem;
  }

  .hero__inner {
    gap: 50px;
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.78fr);
  }

  .metrics__grid {
    grid-template-columns: 1.2fr repeat(5, 1fr);
  }

  .metrics__intro,
  .metric {
    padding-inline: 18px;
  }

  .photo-card {
    border-radius: 64px 64px 18px 18px;
  }

  .photo-card figcaption small {
    display: none;
  }
}

@media (max-width: 980px) {
  :root {
    --section-space: clamp(82px, 11vw, 120px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 69;
    inset: var(--nav-top, 119px) 0 0;
    display: flex;
    align-items: flex-start;
    padding: 44px 36px 120px;
    background: rgba(248, 245, 239, 0.985);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 500;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    width: 100%;
    margin-top: 28px;
  }

  .hero__inner {
    min-height: 620px;
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
  }

  .hero__copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 6.8vw, 5.25rem);
  }

  .hero__visual {
    min-height: 550px;
  }

  .hero__photo {
    top: 84px;
    width: min(80%, 390px);
    height: 350px;
  }

  .hero__book {
    width: min(48%, 225px);
  }

  .hero__book figcaption {
    right: -48px;
  }

  .metrics__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .metrics__intro {
    display: none;
  }

  .manifesto__grid,
  .cost__grid,
  .checklist__grid,
  .author__grid,
  .faq__grid {
    gap: 70px;
    grid-template-columns: 1fr;
  }

  .manifesto__copy {
    max-width: 690px;
    padding-top: 0;
  }

  .section-heading--split {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .section-heading--split > p,
  .section-heading--split > div:last-child:not(:first-child) {
    max-width: 720px;
  }

  .parts {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .parts__tabs {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    scrollbar-width: none;
  }

  .parts__tabs::-webkit-scrollbar {
    display: none;
  }

  .parts__tabs button,
  .parts__tabs button[aria-selected="true"] {
    min-width: max-content;
    min-height: 72px;
    padding: 16px 22px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .part-panel {
    min-height: 480px;
  }

  .cost__copy {
    max-width: 700px;
  }

  .calculator {
    width: min(100%, 680px);
  }

  .photo-carousel__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reader__stage {
    min-height: 600px;
  }

  .reader__spread,
  .reader__spread img {
    max-height: 620px;
  }

  .checklist__preview {
    width: min(72vw, 450px);
  }

  .faq__heading {
    position: static;
  }

  .final-cta__grid {
    gap: 58px;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  }

  .final-cta__book {
    width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 34px, 680px);
    --section-space: 86px;
  }

  html {
    scroll-padding-top: 104px;
  }

  .status-bar {
    font-size: 0.58rem;
  }

  .status-bar__inner {
    min-height: 32px;
    gap: 8px;
    letter-spacing: 0.075em;
  }

  .status-bar__inner span:nth-of-type(n + 2) {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .wordmark__seal {
    width: 38px;
    height: 38px;
  }

  .wordmark__text strong {
    font-size: 1.08rem;
  }

  .wordmark__text small {
    font-size: 0.49rem;
  }

  .site-nav {
    inset: var(--nav-top, 102px) 0 0;
    padding: 28px 17px 100px;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 46px 0 64px;
    background:
      radial-gradient(circle at 92% 58%, rgba(176, 131, 63, 0.14), transparent 24%),
      linear-gradient(180deg, var(--paper), #f1e9de);
  }

  .hero::before {
    top: auto;
    right: -32%;
    bottom: -8%;
    width: 430px;
    height: 430px;
  }

  .hero::after {
    display: none;
  }

  .hero__inner {
    display: grid;
    min-height: 0;
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: none;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15vw, 5rem);
  }

  .hero h1 em {
    max-width: 370px;
    margin-top: 18px;
    font-size: 0.31em;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .hero__actions .text-link {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: center;
    border: 0;
  }

  .hero__visual {
    width: min(100%, 520px);
    min-height: 380px;
    margin-inline: auto;
  }

  .hero__photo {
    top: 54px;
    right: 0;
    width: 78%;
    height: 270px;
    border-radius: 140px 140px 18px 18px;
  }

  .hero__book {
    left: 3px;
    width: min(43%, 185px);
  }

  .hero__book::before {
    top: 10px;
    right: -10px;
    bottom: -10px;
    left: 10px;
  }

  .hero__book figcaption {
    right: -44px;
    bottom: 12px;
    min-width: 96px;
    padding: 10px 12px;
  }

  .hero__book figcaption strong {
    font-size: 1.25rem;
  }

  .hero__visual-note {
    top: 0;
    right: 0;
  }

  .metrics {
    overflow: hidden;
  }

  .metrics__grid {
    width: 100%;
    min-height: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .metric {
    min-height: 118px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 22px 26px;
  }

  .metric:nth-child(2n) {
    border-right: 0;
  }

  .metric:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .metric strong {
    font-size: 2.35rem;
  }

  .section-heading h2,
  .checklist h2,
  .author h2,
  .cost__copy h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .manifesto__grid {
    gap: 40px;
  }

  .promise-grid {
    grid-template-columns: 1fr;
  }

  .promise {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise:last-child {
    border-bottom: 0;
  }

  .promise h3 {
    margin-top: 34px;
  }

  .parts {
    margin-top: 52px;
  }

  .parts__tabs button,
  .parts__tabs button[aria-selected="true"] {
    min-height: 64px;
    padding-inline: 18px;
    font-size: 0.96rem;
  }

  .part-panel {
    display: block;
    min-height: 500px;
    padding: 48px 25px;
  }

  .part-panel__number {
    margin-bottom: 50px;
    font-size: 8rem;
  }

  .sample-teaser__grid {
    gap: 28px;
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .sample-teaser__preview {
    width: 84px;
  }

  .sample-teaser__preview span {
    right: -18px;
    bottom: 12px;
  }

  .sample-teaser__copy h2 {
    font-size: clamp(2.15rem, 9vw, 3rem);
  }

  .sample-teaser__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .sample-teaser__actions .button,
  .sample-teaser__actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .sample-teaser__actions .text-link {
    border-bottom: 0;
  }

  .law-timeline {
    margin: 60px 0 48px;
    grid-template-columns: 1fr;
  }

  .law-timeline > div:last-child {
    text-align: left;
  }

  .law-timeline__line {
    width: 1px;
    height: 58px;
    margin: 12px 0 12px 11px;
  }

  .law-timeline__line::before {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .law-timeline__line::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
  }

  .law-grid {
    grid-template-columns: 1fr;
  }

  .law-card,
  .law-card:nth-child(2n) {
    min-height: 0;
    padding: 28px 10px;
    border-right: 0;
  }

  .source-note,
  .sample__after,
  .site-footer__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .source-note {
    padding: 26px 24px;
  }

  .calculator {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .calculator::before {
    display: none;
  }

  .calculator__result > output {
    font-size: clamp(2.6rem, 13vw, 4.1rem);
  }

  .photo-carousel {
    margin-top: 48px;
  }

  .photo-carousel__track {
    display: flex;
    width: calc(100% + 17px);
    overflow-x: auto;
    padding: 0 17px 8px 0;
    gap: 13px;
    scroll-padding: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .photo-carousel__track::-webkit-scrollbar {
    display: none;
  }

  .photo-card {
    width: 74vw;
    max-width: 300px;
    flex: 0 0 auto;
    border-radius: 56px 56px 18px 18px;
    scroll-snap-align: start;
  }

  .photo-card figcaption small {
    display: block;
  }

  .carousel-controls {
    display: flex;
  }

  .reader {
    width: calc(100% + 20px);
    margin-left: -10px;
    border-radius: 15px;
  }

  .reader__topbar {
    min-height: 56px;
    padding: 0 14px;
  }

  .reader__topbar small {
    display: none;
  }

  .reader__stage {
    min-height: 62vh;
    padding: 18px 44px;
  }

  .reader__spread {
    max-height: 66vh;
  }

  .reader__spread img {
    max-width: 100%;
    max-height: 66vh;
    border-radius: 4px !important;
  }

  .reader__spread img[data-reader-secondary] {
    display: none;
  }

  .reader__arrow {
    width: 44px;
    height: 44px;
  }

  .reader__arrow--prev {
    left: 5px;
  }

  .reader__arrow--next {
    right: 5px;
  }

  .reader__controls {
    min-height: 94px;
    padding: 14px;
    gap: 12px;
    grid-template-columns: 62px 1fr;
  }

  .reader__hint {
    grid-column: 1 / -1;
    text-align: center;
  }

  .sample__after .button,
  .checklist__copy .button,
  .final-cta__copy .button {
    width: 100%;
  }

  .checklist__grid,
  .author__grid {
    gap: 64px;
  }

  .checklist__preview {
    width: min(82vw, 390px);
  }

  .author__index p {
    padding-block: 22px;
  }

  .author__copy {
    order: 1;
  }

  .author__index {
    order: 2;
  }

  .checklist__badge {
    right: -8px;
  }

  .faq__grid {
    gap: 50px;
  }

  .faq-list summary {
    min-height: 76px;
    gap: 18px;
    font-size: 1.08rem;
  }

  .faq-list details > p {
    margin-right: 0;
    font-size: 0.83rem;
  }

  .final-cta__grid {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .final-cta__copy {
    order: 1;
  }

  .final-cta__book {
    width: min(48vw, 190px);
    justify-self: start;
    order: 2;
    margin-left: 24px;
  }

  .final-cta__book::before {
    top: -15px;
    right: -15px;
    bottom: 15px;
    left: 15px;
  }

  .final-cta h2 {
    font-size: clamp(3.3rem, 15vw, 5.2rem);
  }

  .final-cta__copy li:not(:last-child)::after {
    display: none;
  }

  .final-cta__motto {
    font-size: clamp(1.5rem, 7vw, 2.4rem);
    white-space: normal;
  }

  .site-footer__top {
    display: flex;
  }

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

  .site-footer__legal {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .mobile-buy {
    display: flex;
  }
}

@media (max-width: 420px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .wordmark__text small {
    display: none;
  }

  .hero__visual {
    min-height: 335px;
  }

  .hero__photo {
    top: 48px;
    height: 235px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero__book {
    width: 165px;
  }

  .hero__book figcaption {
    display: none;
  }

  .hero__visual-note {
    padding-right: 12px;
  }

  .sample-teaser__grid {
    grid-template-columns: 1fr;
  }

  .sample-teaser__preview {
    display: none;
  }

  .metric {
    padding-inline: 20px;
  }

  .part-panel {
    padding-inline: 20px;
  }

  .reader__topbar button {
    font-size: 0.58rem;
  }

  .photo-card {
    width: 82vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .status-bar,
  .site-header,
  .mobile-buy,
  .reader__arrow,
  .reader__controls,
  .carousel-controls {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section,
  .final-cta {
    padding-block: 48px;
    background: white !important;
    color: black !important;
  }
}
