:root {
  --granite: #17232d;
  --granite-2: #213440;
  --alpine: #5f788d;
  --snow: #f3f0e7;
  --paper: #fffdf8;
  --horizon: #d19a50;
  --horizon-dark: #90521f;
  --rust: #8b493a;
  --ink: #202428;
  --muted: #5e666b;
  --line: rgba(23, 35, 45, 0.17);
  --white: #fff;
  --content: 1180px;
  --reading: 760px;
  --radius: 10px;
  --shadow: 0 22px 60px rgba(23, 35, 45, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--snow);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--horizon); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--granite);
  background: var(--white);
  transform: translateY(-170%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(23, 35, 45, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(100% - 40px, var(--content));
  min-height: 76px;
  margin: 0 auto;
}
.wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 44px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.05;
  text-decoration: none;
}
.wordmark small {
  margin-top: 4px;
  color: var(--horizon);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--horizon); }
.site-nav .nav-cta {
  padding: 0 18px;
  color: var(--granite);
  background: var(--horizon);
  border-radius: 6px;
}
.site-nav .nav-cta:hover { color: var(--granite); background: #e1ad67; }
.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 44px;
  padding: 0 12px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 6px;
  cursor: pointer;
}

.wrap { width: min(100% - 40px, var(--content)); margin-inline: auto; }
.reading { width: min(100% - 40px, var(--reading)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-tight { padding: 68px 0; }
.section-dark { color: var(--white); background: var(--granite); }
.section-paper { background: var(--paper); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--horizon-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-dark .eyebrow, .hero .eyebrow { color: var(--horizon); }
h1, h2, h3, h4, blockquote {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}
h1 { margin-bottom: 24px; font-size: clamp(44px, 6.4vw, 78px); line-height: .99; }
h2 { margin-bottom: 22px; font-size: clamp(34px, 4.2vw, 52px); line-height: 1.08; }
h3 { margin-bottom: 14px; font-size: 27px; line-height: 1.18; }
h4 { margin-bottom: 10px; font-size: 21px; line-height: 1.25; }
p { margin: 0 0 1.2em; }
.lede { max-width: 760px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(20px, 2.2vw, 26px); line-height: 1.5; }
.muted { color: var(--muted); }
.section-dark .muted { color: rgba(255, 255, 255, .68); }
.kicker { max-width: 760px; font-size: 18px; }
.rule { border-top: 1px solid var(--line); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  color: var(--granite);
  background: var(--horizon);
  border: 1px solid var(--horizon);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { background: #e1ad67; border-color: #e1ad67; }
.button-secondary { color: var(--granite); background: transparent; border-color: var(--granite); }
.button-secondary:hover { color: var(--white); background: var(--granite); border-color: var(--granite); }
.section-dark .button-secondary, .hero .button-secondary { color: var(--white); border-color: rgba(255, 255, 255, .7); }
.section-dark .button-secondary:hover, .hero .button-secondary:hover { color: var(--granite); background: var(--white); }
.button-quiet { min-height: 44px; padding-inline: 0; color: inherit; background: transparent; border: 0; text-decoration: underline; text-underline-offset: 4px; }
.button-quiet:hover { background: transparent; color: var(--horizon-dark); }
.text-link { display: inline-flex; align-items: center; min-height: 44px; color: var(--horizon-dark); font-weight: 800; text-underline-offset: 4px; }

.hero {
  position: relative;
  color: var(--white);
  background: var(--granite);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -48% 42%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(209, 154, 80, .19), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .62fr);
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  min-height: 690px;
  padding: 76px 0 82px;
}
.hero-copy { max-width: 760px; }
.hero-copy .lede { color: rgba(255, 255, 255, .84); }
.hero-visual {
  position: relative;
  align-self: end;
  display: grid;
  place-items: end center;
}
.hero-portrait {
  width: min(100%, 420px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 180px 180px 12px 12px;
  filter: saturate(.8) contrast(1.04);
  box-shadow: 0 32px 70px rgba(0, 0, 0, .34);
}
.hero-book {
  position: absolute;
  left: -52px;
  bottom: 20px;
  width: min(42%, 185px);
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, .48));
}
.hero-note {
  max-width: 620px;
  margin-top: 26px;
  padding-left: 18px;
  color: rgba(255, 255, 255, .72);
  border-left: 2px solid var(--horizon);
  font-size: 14px;
}
.page-hero { padding: 86px 0 76px; color: var(--white); background: var(--granite); }
.page-hero .lede { color: rgba(255, 255, 255, .78); }
.breadcrumbs { margin-bottom: 28px; color: rgba(255, 255, 255, .67); font-size: 13px; }
.breadcrumbs a { display: inline-flex; align-items: center; min-height: 44px; text-underline-offset: 3px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
}
.split-book { grid-template-columns: minmax(250px, .55fr) minmax(0, 1fr); }
.book-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: 56px;
  background: linear-gradient(145deg, var(--granite), var(--granite-2));
  border-radius: var(--radius);
  overflow: hidden;
}
.book-stage::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(209, 154, 80, .25), transparent 67%);
}
.book-stage img { position: relative; width: min(100%, 340px); filter: drop-shadow(0 26px 30px rgba(0, 0, 0, .44)); }
.portrait-card img { width: 100%; max-height: 720px; object-fit: cover; object-position: center 24%; border-radius: var(--radius); box-shadow: var(--shadow); }

.stat-band { color: var(--white); background: var(--rust); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 27px 22px; border-right: 1px solid rgba(255, 255, 255, .22); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 30px; }
.stat span { color: rgba(255, 255, 255, .74); font-size: 13px; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card > :last-child { margin-bottom: 0; }
.card .button-row { margin-top: auto; padding-top: 16px; }
.card-number { color: var(--rust); font-size: 12px; font-weight: 800; }
.card h3 { margin-top: 30px; }
.card-tag {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 4px 9px;
  color: var(--granite);
  background: #e8e4da;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.card-tag.live { color: #164a2e; background: #dcecdf; }
.card-tag.hold { color: #714118; background: #f5e4ca; }
.card ul { padding-left: 20px; }
.card li + li { margin-top: 8px; }
.callout {
  padding: 28px 30px;
  background: rgba(209, 154, 80, .13);
  border-left: 4px solid var(--horizon);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout > :last-child { margin-bottom: 0; }

.quote-band { padding: 78px 0; color: var(--white); background: var(--rust); }
.quote-band blockquote { max-width: 930px; margin: 0 auto; text-align: center; font-size: clamp(30px, 4vw, 48px); line-height: 1.24; }
.quote-band cite { display: block; margin-top: 18px; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-style: normal; }

.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.format-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}
.format-link:hover { border-color: var(--horizon-dark); box-shadow: 0 10px 28px rgba(23, 35, 45, .08); }
.format-link strong, .format-link small { display: block; }
.format-link small { color: var(--muted); }
.format-link .arrow { color: var(--horizon-dark); font-size: 22px; }
.format-link.disabled { opacity: .65; cursor: not-allowed; }

.content-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.content-list li { display: grid; grid-template-columns: 170px 1fr; gap: 28px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.content-list strong { font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 400; }
.content-list p { margin: 0; }

.form-shell { padding: clamp(28px, 5vw, 52px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label, .field-label { color: var(--granite); font-size: 13px; font-weight: 800; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #98a1a6;
  border-radius: 5px;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 10px; grid-column: 1 / -1; font-size: 13px; }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; }
.form-status { min-height: 1.4em; margin: 12px 0 0; color: var(--rust); font-weight: 700; }
.form-note { margin-top: 16px; color: var(--muted); font-size: 12px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.email-band { position: relative; color: var(--white); background: var(--granite); overflow: hidden; }
.email-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background: url("assets/heart-hands.webp") center 46% / cover no-repeat;
}
.email-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.email-band .form-shell { color: var(--ink); box-shadow: none; }

.resource-card .disclosure { margin-top: 18px; padding-top: 15px; color: var(--muted); border-top: 1px solid var(--line); font-size: 12px; }
.resource-facts { display: grid; gap: 12px; margin: 18px 0; }
.resource-facts p { margin: 0; }
.resource-facts strong { display: block; color: var(--granite); font-size: 12px; text-transform: uppercase; }
.status-table { width: 100%; border-collapse: collapse; background: var(--paper); }
.status-table th, .status-table td { padding: 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.status-table th { color: var(--granite); font-size: 12px; text-transform: uppercase; }

.article-header { padding: 86px 0 50px; }
.article-header h1 { max-width: 900px; }
.article-meta { color: var(--muted); font-size: 13px; }
.article-body { padding-bottom: 92px; }
.article-body h2 { margin-top: 2em; font-size: 36px; }
.article-body h3 { margin-top: 1.8em; }
.article-body p, .article-body li { font-family: Georgia, "Times New Roman", serif; font-size: 19px; line-height: 1.78; }
.article-body ul, .article-body ol { padding-left: 28px; }
.article-body blockquote { margin: 42px 0; padding: 4px 0 4px 26px; color: var(--rust); border-left: 3px solid var(--horizon); font-size: 29px; line-height: 1.45; }
.share-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--line); }

.cta-band { color: var(--white); background: var(--granite); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.cta-inner h2 { max-width: 780px; margin-bottom: 10px; }
.cta-inner .button-row { flex: 0 0 auto; margin-top: 0; }

.site-footer { color: rgba(255, 255, 255, .75); background: #0d171e; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 54px;
  padding: 64px 0 48px;
}
.footer-grid h2 { margin-bottom: 14px; color: var(--white); font-size: 26px; }
.footer-grid h3 { color: var(--white); font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.footer-grid a { display: flex; align-items: center; min-height: 44px; color: inherit; font-size: 13px; text-underline-offset: 3px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  font-size: 12px;
}
.footer-bottom p { margin: 0; }

.not-found { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.not-found h1 { font-size: 120px; color: var(--horizon-dark); }
.social-card-canvas {
  width: 1200px;
  height: 630px;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 70px;
  padding: 64px 80px;
  color: var(--white);
  background: var(--granite);
}
.social-card-canvas h1 { font-size: 66px; }
.social-card-canvas img { width: 300px; max-height: 510px; object-fit: contain; filter: drop-shadow(0 22px 24px rgba(0,0,0,.45)); }

@media (max-width: 980px) {
  .site-nav { position: fixed; inset: 76px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; max-height: calc(100vh - 76px); padding: 16px 20px 26px; overflow: auto; background: var(--granite); border-top: 1px solid rgba(255,255,255,.12); }
  .site-nav.open { display: flex; }
  .site-nav a { min-height: 50px; padding: 0 10px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .site-nav .nav-cta { justify-content: center; margin-top: 14px; border: 0; }
  .menu-toggle { display: inline-block; }
  .hero-grid { grid-template-columns: 1fr .55fr; gap: 42px; min-height: 620px; }
  .hero-book { left: -34px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 32px, var(--content)); }
  .reading { width: min(100% - 32px, var(--reading)); }
  .section { padding: 72px 0; }
  .section-tight { padding: 54px 0; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 64px 0 72px; }
  .hero-visual { width: min(82%, 420px); margin: 16px auto 0; }
  .hero-book { left: -14px; width: 39%; }
  .page-hero { padding: 64px 0 56px; }
  .split, .split-book, .email-inner { grid-template-columns: 1fr; }
  .book-stage { min-height: 500px; padding: 44px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.22); }
  .cards, .cards-2, .cards-4 { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .content-list li { grid-template-columns: 1fr; gap: 6px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full, .consent { grid-column: auto; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .status-table, .status-table tbody, .status-table tr, .status-table th, .status-table td { display: block; }
  .status-table thead { position: absolute; left: -10000px; }
  .status-table tr { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .status-table td { padding: 5px 14px; border: 0; }
}

@media (max-width: 460px) {
  .header-inner { width: min(100% - 24px, var(--content)); min-height: 70px; }
  .site-nav { inset-block-start: 70px; max-height: calc(100vh - 70px); }
  .wordmark { font-size: 16px; }
  h1 { font-size: 43px; }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero-visual { width: 92%; }
  .book-stage { min-height: 420px; padding: 30px; }
  .card { padding: 25px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: auto; }
}

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

@media print {
  .site-header, .site-footer, .button-row, .email-band, .cta-band { display: none !important; }
  body { color: #000; background: #fff; }
  .page-hero { padding: 30px 0; color: #000; background: #fff; border-bottom: 2px solid #000; }
  .page-hero .lede, .breadcrumbs { color: #333; }
  a { color: #000; }
}
