:root {
  --paper: #f6f1e8;
  --paper-2: #ebe7dc;
  --ink: #18211d;
  --muted: #5f665f;
  --pine: #244d3e;
  --pine-2: #3f6f5a;
  --clay: #a64f3f;
  --ochre: #b58a3c;
  --stone: #8c9086;
  --line: rgba(24, 33, 29, 0.16);
  --white: #fffdf8;
  --shadow: 0 18px 50px rgba(22, 28, 24, 0.14);
  --max: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(246, 241, 232, 1) 38%),
    var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(166, 79, 63, 0.45);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: var(--clay);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(246, 241, 232, 0.16);
  background: rgba(24, 33, 29, 0.84);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
}

.brand-note {
  color: rgba(255, 253, 248, 0.72);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 253, 248, 0.84);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--pine);
  color: var(--white);
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: #18372c;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
}

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

.button.light {
  border-color: rgba(255, 253, 248, 0.42);
  background: rgba(255, 253, 248, 0.14);
  color: var(--white);
}

.hero {
  min-height: calc(92vh - 72px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(14, 21, 17, 0.84) 0%, rgba(14, 21, 17, 0.58) 42%, rgba(14, 21, 17, 0.18) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--ochre);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.article-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.98;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: 20px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  padding: 84px 0;
}

.section.alt {
  background: var(--paper-2);
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2,
.page-hero h1,
.article-content h2,
.feature-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 520;
}

.section-head h2,
.feature-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
}

.section-head p,
.feature-copy p,
.page-hero p,
.article-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.compact-head {
  margin-bottom: 26px;
}

.dark .section-head p,
.dark .feature-copy p {
  color: rgba(255, 253, 248, 0.72);
}

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

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

.question-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.question-row:hover span {
  color: var(--clay);
}

.question-row span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.05;
}

.question-row p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

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

.card .meta {
  display: block;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  text-decoration: none;
}

.article-card:hover {
  border-color: rgba(166, 79, 63, 0.5);
  box-shadow: var(--shadow);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 52px;
  align-items: center;
}

.feature-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.list-check {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 26px;
}

.list-check li::before {
  position: absolute;
  left: 0;
  color: var(--clay);
  content: "•";
  font-size: 24px;
  line-height: 1;
}

.page-hero {
  padding: 88px 0 56px;
  background: var(--paper-2);
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(40px, 6vw, 72px);
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
}

.article-hero {
  padding: 72px 0 38px;
  background: var(--paper-2);
}

.article-hero h1 {
  color: var(--ink);
  font-size: clamp(38px, 6vw, 72px);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 58px;
  align-items: start;
}

.article-content {
  max-width: 760px;
}

.article-content h2 {
  margin: 44px 0 12px;
  font-size: 32px;
  line-height: 1.16;
}

.article-content p {
  margin: 0 0 18px;
  font-size: 18px;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  font-size: 18px;
}

.article-aside {
  position: sticky;
  top: 104px;
  max-height: calc(100vh - 128px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  scrollbar-width: thin;
}

.article-aside h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.article-aside a {
  display: block;
  color: var(--pine);
}

.callout {
  margin: 34px 0;
  padding: 24px;
  border-left: 4px solid var(--clay);
  background: rgba(166, 79, 63, 0.08);
}

.callout p {
  margin: 8px 0 0;
}

.pause-route {
  margin: 22px 0;
  padding: 18px 20px;
  border: 1px solid rgba(36, 75, 61, 0.14);
  border-radius: var(--radius);
  background: rgba(36, 75, 61, 0.045);
}

.pause-route strong {
  display: block;
  color: var(--pine);
}

.pause-route ol {
  margin: 12px 0 0;
  padding-left: 21px;
}

.pause-route li {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.55;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.65fr);
  gap: 44px;
  align-items: start;
}

.form-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: block;
  margin: 18px 0 7px;
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(24, 33, 29, 0.22);
  border-radius: 8px;
  background: #fffefa;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.checkbox-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
  line-height: 1.45;
}

.checkbox-field input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--pine);
}

.checkbox-field span {
  flex: 1;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.fine-print {
  color: var(--muted);
  font-size: 13px;
}

.footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: #151c18;
  color: rgba(255, 253, 248, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
}

.footer a {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus {
  top: 12px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 22px;
    background: rgba(24, 33, 29, 0.96);
  }

  .nav-links[data-open] {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .section-head,
  .feature-band,
  .article-layout,
  .form-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .article-aside {
    position: static;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 78vh;
  }

  .hero h1,
  .page-hero h1,
  .article-hero h1 {
    font-size: 42px;
  }

  .section {
    padding: 58px 0;
  }

  .hero p,
  .article-content p,
  .article-content ul,
  .article-content ol {
    font-size: 16px;
  }
}

/* Premium polish layer */
:root {
  --paper: #f7f0e4;
  --paper-2: #ece4d6;
  --paper-3: #fbf7ef;
  --ink: #17221d;
  --muted: #66706a;
  --pine: #244b3d;
  --pine-2: #5f7f6b;
  --clay: #9d4f3f;
  --ochre: #a9823d;
  --smoke: #d7d2c5;
  --line: rgba(23, 34, 29, 0.14);
  --white: #fffdf8;
  --shadow: 0 22px 70px rgba(22, 28, 24, 0.15);
  --soft-shadow: 0 10px 32px rgba(22, 28, 24, 0.08);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  font-family: var(--sans);
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(169, 130, 61, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(247, 240, 228, 1) 42%),
    var(--paper);
}

.brand-name,
.hero h1,
.page-hero h1,
.article-hero h1,
.section-head h2,
.article-content h2,
.feature-copy h2 {
  font-family: var(--serif);
}

.brand-name {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-note {
  letter-spacing: 0.12em;
}

.site-header {
  background: rgba(20, 31, 26, 0.88);
  border-bottom-color: rgba(247, 240, 228, 0.18);
}

.hero {
  min-height: calc(94vh - 72px);
  background-image:
    linear-gradient(90deg, rgba(12, 19, 16, 0.88) 0%, rgba(18, 27, 22, 0.68) 42%, rgba(18, 27, 22, 0.18) 100%),
    var(--hero-image);
  background-position: center;
}

.hero-inner {
  padding-bottom: 82px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  font-size: 21px;
}

.hero .hero-tagline {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 38px);
  font-family: var(--serif);
  line-height: 1.08;
}

.hero .hero-definition {
  max-width: 560px;
  margin-top: 18px;
  padding-left: 16px;
  border-left: 2px solid rgba(255, 253, 248, 0.46);
  color: rgba(255, 253, 248, 0.78);
  font-size: 16px;
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: rgba(255, 253, 248, 0.86);
  font-size: 13px;
  font-weight: 650;
}

.icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.button {
  min-height: 46px;
  padding-inline: 20px;
  box-shadow: 0 8px 20px rgba(19, 39, 31, 0.14);
}

.button.secondary {
  box-shadow: none;
}

.section {
  padding: 96px 0;
}

.section-head {
  margin-bottom: 44px;
}

.section-head h2,
.feature-copy h2 {
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 0.98;
}

.section-head p,
.feature-copy p,
.page-hero p,
.article-hero p {
  font-size: 18px;
  line-height: 1.7;
}

.card {
  border-color: rgba(23, 34, 29, 0.12);
  background: rgba(255, 253, 248, 0.8);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.icon-card {
  padding: 28px;
}

.icon-card > .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  color: var(--clay);
}

.feature-band {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.85fr);
}

.feature-image,
.page-hero-image,
.article-hero-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 29, 0.1);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.feature-image picture,
.page-hero-image picture,
.article-hero-image picture,
.article-card-image picture {
  display: block;
}

.feature-image::after,
.page-hero-image::after,
.article-hero-image::after,
.article-card-image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.25);
}

.feature-image img,
.page-hero-image img,
.article-hero-image img {
  width: 100%;
  object-fit: cover;
}

.page-hero {
  padding: 92px 0 70px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(236, 228, 214, 0.92)),
    var(--paper-2);
}

.page-hero-split,
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 48px;
  align-items: center;
}

.page-hero-image img {
  aspect-ratio: 4 / 3;
}

.article-hero-image img {
  aspect-ratio: 5 / 4;
}

.article-card {
  overflow: hidden;
  padding: 0;
  background: var(--paper-3);
}

.article-card > span:not(.article-card-image) {
  padding: 0 24px;
}

.article-card .card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 24px 24px;
  color: var(--pine);
  font-weight: 760;
}

.article-card .card-link .icon {
  width: 17px;
  height: 17px;
}

.article-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 24px;
}

.article-card-image img {
  width: 100%;
  aspect-ratio: 1.56 / 1;
  object-fit: cover;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.benefit-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list .icon {
  grid-row: span 2;
  color: var(--clay);
}

.benefit-list strong {
  font-size: 17px;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
}

.step-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.step-list div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 4px 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.step-list span {
  grid-row: span 2;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.step-list strong {
  font-size: 18px;
}

.step-list p {
  margin: 0;
  color: var(--muted);
}

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

.path-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(23, 34, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--soft-shadow);
  text-decoration: none;
}

.path-card:hover {
  border-color: rgba(157, 79, 63, 0.42);
  transform: translateY(-2px);
}

.path-card span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.path-card strong {
  font-size: 20px;
  line-height: 1.2;
}

.path-card p {
  margin: 0;
  color: var(--muted);
}

.first-visit-route {
  display: grid;
  gap: 26px;
}

.first-visit-route > div:first-child {
  max-width: 760px;
}

.first-visit-route > div:first-child p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.first-visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.first-visit-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 218px;
  padding: 22px;
  border: 1px solid rgba(23, 34, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  text-decoration: none;
}

.first-visit-card:hover {
  border-color: rgba(157, 79, 63, 0.42);
  transform: translateY(-2px);
}

.first-visit-card span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.first-visit-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.first-visit-card strong {
  font-size: 20px;
  line-height: 1.2;
}

.first-visit-card p {
  margin: 0;
  color: var(--muted);
}

.material-lens {
  display: grid;
  gap: 24px;
}

.material-lens > div:first-child,
.ritual-lens > div:first-child {
  max-width: 760px;
}

.material-lens > div:first-child p:last-child,
.ritual-lens > div:first-child p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.ritual-lens {
  display: grid;
  gap: 24px;
}

.material-lens-grid,
.ritual-lens-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.material-lens-card,
.ritual-lens-card {
  display: grid;
  gap: 10px;
  min-height: 185px;
  padding: 22px;
  border: 1px solid rgba(23, 34, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
}

.material-lens-card strong,
.ritual-lens-card strong {
  font-size: 19px;
}

.material-lens-card p,
.ritual-lens-card p {
  margin: 0;
  color: var(--muted);
}

.kit-panel {
  padding: 30px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.kit-panel h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.05;
}

.commerce-section {
  background: var(--paper-3);
}

.commerce-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: start;
}

.commerce-band.compact {
  align-items: center;
}

.commerce-band h2,
.next-step-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 62px);
  font-weight: 520;
  line-height: 0.98;
}

.commerce-band p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.commerce-steps {
  display: grid;
  gap: 14px;
}

.commerce-steps div,
.next-step-band {
  border: 1px solid rgba(23, 34, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--soft-shadow);
}

.commerce-steps div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 4px 16px;
  padding: 20px;
}

.commerce-steps span {
  grid-row: span 2;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
}

.commerce-steps strong {
  font-size: 18px;
}

.commerce-steps p {
  margin: 0;
  font-size: 15px;
}

.trust-path-section {
  padding-top: 72px;
}

.trust-path-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: start;
}

.trust-path-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 520;
  line-height: 1;
}

.trust-path-band p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.trust-path-links {
  display: grid;
  gap: 12px;
}

.trust-path-links a {
  display: grid;
  gap: 7px;
  padding: 18px 20px;
  border: 1px solid rgba(23, 34, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--soft-shadow);
  color: var(--ink);
  text-decoration: none;
}

.trust-path-links a:hover {
  border-color: rgba(157, 79, 63, 0.42);
  transform: translateY(-2px);
}

.trust-path-links strong {
  color: var(--pine);
}

.trust-path-links span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.next-step-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
  padding: 32px;
}

.next-step-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.next-step-links a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--pine);
  font-weight: 760;
  text-decoration: none;
}

.next-step-links a:hover {
  border-color: rgba(157, 79, 63, 0.42);
  color: var(--clay);
}

.list-check.compact {
  margin-top: 18px;
}

.article-hero {
  padding: 78px 0 38px;
}

.article-hero + .section {
  padding-top: 42px;
}

.article-accountability {
  max-width: 620px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(23, 34, 29, 0.16);
}

.article-accountability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.article-accountability-item {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.article-accountability-item small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-accountability-item a,
.article-accountability-item time {
  color: var(--pine);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.35;
}

.article-accountability-item a:hover {
  color: var(--clay);
}

.article-accountability > p {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.article-content {
  max-width: 780px;
}

.article-content > p,
.article-content li {
  font-size: 18px;
  line-height: 1.78;
}

.article-content h2 {
  scroll-margin-top: 98px;
  margin-top: 56px;
  font-size: clamp(31px, 3.1vw, 42px);
}

.article-section {
  margin-top: 56px;
}

.article-section + .article-section {
  padding-top: 48px;
  border-top: 1px solid rgba(23, 34, 29, 0.1);
}

.article-section h2 {
  margin-top: 0;
}

.article-section > :last-child {
  margin-bottom: 0;
}

.article-brief,
.reader-decision,
.editor-note,
.evidence-box,
.sources-notes,
.faq-section,
.article-aside,
.feature-band,
.question-list,
.path-grid,
.first-visit-route,
.first-visit-grid,
.grid,
.next-step-band,
.commerce-band,
.form-shell,
.article-content {
  scroll-margin-top: 98px;
}

.takeaway-box {
  padding: 28px;
  border: 1px solid rgba(36, 75, 61, 0.18);
  border-radius: 8px;
  background: rgba(36, 75, 61, 0.06);
}

.takeaway-box ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.article-brief {
  margin-bottom: 38px;
}

.brief-card {
  padding: 26px;
  border: 1px solid rgba(23, 34, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.brief-card.primary {
  border-color: rgba(36, 75, 61, 0.2);
  background: rgba(36, 75, 61, 0.07);
}

.brief-card p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.64;
}

.brief-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(36, 75, 61, 0.16);
}

.brief-points p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.reader-decision {
  margin: 0 0 42px;
}

.reader-decision h2 {
  margin-top: 0;
  font-size: clamp(26px, 2.3vw, 34px);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.decision-card {
  padding: 20px;
  border: 1px solid rgba(36, 75, 61, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.decision-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.editor-note,
.evidence-box,
.faq-section {
  margin-top: 34px;
}

.editor-note,
.evidence-box,
.practice-card {
  padding: 24px;
  border: 1px solid rgba(23, 34, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.editor-note p,
.evidence-box ul,
.practice-card ul {
  margin-bottom: 0;
}

.editor-note.compact {
  margin-top: 48px;
  padding: 18px 20px;
}

.editor-note.compact p {
  font-size: 15px;
  line-height: 1.66;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.practice-card ul {
  margin-top: 12px;
  padding-left: 22px;
}

.practice-card li {
  font-size: 16px;
  line-height: 1.65;
}

.evidence-box h2,
.faq-section h2 {
  margin-top: 0;
}

.sources-notes {
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid rgba(23, 34, 29, 0.12);
}

.sources-notes h2 {
  margin-top: 0;
}

.sources-intro {
  max-width: 670px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.source-list {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid rgba(23, 34, 29, 0.12);
  list-style: none;
}

.source-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.46fr);
  gap: 10px 22px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(23, 34, 29, 0.12);
}

.source-list .source-link {
  color: var(--pine);
  font-size: 16px;
  font-weight: 740;
  line-height: 1.45;
}

.source-list .source-link:hover {
  color: var(--clay);
}

.source-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.source-boundary {
  margin-top: 24px;
  padding-left: 18px;
  border-left: 3px solid rgba(36, 75, 61, 0.34);
}

.source-boundary p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.sources-notes h3 {
  margin: 30px 0 0;
  font-size: 20px;
}

.editorial-boundaries {
  margin: 14px 0 0;
  padding-left: 21px;
}

.editorial-boundaries li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.faq-section {
  display: grid;
  gap: 12px;
}

.faq-section details {
  border: 1px solid rgba(23, 34, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
}

.faq-section summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 760;
}

.faq-section details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.article-next-panel {
  margin: 36px 0 0;
  padding: 26px;
  border: 1px solid rgba(36, 75, 61, 0.16);
  border-radius: 8px;
  background: rgba(36, 75, 61, 0.06);
}

.article-next-panel h2 {
  margin: 4px 0 18px;
  font-size: clamp(28px, 3vw, 38px);
}

.article-next-links {
  display: grid;
  gap: 12px;
}

.article-next-links a {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(23, 34, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  color: var(--ink);
  text-decoration: none;
}

.article-next-links a:hover {
  border-color: rgba(166, 79, 63, 0.42);
  box-shadow: var(--soft-shadow);
}

.article-next-links span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-next-links strong {
  font-size: 18px;
  line-height: 1.25;
}

.article-next-reason {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.article-next-links em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}

.article-aside {
  padding: 24px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--soft-shadow);
}

.article-aside-section + .article-aside-section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 34, 29, 0.12);
}

.toc {
  display: grid;
  gap: 4px;
}

.aside-link-list {
  display: grid;
  gap: 6px;
}

.toc a,
.aside-link-list a {
  padding: 7px 0 7px 12px;
  border-left: 2px solid rgba(36, 75, 61, 0.14);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
  text-decoration: none;
}

.toc a:hover,
.aside-link-list a:hover {
  border-left-color: var(--clay);
  color: var(--pine);
}

.form-panel {
  border-color: rgba(23, 34, 29, 0.12);
}

input,
select,
textarea {
  background: var(--paper-3);
}

@media (max-width: 860px) {
  .section-head,
  .feature-band,
  .article-layout,
  .form-shell,
  .footer-grid,
  .commerce-band,
  .trust-path-band,
  .next-step-band,
  .path-grid,
  .first-visit-grid,
  .material-lens-grid,
  .ritual-lens-grid,
  .decision-grid,
  .question-row,
  .brief-points,
  .practice-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-split,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-image,
  .article-hero-image {
    max-width: 560px;
  }

  .article-card > span:not(.article-card-image) {
    padding: 0 20px;
  }

  .next-step-links {
    grid-template-columns: 1fr;
  }

  .source-list li {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 84vh;
  }

  .hero h1,
  .page-hero h1,
  .article-hero h1 {
    font-size: 42px;
    line-height: 0.98;
    text-wrap: balance;
  }

  .page-hero {
    padding: 56px 0 44px;
  }

  .article-hero {
    padding: 52px 0 30px;
  }

  .article-hero + .section {
    padding-top: 34px;
  }

  .article-accountability {
    margin-top: 20px;
    padding-top: 18px;
  }

  .article-accountability-list {
    gap: 13px 18px;
  }

  .article-accountability > p {
    margin-top: 13px;
    font-size: 13px;
    line-height: 1.52;
  }

  .page-hero-split,
  .article-hero-grid {
    gap: 28px;
  }

  .page-hero p,
  .article-hero p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.62;
  }

  .page-hero-image img,
  .article-hero-image img {
    aspect-ratio: 1.48 / 1;
  }

  .hero-notes {
    gap: 8px;
  }

  .hero-notes span {
    width: 100%;
    justify-content: flex-start;
  }

  .section {
    padding: 64px 0;
  }

  .section-head h2,
  .feature-copy h2 {
    font-size: 40px;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .actions {
    gap: 10px;
  }

  .actions .button {
    width: 100%;
  }

  .path-card {
    min-height: auto;
    padding: 20px;
  }

  .path-card span {
    font-size: 32px;
  }

  .article-card {
    min-height: auto;
    gap: 18px;
  }

  .article-card-image {
    margin-bottom: 18px;
  }

  .article-card .card-link {
    padding-bottom: 20px;
  }

  .form-panel,
  .callout,
  .next-step-band {
    padding: 22px;
  }

  .article-brief {
    margin-bottom: 30px;
  }

  .brief-card {
    padding: 20px;
  }

  .brief-card p,
  .brief-points p {
    font-size: 15px;
    line-height: 1.62;
  }

  .brief-points {
    gap: 14px;
    margin-top: 18px;
    padding-top: 18px;
  }

  .editor-note.compact {
    margin-top: 38px;
    padding: 18px;
  }

  .sources-notes {
    margin-top: 44px;
    padding-top: 36px;
  }

  .source-list li {
    gap: 6px;
    padding: 15px 0;
  }
}
