:root {
  --ink: #1c1d18;
  --ink-soft: #3c3f36;
  --paper: #f4f0e6;
  --paper-2: #ebe5d6;
  --white: #fbf8f1;
  --sage: #4d5c3a;
  --sage-deep: #354028;
  --sage-soft: #d7ddcc;
  --mark: #6d7c4f;
  --rule: #d3ccbb;
  --warn: #8a3b2a;
  --shadow: 0 18px 50px rgba(28, 29, 24, 0.08);
  --radius: 18px;
  --header-h: 88px;
  --font-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Figtree", "Segoe UI", system-ui, sans-serif;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, #e7ecd9 0%, transparent 50%),
    var(--paper);
  line-height: 1.6;
  font-size: 1.05rem;
  min-height: 100%;
}
img { max-width: 100%; display: block; }
a { color: var(--sage-deep); }
button, input, select, textarea { font: inherit; }

.skip {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--ink); color: var(--white);
  padding: .6rem 1rem; z-index: 100;
}
.skip:focus { top: 1rem; }

.wrap { width: min(var(--max), calc(100% - 2.4rem)); margin-inline: auto; }
.wide { width: min(1320px, calc(100% - 2.4rem)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--paper) 92%, white);
  border-bottom: 1px solid color-mix(in srgb, var(--rule) 80%, transparent);
  overflow: visible;
}
.header-inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: var(--header-h);
  padding: .55rem 0;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: inherit; flex: 0 0 auto; line-height: 0; }
.brand img { height: 52px; width: auto; max-width: 168px; display: block; }
.nav {
  display: flex; gap: .1rem; margin-left: auto; align-items: center; flex-wrap: nowrap;
}
.nav a {
  text-decoration: none; color: var(--ink-soft);
  padding: .5rem .85rem; border-radius: 999px; font-weight: 550;
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--sage-soft); color: var(--sage-deep); }
.header-cta { display: flex; gap: .5rem; align-items: center; margin-left: .4rem; }
.menu-btn {
  display: none; margin-left: auto;
  border: 1px solid var(--rule); background: var(--white);
  border-radius: 10px; padding: .45rem .7rem; cursor: pointer;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  text-decoration: none; border: 1px solid transparent;
  border-radius: 999px; padding: .72rem 1.15rem;
  font-weight: 600; letter-spacing: .01em; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.28) 48%, transparent 62%);
  transform: translateX(-120%);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(53,64,40,.18); }
.btn:hover::after { animation: sheen .7s ease; }
@keyframes sheen { to { transform: translateX(120%); } }
.btn-primary { background: var(--sage); color: #f7f4ea; }
.btn-primary:hover { background: var(--sage-deep); }
.btn-ghost { background: transparent; border-color: var(--sage); color: var(--sage-deep); }
.btn-dark { background: var(--ink); color: var(--paper); }

.hero {
  padding: 4.5rem 0 3.2rem;
}
.hero-photo {
  position: relative;
  min-height: clamp(22rem, 58vw, 36rem);
  display: flex; align-items: flex-end;
  background: #2a2c24 center/cover no-repeat;
  color: #f7f4ea;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,21,16,.46), rgba(20,21,16,.78));
}
.hero-photo .wide { position: relative; z-index: 1; padding-bottom: 3rem; }
.hero-photo h1 { color: #fbf8f1; }
.hero-photo .lede { color: #ece7d8; }
.hero-photo .kicker { color: #c9d4b0; }
.hero-photo .btn-ghost, .page-hero.with-photo .btn-ghost {
  border-color: #f4efe4; color: #f4efe4; background: rgba(20,21,16,.28);
  backdrop-filter: blur(8px);
}
.hero-photo .btn-ghost:hover, .page-hero.with-photo .btn-ghost:hover {
  background: #f4efe4; color: var(--sage-deep);
}
.btn-attn {
  background: var(--sage); color: #f7f4ea; border-color: var(--sage);
  box-shadow: 0 8px 22px rgba(53,64,40,.22);
}
.btn-attn:hover { background: var(--sage-deep); color: #f7f4ea; }
.page-hero.with-photo {
  min-height: 18rem;
  display: flex; align-items: flex-end;
  background: #2a2c24 center/cover no-repeat;
  color: #fbf8f1;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.page-hero.with-photo::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,21,16,.62), rgba(20,21,16,.28));
  background: linear-gradient(180deg, rgba(28,29,24,.15), rgba(28,29,24,.7));
}
.page-hero.with-photo .wide { position: relative; z-index: 1; padding: 3.4rem 0 1.25rem; }
.page-hero.with-photo h1 { color: #fbf8f1; margin-bottom: 0; }
.page-hero.with-photo .lede, .page-hero.with-photo .kicker { color: #e7eadc; }
.section.after-photo {
  padding-top: 2rem;
  background: var(--paper);
  position: relative;
  z-index: 2;
}
.media {
  width: 100%; height: 160px; object-fit: cover;
  border-radius: 12px; margin-bottom: .85rem;
  background: var(--paper-2);
}
.product .media {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: #f3eee3;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
.cover {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--rule);
  object-fit: contain;
  background: #f6f1e6;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: end;
}
.kicker {
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sage); font-weight: 700; margin: 0 0 .8rem;
}
h1, h2, h3 { font-family: var(--font-serif); font-weight: 520; letter-spacing: -0.03em; line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 6vw, 5.1rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin: 0 0 .8rem; }
h3 { font-size: 1.35rem; margin: 0 0 .4rem; }
.underline {
  background-image: linear-gradient(transparent 62%, color-mix(in srgb, var(--mark) 45%, transparent) 62%);
}
.lede { font-size: 1.22rem; color: var(--ink-soft); max-width: 38rem; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 28px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.hero-card ol { margin: .6rem 0 1.1rem; padding-left: 1.15rem; color: var(--ink-soft); }

.section { padding: 2.4rem 0; }
.section-muted { background: color-mix(in srgb, var(--paper-2) 65%, transparent); }
.section-head { display: flex; justify-content: space-between; gap: 1rem; align-items: end; margin-bottom: 1.1rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem 1.4rem;
}
.card p { color: var(--ink-soft); margin: .35rem 0 0; }
.icon {
  width: 2.6rem; height: 2.6rem;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--sage-soft);
  color: var(--sage-deep);
  margin-bottom: .85rem;
}
.icon svg { display: block; }

.belief {
  display: grid;
  grid-template-columns: 1fr;
  gap: .7rem;
  max-width: 46rem;
}
.belief blockquote { max-width: 40rem; }
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  margin: 0;
}
.muted { color: var(--ink-soft); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.product {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 1.2rem 1.25rem 1.25rem;
  display: flex; flex-direction: column; min-height: 100%;
  text-decoration: none; color: inherit;
}
.product:hover { border-color: var(--sage); box-shadow: var(--shadow); }
.tag {
  display: inline-flex; width: fit-content;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  background: var(--sage-soft); color: var(--sage-deep);
  padding: .28rem .62rem; border-radius: 999px; font-weight: 700;
  margin: 0 0 .75rem;
  line-height: 1.2;
}
.card .tag + h3,
.product .tag + h3 { margin-top: .15rem; }
.price { font-weight: 750; font-size: 1.35rem; margin-top: auto; padding-top: 1rem; color: var(--ink); }
.price s, .lp-price s { color: #6b6e64; font-weight: 500; font-size: .55em; margin-right: .35rem; }

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 2.4rem 0 2rem;
  background: var(--sage-deep);
  color: #e7eadc;
}
.site-footer a { color: #e7eadc; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem; }
.tiny { font-size: .88rem; opacity: .85; }

.page-hero { padding: 2.4rem 0 1rem; }
.hero-photo { padding: 0; }
.hero-photo .wide { padding-top: 3.2rem; padding-bottom: 2rem; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.6rem; align-items: start; }
.prose { max-width: 42rem; }
.prose p { color: var(--ink-soft); margin: 0 0 .7rem; }
.prose blockquote { margin: 0 0 1rem; }
.prose h2 { margin: 1.2rem 0 .55rem; }
.prose h3 { margin: 1.1rem 0 .4rem; }
.prose ul { margin: 0 0 .9rem; padding-left: 1.15rem; }
.prose li { margin: .2rem 0; }
.list-plain { padding: 0; list-style: none; margin: 0; }
.list-plain li { padding: .55rem 0; border-bottom: 1px solid var(--rule); }
.list-plain li:last-child { border-bottom: none; padding-bottom: 0; }
.card h3 { margin-top: 0; letter-spacing: 0; font-family: var(--font-sans); font-weight: 650; }

.form {
  display: grid; gap: .85rem;
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 24px; padding: 1.3rem;
}
label { display: grid; gap: .3rem; font-weight: 600; font-size: .92rem; }
input, select, textarea {
  border: 1px solid var(--rule); border-radius: 12px;
  padding: .7rem .8rem; background: var(--white); color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.notice {
  padding: .9rem 1rem; border-radius: 12px;
  background: var(--sage-soft); color: var(--sage-deep);
}
.notice.error { background: #f3d9d3; color: var(--warn); }

.service {
  display: grid; grid-template-columns: 2.6rem 1fr auto; gap: 1rem;
  align-items: center; background: var(--white);
  border: 1px solid var(--rule); border-radius: 20px; padding: 1rem 1.15rem;
}
.service .icon { margin-bottom: 0; }
.service .media { display: none; }
.service .amt { font-weight: 750; white-space: nowrap; text-align: right; align-self: center; }
.service h3 { margin: 0 0 .25rem; }
.service p { margin: 0; }

.buy-bar {
  position: sticky; bottom: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: var(--ink); color: var(--paper);
  padding: .85rem 1rem; border-radius: 16px;
}
.buy-bar .btn-primary { background: #c9d4b0; color: var(--ink); }

.lp { padding-bottom: 3rem; }
.lp-hero { padding: 2.2rem 0 0; }
.lp-hero h1 { max-width: 18ch; }
.lp-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: start; }
.buy {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 22px; padding: 1.3rem 1.35rem 1.4rem;
  box-shadow: var(--shadow);
}
.buy .price { padding-top: .2rem; margin: .2rem 0 .5rem; }
.buy p { margin: 0 0 .7rem; }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem;
  margin: 1.4rem 0 1.8rem;
}
.stat { background: var(--white); border: 1px solid var(--rule); border-radius: 16px; padding: .85rem 1rem; }
.stat b { display: block; font-family: var(--font-serif); font-size: 1.55rem; letter-spacing: -0.03em; }
.stat span { color: var(--ink-soft); font-size: .88rem; }
.catalogue {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .45rem .9rem;
  margin: 0 0 1.6rem; padding: 0; list-style: none;
}
.catalogue li {
  display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: baseline;
  padding: .45rem 0; border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
}
.catalogue li strong { color: var(--sage-deep); font-variant-numeric: tabular-nums; }
.quotes { display: grid; gap: .8rem; margin: 0 0 1.6rem; }
.quote {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 16px; padding: 1rem 1.1rem;
}
.quote p { margin: 0 0 .45rem; }
.faq { margin: 0 0 1.4rem; }
.faq details {
  border-bottom: 1px solid var(--rule); padding: .7rem 0;
}
.faq summary { cursor: pointer; font-weight: 650; }
.faq details p { margin: .45rem 0 0; color: var(--ink-soft); }
.chapters { display: grid; gap: .8rem; margin: 0 0 1.6rem; }
.chapter {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 16px; padding: 1rem 1.15rem;
}
.chapter span { color: var(--sage); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }

@media (max-width: 860px) {
  .lp-grid, .stats, .catalogue,
  .hero-grid, .belief, .split, .cards, .product-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .buy { position: static; }
  .nav, .header-cta { display: none; }
  .nav.open, .header-cta.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: var(--header-h);
    background: var(--paper); padding: 1rem 1.2rem 1.2rem;
    border-bottom: 1px solid var(--rule);
  }
  .header-cta.open { top: auto; position: static; margin: .4rem 0 0; }
  .menu-btn { display: inline-flex; }
  .service { grid-template-columns: 2.6rem 1fr; }
  .service .amt { grid-column: 2; text-align: left; }
}

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

.measure { max-width: 44rem; }
.buy-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 18px; padding: 1rem 1.15rem; margin: 1.1rem 0 1.2rem;
}
.buy-bar .price { margin: 0; padding: 0; }
.lp-hero { padding: 2rem 0 .2rem; }
.lp-hero .measure { margin: 0 auto; padding: 0 1.4rem; }
.lp .section .measure { margin: 0 auto; padding: 0 1.4rem 2rem; }
.lp .measure h2 { margin-top: 2rem; }
.lp .measure ul { color: var(--ink-soft); padding-left: 1.15rem; }
.lp .measure li { margin: .28rem 0; }

.lp-hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.2rem;
  align-items: center; max-width: 72rem; margin: 0 auto;
}
.lp-hero-grid .measure { max-width: none; padding: 0; }
.cover-frame { margin: 0; }
.cover-frame img {
  width: 100%; height: auto; display: block;
  border-radius: 20px; border: 1px solid var(--rule);
  background: #f4efe4;
}
@media (max-width: 860px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
}

/* publication landing pages */
.lp .wide { max-width: 78rem; }
.lp-hero.full { padding: 3.2rem 0 2.6rem; }
.lp-hero.full .lp-hero-grid { max-width: 78rem; }
.lp-kicker { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: #b08a3e; font-weight: 700; margin: 0 0 .8rem; }
.gold-rule { width: 3.2rem; height: 3px; background: #c4a35a; margin: .9rem 0 1.1rem; }
.lp-price { font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--ink); margin: 1.1rem 0 .35rem; letter-spacing: -0.03em; }
.features-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.feat-card { background: var(--white); border: 1px solid var(--rule); border-radius: 16px; padding: 1.25rem 1.2rem 1.35rem; }
.feat-card .n { color: #b08a3e; font-size: .75rem; letter-spacing: .14em; font-weight: 700; }
.feat-card h3 { margin: .7rem 0 .35rem; font-size: 1.2rem; }
.band { background: #3f4b3c; color: #f3eee3; padding: 3.6rem 0; }
.band h2 { color: #fbf8f1; }
.band .muted, .band p { color: #e4dece; }
.band-grid { display: grid; grid-template-columns: 8.5rem 1fr; gap: 1.2rem 1.6rem; align-items: start; }
.band-label { color: #d4b36a; font-weight: 650; padding-top: .35rem; }
.pills { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.pill { background: rgba(255,255,255,.08); border-radius: 12px; padding: .8rem 1rem; color: #f7f3e8; }
.illus { position: relative; min-height: 18rem; display: grid; place-items: center; }
.illus-card {
  width: min(100%, 22rem); background: #fff; border: 1px solid #ddd6c6;
  border-radius: 18px; padding: 1.6rem 1.7rem 1.8rem; position: relative;
  box-shadow: 10px 12px 0 #354028;
}
.illus-card .n { letter-spacing: .14em; color: var(--sage); font-size: .78rem; font-weight: 700; }
.illus-card .big { font-family: var(--font-serif); font-size: 4.2rem; color: var(--sage-deep); line-height: .9; margin: .7rem 0 .35rem; }
.illus-lines { display: grid; gap: .35rem; margin-top: 1rem; }
.illus-lines i { display: block; height: 8px; background: #e4ead8; border-radius: 99px; }
.clipboard {
  width: min(100%, 24rem); background: #e7eedd; border: 8px solid #6b7a5d;
  border-radius: 14px; padding: 1.6rem 1.4rem 1.3rem; position: relative;
  box-shadow: 12px 14px 0 #354028;
}
.clipboard::before {
  content: ""; position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 42px; height: 28px; background: #c4a35a; border-radius: 6px;
}
.clipboard::after {
  content: ""; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; border: 3px solid #354028; border-radius: 50%; background: #e7eedd;
}
.cycle-badge {
  width: min(100%, 18rem); aspect-ratio: 1; margin-left: auto;
  border: 6px solid #4d5c3a; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background:
    radial-gradient(circle at center, #fbf8f1 62%, transparent 63%),
    repeating-conic-gradient(from 0deg, #c4a35a 0 1deg, transparent 1deg 8deg);
  background-color: #fbf8f1;
}
.cycle-badge strong { display: block; font-family: var(--font-serif); font-size: 1.65rem; color: var(--sage-deep); line-height: 1.15; }
@media (max-width: 860px) {
  .features-4, .pills, .band-grid { grid-template-columns: 1fr; }
}


/* css polish layer */
::selection { background: #cfd8bc; color: #1c1d18; }
body {
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(215,221,204,.7), transparent 55%),
    radial-gradient(700px 380px at 100% 0%, rgba(196,163,90,.12), transparent 46%),
    var(--paper);
}
body::before {
  content: ""; pointer-events: none; position: fixed; inset: 0; z-index: 80; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.site-header {
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(28,29,24,.08);
  background: color-mix(in srgb, var(--paper) 82%, white);
}
.nav a { transition: background .2s ease, color .2s ease, transform .2s ease; }
.nav a:hover { transform: translateY(-1px); }
.card, .product, .service, .feat-card, .quote, .chapter, .illus-card {
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .25s ease;
}
.card:hover, .product:hover, .feat-card:hover, .chapter:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(28,29,24,.1);
  border-color: color-mix(in srgb, var(--sage) 45%, var(--rule));
}
.service:hover { border-color: var(--sage); box-shadow: 0 16px 32px rgba(28,29,24,.08); }
.gold-rule {
  background: linear-gradient(90deg, #c4a35a, #ead9a8 70%, transparent);
  transform-origin: left;
  animation: draw .8s ease both;
}
@keyframes draw { from { transform: scaleX(.2); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }
.underline {
  background-size: 100% .42em;
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-image: linear-gradient(90deg, color-mix(in srgb, var(--mark) 55%, transparent), color-mix(in srgb, #c4a35a 35%, transparent));
}
.hero-photo h1, .page-hero.with-photo h1, .lp-hero h1 {
  text-wrap: balance;
}
.lp-price { color: var(--ink); }
.pill { transition: transform .25s ease, background .25s ease; }
.pill:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); }
.cycle-badge {
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateY(-8px); } }
.illus-card { animation: float 7s ease-in-out infinite; }
.clipboard { animation: float 6.5s ease-in-out infinite; }
.reveal {
  opacity: 0; transform: translateY(18px);
  animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards;
}
.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .16s; }
.reveal:nth-child(4) { animation-delay: .24s; }
@keyframes rise { to { opacity: 1; transform: none; } }
.form input, .form textarea, .form select {
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--sage) 18%, transparent);
}
@media (prefers-reduced-motion: reduce) {
  .btn::after, .gold-rule, .cycle-badge, .illus-card, .clipboard, .reveal { animation: none !important; }
  .card:hover, .product:hover, .feat-card:hover { transform: none; }
  html { scroll-behavior: auto; }
}

.note-hero {
  position: relative; min-height: 22rem;
  display: flex; align-items: flex-end;
  background: #2a2c24 center/cover no-repeat;
  color: #fbf8f1;
}
.note-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,21,16,.2), rgba(20,21,16,.78));
}
.note-hero .wide { position: relative; z-index: 1; padding: 4rem 0 2.2rem; }
.note-hero h1 { color: #fbf8f1; max-width: 18ch; text-wrap: balance; }
.note-body { max-width: 42rem; padding: 2.4rem 0 3.5rem; }
.note-body h2 { margin: 2rem 0 .6rem; }
.note-body p { color: var(--ink-soft); margin: 0 0 .95rem; font-size: 1.08rem; }
.note-body .lede-graf {
  color: var(--ink); font-size: 1.22rem; line-height: 1.55;
}
.note-body .lede-graf::first-letter {
  font-family: var(--font-serif); float: left; font-size: 3.4rem; line-height: .75;
  padding: .18rem .45rem 0 0; color: var(--sage-deep);
}
.note-body ul, .note-body ol { color: var(--ink-soft); margin: 0 0 1.1rem; padding-left: 1.2rem; }
.note-body li { margin: .3rem 0; }
.note-end { margin-top: 2.2rem; padding-top: 1.2rem; border-top: 1px solid var(--rule); }
.note-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.note-card {
  display: grid; grid-template-columns: 9rem 1fr; gap: 1rem;
  background: var(--white); border: 1px solid var(--rule); border-radius: 18px;
  overflow: hidden; text-decoration: none; color: inherit;
  min-height: 8.5rem;
}
.note-card img { width: 9rem; height: 100%; object-fit: cover; }
.note-card div { padding: 1rem 1rem 1rem 0; }
.note-card p { color: var(--ink-soft); margin: .3rem 0 0; font-size: .95rem; }
@media (max-width: 860px) {
  .note-grid { grid-template-columns: 1fr; }
  .note-card { grid-template-columns: 1fr; }
  .note-card img { width: 100%; height: 10rem; }
}

.about-page .section { padding: 3.4rem 0; }
.about-page .split { gap: 2.6rem; }
.about-page .prose p { margin-bottom: 1.1rem; }
.about-page h2 { margin-top: 2.1rem; }
.about-page .after-photo { padding-top: 2.6rem; }

.header-cta .btn-attn::after {
  animation: sheen-loop 2.4s ease-in-out infinite;
}
@keyframes sheen-loop {
  0% { transform: translateX(-130%); }
  55%, 100% { transform: translateX(130%); }
}
@media (prefers-reduced-motion: reduce) {
  .header-cta .btn-attn::after { animation: none !important; }
}
