:root {
  --paper: #f6efe6;
  --paper-deep: #eee3d6;
  --paper-soft: #fbf7f1;
  --ink: #1d211d;
  --forest: #304a39;
  --forest-deep: #20372a;
  --sage: #667968;
  --muted: #646b63;
  --line: rgba(48, 74, 57, 0.18);
  --line-strong: rgba(48, 74, 57, 0.34);
  --white: #fffdf9;
  --shadow-soft: 0 28px 80px rgba(63, 47, 29, 0.12);
  --shadow-small: 0 14px 42px rgba(63, 47, 29, 0.1);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --page: min(1180px, calc(100vw - 48px));
  --reading: 760px;
  --header-height: 82px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 4%, rgba(255, 255, 255, 0.72), transparent 28rem),
    radial-gradient(circle at 85% 35%, rgba(216, 202, 183, 0.28), transparent 34rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.66;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--forest-deep);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(48, 74, 57, 0.2);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-180%);
  border-radius: 8px;
  background: var(--forest-deep);
  color: #fff;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(246, 239, 230, 0.9);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 32px rgba(63, 47, 29, 0.06);
}

.header-inner {
  width: var(--page);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 1.27rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 30px;
  height: 30px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
  margin-left: auto;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 520;
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--forest-deep);
  border-radius: 999px;
  background: var(--forest-deep);
  color: #fff !important;
  font-weight: 620 !important;
  box-shadow: 0 8px 24px rgba(32, 55, 42, 0.14);
  transition: transform 160ms ease, background 160ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--forest);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.68);
  color: var(--forest-deep);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

main {
  overflow: clip;
}

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

.serif {
  font-family: var(--serif);
}

.kicker {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 680;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.display-title,
.section-title,
.article-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.display-title {
  font-size: clamp(4.45rem, 8.5vw, 8.6rem);
  line-height: 0.88;
}

.section-title {
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  line-height: 0.96;
}

.article-title {
  max-width: 980px;
  font-size: clamp(3.75rem, 7.4vw, 7.35rem);
  line-height: 0.92;
}

.lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--forest);
  font-size: clamp(1.28rem, 2.1vw, 1.72rem);
  line-height: 1.45;
  text-wrap: pretty;
}

.body-copy {
  color: var(--muted);
  font-size: 1.04rem;
  text-wrap: pretty;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--forest-deep);
  font-size: 0.94rem;
  font-weight: 680;
  text-decoration: none;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--forest-deep);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 680;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--forest-deep);
  color: #fff;
  box-shadow: 0 12px 28px rgba(32, 55, 42, 0.14);
}

.button-primary:hover {
  background: var(--forest);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 253, 249, 0.52);
  color: var(--forest-deep);
}

.button-secondary:hover {
  background: var(--white);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* Home */
.home-hero {
  position: relative;
  min-height: min(900px, calc(100vh - var(--header-height)));
  padding: clamp(48px, 7vw, 96px) 0 78px;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 4% auto auto -14%;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 4vw, 74px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 6%;
}

.hero-note {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 585px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-note svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--forest);
}

.hero-art {
  position: relative;
  min-height: 650px;
}

.hero-art::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -5%;
  bottom: 5%;
  width: 72%;
  height: 28%;
  border-radius: 50%;
  background: rgba(92, 75, 51, 0.13);
  filter: blur(42px);
}

.hero-art-window {
  position: absolute;
  inset: -4% -15% -7% -2%;
  overflow: hidden;
  border-radius: 42px 0 0 42px;
  box-shadow: var(--shadow-soft);
}

.hero-art-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 72%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 620;
}

.hero-proof span {
  position: relative;
  padding-left: 17px;
}

.hero-proof span::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

.editorial-lead {
  padding: clamp(92px, 12vw, 170px) 0;
}

.editorial-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.65fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: end;
}

.editorial-lead h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.6vw, 6.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.editorial-lead p {
  margin: 0;
  padding: 0 0 9px 34px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 1.04rem;
}

.home-section {
  position: relative;
  padding: clamp(92px, 12vw, 174px) 0;
}

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

.split-editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 22px;
}

.split-editorial-copy {
  position: relative;
  z-index: 2;
  grid-column: 1 / span 5;
}

.split-editorial-media {
  position: relative;
  grid-column: 7 / -1;
  min-height: 720px;
}

.split-editorial.is-reversed .split-editorial-copy {
  grid-column: 8 / -1;
}

.split-editorial.is-reversed .split-editorial-media {
  grid-column: 1 / span 6;
  grid-row: 1;
}

.media-float {
  position: absolute;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.media-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-float.main {
  inset: 0 0 0 10%;
  border-radius: 34px;
}

.media-float.main img {
  object-position: 50% 52%;
}

.media-float.secondary {
  z-index: 2;
  width: 47%;
  height: 58%;
  left: -6%;
  bottom: -8%;
  border: 8px solid var(--paper);
  border-radius: 28px;
  box-shadow: var(--shadow-small);
}

.media-float.secondary img {
  object-position: 50% 78%;
}

.split-editorial.is-reversed .media-float.main {
  inset: 0 10% 0 0;
}

.split-editorial.is-reversed .media-float.secondary {
  right: -4%;
  left: auto;
}

.underlined-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.underlined-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.96rem;
}

.underlined-list span {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.world-band {
  position: relative;
}

.world-band::before {
  content: "";
  position: absolute;
  inset: 5% 0;
  z-index: -1;
  background: linear-gradient(110deg, rgba(48, 74, 57, 0.08), rgba(255, 255, 255, 0.2) 56%, rgba(48, 74, 57, 0.04));
}

.world-quote {
  max-width: 820px;
  margin: 50px 0 0;
  padding-left: 32px;
  border-left: 1px solid var(--line-strong);
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.35;
}

.reflection-section {
  text-align: center;
}

.reflection-section .section-title {
  max-width: 950px;
  margin-inline: auto;
}

.reflection-intro {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--muted);
}

.prompt-lines {
  width: min(900px, 100%);
  margin: 58px auto 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  text-align: left;
}

.prompt-lines li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.25;
}

.prompt-lines small {
  color: var(--sage);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notepad-rail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 10vw, 140px);
  align-items: start;
}

.notepad-uses {
  margin-top: 54px;
}

.notepad-use {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 22px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.notepad-use:last-child {
  border-bottom: 1px solid var(--line);
}

.notepad-use span {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.notepad-use strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.notepad-use p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.notepad-aside {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  padding-top: 17%;
}

.notepad-aside blockquote {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.12;
}

.notepad-aside p {
  margin-top: 24px;
  color: var(--muted);
}

.customization-wrap {
  display: grid;
  grid-template-columns: minmax(410px, 0.9fr) minmax(0, 0.75fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.customization-art {
  height: 740px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.customization-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 63%;
}

.color-words {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 34px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.privacy-home {
  padding: clamp(110px, 14vw, 200px) 0;
  text-align: center;
}

.privacy-home-mark {
  width: 52px;
  height: 52px;
  margin: 0 auto 28px;
  color: var(--forest);
}

.privacy-home h2 {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.privacy-home p {
  max-width: 620px;
  margin: 30px auto 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  padding: clamp(90px, 12vw, 160px) 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0), rgba(255, 253, 249, 0.58));
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.final-cta p {
  max-width: 680px;
  margin: 26px auto 0;
  color: var(--muted);
}

.final-cta .button-row {
  justify-content: center;
}

/* Inner pages */
.breadcrumbs {
  margin: 0 0 38px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  color: var(--sage);
  font-size: 0.8rem;
}

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

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 9px;
  color: rgba(48, 74, 57, 0.42);
}

.article-hero {
  position: relative;
  padding: clamp(58px, 8vw, 112px) 0 clamp(80px, 11vw, 150px);
  border-bottom: 1px solid var(--line);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.68fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.article-deck {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--forest);
  font-size: clamp(1.25rem, 2.2vw, 1.62rem);
  line-height: 1.5;
}

.article-hero-art {
  height: 530px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-small);
}

.article-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}

.article-hero-art.position-bottom img {
  object-position: 50% 78%;
}

.article-hero-art.position-top img {
  object-position: 50% 23%;
}

.article-layout {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px minmax(0, var(--reading));
  justify-content: center;
  gap: clamp(52px, 8vw, 110px);
  padding: clamp(72px, 10vw, 140px) 0;
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  align-self: start;
  padding-top: 4px;
}

.article-toc p {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.article-toc li {
  border-bottom: 1px solid var(--line);
}

.article-toc a {
  display: block;
  padding: 11px 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--forest);
}

.prose {
  min-width: 0;
  color: #363b36;
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2,
.prose h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-wrap: balance;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.prose h2 {
  margin: 2.6em 0 0.72em;
  font-size: clamp(2.35rem, 4.5vw, 3.85rem);
  line-height: 1.05;
}

.prose h3 {
  margin: 2em 0 0.62em;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.prose p,
.prose li {
  font-size: 1.04rem;
}

.prose p {
  margin: 0 0 1.3em;
}

.prose ul,
.prose ol {
  margin: 1.4em 0 1.8em;
  padding-left: 1.3em;
}

.prose li + li {
  margin-top: 0.62em;
}

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

.prose blockquote {
  margin: 2.5em 0;
  padding: 0.2em 0 0.2em 1.1em;
  border-left: 1px solid var(--line-strong);
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.32;
}

.prose figure {
  margin: 3em -7vw;
}

.prose figure img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center 61%;
  border-radius: 30px;
  box-shadow: var(--shadow-small);
}

.prose figcaption {
  max-width: 700px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.inline-callout {
  margin: 2.6em 0;
  padding: 28px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.inline-callout strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.inline-callout p {
  margin: 0;
  color: var(--muted);
}

.prompt-library {
  margin: 2.3em 0 3em;
  padding: 0;
  counter-reset: prompt;
  list-style: none;
  border-top: 1px solid var(--line);
}

.prompt-library li {
  position: relative;
  padding: 17px 0 17px 46px;
  counter-increment: prompt;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.24rem, 2.4vw, 1.75rem);
  line-height: 1.35;
}

.prompt-library li::before {
  content: counter(prompt, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 0;
  color: var(--sage);
  font-family: var(--sans);
  font-size: 0.69rem;
  font-weight: 680;
  letter-spacing: 0.08em;
}

.related-links {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
}

.related-links h2 {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.related-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.related-link {
  min-height: 180px;
  padding: 26px 28px 24px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.related-link + .related-link {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.related-link span {
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.related-link strong {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.2;
}

.related-link p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.features-index {
  padding: clamp(72px, 10vw, 130px) 0;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 9vw, 120px);
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.feature-row:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-row h2 {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.feature-row-copy p {
  margin-top: 0;
  color: var(--muted);
}

.feature-row-copy ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-row-copy li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
  margin: 2.5em 0;
  border-top: 1px solid var(--line);
}

.support-item {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.support-item h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.support-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Footer */
.site-footer {
  padding: 62px 0 36px;
  border-top: 1px solid var(--line);
  background: rgba(238, 227, 214, 0.42);
}

.footer-grid {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(150px, 0.55fr));
  gap: 48px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-column h2 {
  margin: 0 0 15px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--forest);
}

.footer-bottom {
  width: var(--page);
  margin: 46px auto 0;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-bottom a {
  color: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

/* 404 */
.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 90px 0;
  text-align: center;
}

.error-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 400;
  line-height: 0.8;
  color: var(--forest);
}

.error-page h2 {
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 400;
}

.error-page p {
  max-width: 560px;
  margin: 22px auto 0;
  color: var(--muted);
}

@media (max-width: 1040px) {
  :root {
    --page: min(100% - 40px, 900px);
  }

  .site-nav {
    gap: 17px;
  }

  .site-nav a:not(.nav-cta) {
    font-size: 0.82rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(390px, 1.12fr);
  }

  .hero-art-window {
    right: -22%;
  }

  .article-hero-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 760px);
  }

  .article-toc {
    position: static;
    display: none;
  }

  .prose figure {
    margin-inline: 0;
  }
}

@media (max-width: 850px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 17px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: calc(100vh - var(--header-height));
    padding: 24px max(24px, calc((100vw - var(--page)) / 2)) 34px;
    display: grid;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(246, 239, 230, 0.985);
    box-shadow: 0 28px 60px rgba(63, 47, 29, 0.14);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .menu-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav a:not(.nav-cta) {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400;
  }

  .site-nav .nav-cta {
    width: fit-content;
    margin-top: 20px;
    padding: 0 20px;
    border-bottom: 0;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 680;
  }

  .home-hero {
    min-height: auto;
    padding-top: 58px;
  }

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

  .hero-copy {
    padding-bottom: 0;
  }

  .display-title {
    font-size: clamp(4.2rem, 17vw, 7rem);
  }

  .hero-art {
    min-height: 620px;
    margin-top: 26px;
  }

  .hero-art-window {
    inset: 0 -14% -2% 8%;
    border-radius: 32px 0 0 32px;
  }

  .editorial-lead-grid,
  .notepad-rail,
  .customization-wrap,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .editorial-lead p {
    padding-left: 24px;
  }

  .split-editorial {
    display: flex;
    flex-direction: column;
    gap: 54px;
  }

  .split-editorial.is-reversed {
    flex-direction: column;
  }

  .split-editorial-media {
    width: 100%;
    min-height: 690px;
    order: 2;
  }

  .split-editorial-copy {
    width: 100%;
    order: 1;
  }

  .media-float.main,
  .split-editorial.is-reversed .media-float.main {
    inset: 0 0 0 8%;
  }

  .media-float.secondary,
  .split-editorial.is-reversed .media-float.secondary {
    right: auto;
    left: -2%;
  }

  .notepad-aside {
    position: static;
    padding-top: 0;
  }

  .customization-wrap {
    gap: 55px;
  }

  .customization-art {
    height: 680px;
  }

  .article-hero-art {
    height: 640px;
    width: min(540px, 100%);
  }

  .related-rail {
    grid-template-columns: 1fr;
  }

  .related-link,
  .related-link + .related-link {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-row h2 {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --page: calc(100vw - 30px);
  }

  body {
    font-size: 16.5px;
  }

  .brand {
    font-size: 1.1rem;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .display-title {
    font-size: clamp(3.85rem, 19vw, 5.5rem);
  }

  .section-title {
    font-size: clamp(2.8rem, 14vw, 4.25rem);
  }

  .article-title {
    font-size: clamp(3.4rem, 16vw, 5.2rem);
  }

  .lede,
  .article-deck {
    font-size: 1.12rem;
  }

  .home-hero {
    padding-top: 42px;
    padding-bottom: 54px;
  }

  .hero-art {
    min-height: 500px;
    margin-top: 14px;
  }

  .hero-art-window {
    inset: 0 -20% 0 4%;
    border-radius: 26px 0 0 26px;
  }

  .hero-note {
    display: none;
  }

  .button-row {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .editorial-lead,
  .home-section,
  .privacy-home,
  .final-cta {
    padding-block: 88px;
  }

  .editorial-lead h2 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .editorial-lead-grid {
    gap: 35px;
  }

  .split-editorial-media {
    min-height: 520px;
  }

  .media-float.main,
  .split-editorial.is-reversed .media-float.main {
    inset: 0 0 0 5%;
    border-radius: 24px;
  }

  .media-float.secondary,
  .split-editorial.is-reversed .media-float.secondary {
    width: 45%;
    height: 50%;
    bottom: -5%;
    border-width: 5px;
    border-radius: 18px;
  }

  .world-quote {
    padding-left: 20px;
  }

  .prompt-lines li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .notepad-use {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .customization-art {
    height: 520px;
    border-radius: 24px;
  }

  .article-hero {
    padding-top: 40px;
  }

  .article-hero-grid {
    gap: 48px;
  }

  .article-hero-art {
    height: 500px;
    border-radius: 24px;
  }

  .article-layout {
    padding-block: 78px;
  }

  .prose h2 {
    margin-top: 2.25em;
  }

  .prose figure {
    margin-block: 2.4em;
  }

  .prose figure img {
    max-height: 560px;
    border-radius: 22px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@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;
  }

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

/* Keep the homepage hero artwork focused on the product rather than repeating its embedded headline. */
.hero-art-window img {
  object-position: 50% 100%;
  transform: scale(1.2);
  transform-origin: 50% 100%;
}

@media (max-width: 600px) {
  .hero-art-window::before {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 0 0 auto;
    height: 64px;
    background: linear-gradient(to bottom, var(--paper) 0%, rgba(246, 239, 230, 0.96) 36%, rgba(246, 239, 230, 0) 100%);
    pointer-events: none;
  }
}

/* HOTFIX 2026-09-01: show full homepage hero artwork */
.home-hero .hero-art {
  min-height: 720px;
}

.home-hero .hero-art-window {
  inset: 0 -6% 0 0;
  overflow: visible;
  border-radius: 34px;
  box-shadow: none;
}

.home-hero .hero-art-window img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: none;
}

@media (max-width: 900px) {
  .home-hero .hero-art {
    min-height: 640px;
  }

  .home-hero .hero-art-window {
    inset: 0;
  }

  .home-hero .hero-art-window img {
    object-fit: contain;
    object-position: center top;
    transform: none;
  }
}

@media (max-width: 600px) {
  .home-hero .hero-art {
    min-height: 540px;
  }

  .home-hero .hero-art-window {
    inset: 0;
    overflow: visible;
  }

  .home-hero .hero-art-window::before {
    display: none;
  }

  .home-hero .hero-art-window img {
    object-fit: contain;
    object-position: center top;
    transform: none;
  }
}
