:root {
  --ink: #2c3339;
  --muted: #5f6870;
  --paper: #f6f7f8;
  --paper-deep: #edf0f2;
  --green: #c52e4b;
  --green-2: #a91f3a;
  --mint: #fdecef;
  --coral: #ce3d58;
  --amber: #f6a9b7;
  --line: #d9dfe3;
  --charcoal: #313a42;
  --white: #ffffff;
  --shadow-soft: 0 8px 24px rgba(44, 51, 57, 0.06);
  --shadow: 0 14px 38px rgba(44, 51, 57, 0.09);
  --shadow-lift: 0 18px 42px rgba(197, 46, 75, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius: 16px;
  --content-width: 1120px;
  --page-gutter: 40px;
  --shell: min(var(--content-width), calc(100% - var(--page-gutter)));
  --reading-width: 820px;
  --title-section: clamp(1.52rem, 2.35vw, 2.25rem);
  --title-feature: clamp(1.7rem, 2.75vw, 2.4rem);
  --title-article: clamp(1.42rem, 2.35vw, 1.95rem);
  --title-card: clamp(1.24rem, 2.05vw, 1.75rem);
  --title-page: clamp(1.92rem, 3.35vw, 3.05rem);
  --title-page-mobile: clamp(1.82rem, 7.8vw, 2.4rem);
  --space-section: clamp(42px, 4.5vw, 60px);
  --space-layout: clamp(22px, 3.5vw, 48px);
  --panel-inline: clamp(22px, 3vw, 34px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  overflow-wrap: anywhere;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.quick-answer,
.directory-panel,
.article-toc,
.prose,
.editorial-method,
.article-index,
.faq-list,
.related-strip {
  width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--green);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.site-header::before {
  display: block;
  height: 10px;
  background: var(--charcoal);
  content: "";
}

.search-mast {
  background: var(--white);
}

.mast-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(480px, 1.45fr);
  min-height: 84px;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
  color: var(--ink);
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--green);
  font-size: 1.78rem;
  font-weight: 850;
  letter-spacing: -0.055em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.brand-dot {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 0;
  border-radius: 12px 20px 11px 17px;
  background: var(--coral);
  box-shadow: 7px 7px 0 #f7ccd4;
  transform: rotate(-5deg);
}

.brand-dot::before {
  color: var(--white);
  content: "N";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(5deg);
}

.brand-dot::after {
  position: absolute;
  width: 24px;
  height: 8px;
  right: -5px;
  bottom: 7px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  border-radius: 0 0 0 8px;
  content: "";
  transform: rotate(5deg);
}

.header-search,
.hero-finds-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-width: 0;
  border: 3px solid var(--coral);
  background: var(--white);
}

.header-search {
  min-height: 52px;
  box-shadow: var(--shadow-soft);
}

.search-scope {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 0 15px;
  border-right: 2px solid var(--coral);
  color: #3d3d43;
  font-size: 0.78rem;
  font-weight: 800;
}

.header-search input,
.hero-finds-search input {
  min-width: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.header-search input {
  padding: 0 18px;
  font-size: 0.9rem;
}

.header-search input::placeholder,
.hero-finds-search input::placeholder {
  color: #97979e;
  opacity: 1;
}

.header-search input:focus,
.hero-finds-search input:focus {
  box-shadow: inset 0 0 0 2px rgba(232, 78, 104, 0.2);
}

.header-search button,
.hero-finds-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: var(--coral);
  color: white;
}

.header-search button {
  width: 66px;
}

.search-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  position: absolute;
  width: 8px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
  transform-origin: left center;
}

.nav-band {
  border-bottom: 4px solid var(--coral);
  background: var(--white);
}

.nav-inner {
  display: flex;
  min-height: 48px;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
}

.site-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.site-nav a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 9px 16px;
  border-radius: 0;
  color: #414147;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #fff0f3;
  color: var(--green-2);
}

.site-nav a.is-current,
.site-nav a[aria-current="page"] {
  background: var(--coral);
  color: white;
}

.nav-note {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.6vw, 4.4rem);
}

h2 {
  margin-bottom: 15px;
  font-size: var(--title-section);
}

h3 {
  font-size: 1.12rem;
}

.eyebrow,
.note-label {
  display: inline-block;
  color: var(--green-2);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero {
  padding: 38px 0 42px;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(232, 78, 104, 0.08) 50%, transparent 50.2%),
    linear-gradient(rgba(232, 78, 104, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 78, 104, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 84% 18%, rgba(137, 194, 229, 0.25), transparent 30%),
    linear-gradient(120deg, transparent 58%, rgba(234, 244, 251, 0.72) 58%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  background-size: auto, 44px 44px, 44px 44px, auto, auto, auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
}

.hero-copy h1 {
  margin-top: 10px;
  font-size: clamp(2.65rem, 3.7vw, 3.9rem);
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 18px;
  color: #4d4d55;
  font-size: clamp(1.06rem, 2vw, 1.34rem);
  line-height: 1.6;
}

.trust-note {
  max-width: 760px;
  padding-left: 18px;
  border-left: 4px solid var(--coral);
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.button-primary {
  background: var(--green);
  color: white;
  box-shadow: var(--shadow-soft);
}

.button-primary:hover {
  background: var(--green-2);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--coral);
  background: #fff5f7;
  color: var(--green-2);
}

.button-quiet {
  color: var(--green);
}

.button-paper {
  margin-top: 10px;
  background: #fff5f7;
  color: var(--green);
}

.hero-search-card {
  position: relative;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--coral);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.hero-search-card::after {
  position: absolute;
  z-index: -1;
  width: 42%;
  height: 36%;
  right: -14px;
  bottom: -14px;
  border-right: 2px solid rgba(232, 78, 104, 0.3);
  border-bottom: 2px solid rgba(232, 78, 104, 0.3);
  content: "";
}

.search-card-kicker {
  color: var(--green-2);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-search-card h2 {
  margin: 12px 0 10px;
  font-size: var(--title-article);
}

.hero-search-card > p {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-finds-search {
  min-height: 62px;
  margin: 18px 0 14px;
}

.hero-finds-search .search-scope {
  min-width: 78px;
}

.hero-finds-search input {
  padding: 0 15px;
  font-size: 0.86rem;
}

.hero-finds-search button {
  gap: 10px;
  padding: 0 19px;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-finds-search .search-icon {
  width: 17px;
  height: 17px;
}

.quick-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  font-size: 0.72rem;
}

.quick-searches > span {
  color: var(--muted);
  font-weight: 700;
}

.quick-searches a {
  padding: 5px 9px;
  border: 1px solid #ead7dc;
  background: #fff5f7;
  color: var(--green-2);
  font-weight: 800;
  text-decoration: none;
}

.quick-searches a:hover,
.quick-searches a:focus-visible {
  border-color: var(--coral);
}

.hero-search-card .search-handoff-note {
  margin: 0;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
}

.hub-link {
  display: inline-flex;
  margin-top: 13px;
  color: var(--green-2);
  font-size: 0.8rem;
  font-weight: 850;
  text-underline-offset: 4px;
}

.quick-home {
  margin-top: 14px;
}

.quick-answer {
  display: grid;
  grid-template-columns: 130px minmax(180px, 0.4fr) minmax(280px, 1fr);
  align-items: start;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quick-answer h2 {
  margin: 2px 0 0;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.quick-answer p {
  margin: 0;
  color: #55555e;
}

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

.section-tint {
  background: var(--white);
}

.split-intro,
.section-heading,
.search-desk,
.save-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(300px, 1.28fr);
  gap: var(--space-layout);
}

.body-copy {
  max-width: 700px;
  color: #55555e;
  font-size: 1.08rem;
}

.section-heading {
  align-items: end;
  margin-bottom: 22px;
}

.section-heading > p {
  max-width: 650px;
  margin-bottom: 8px;
  color: var(--muted);
}

.card-link,
.text-link {
  color: var(--green);
  font-weight: 800;
  text-underline-offset: 4px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 9px;
  font-size: 0.82rem;
}

.directory-panel {
  padding: clamp(22px, 3.2vw, 34px);
  border: 1px solid #e7cfd5;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.directory-head {
  max-width: 780px;
  margin-bottom: 18px;
}

.directory-head h2 {
  margin: 8px 0 10px;
  font-size: var(--title-feature);
}

.directory-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.icon-directory-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.icon-category-card {
  display: flex;
  min-width: 0;
  min-height: 138px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  padding: 14px 10px;
  border: 1px solid #e9cfd6;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.icon-category-card:hover,
.icon-category-card:focus-visible {
  border-color: var(--coral);
  color: var(--green-2);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.icon-category-card:focus-visible {
  outline: 3px solid rgba(232, 78, 104, 0.24);
  outline-offset: 3px;
}

.icon-tile {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 2px solid var(--coral);
  border-radius: 50%;
  background: var(--white);
  color: var(--coral);
  box-shadow: inset 0 0 0 5px #fff6f8;
  line-height: 1;
}

.line-icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  color: currentColor;
}

.icon-category-name {
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.2;
}

.directory-note,
.directory-inline-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.directory-note {
  margin: 18px 0 0;
  padding-top: 12px;
  border-top: 1px solid #ecdde1;
}

.directory-grid-wide {
  margin-top: 18px;
}

.directory-inline-note {
  margin: 14px 0 0;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.step-grid li {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.step-grid span {
  display: grid;
  width: 64px;
  height: 64px;
  margin-inline: auto;
  place-items: center;
  border: 2px solid var(--coral);
  border-radius: 50%;
  background: #fff7f9;
  color: var(--green-2);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 800;
}

.step-grid h3 {
  margin: 14px 0 8px;
}

.step-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-dark {
  border-block: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.eyebrow-light {
  color: var(--green-2);
}

.save-grid {
  align-items: start;
  padding-inline: var(--panel-inline);
}

.save-grid > div > p {
  max-width: 470px;
  color: var(--muted);
}

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

.ledger-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.ledger-list span {
  color: var(--green-2);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

.search-desk {
  align-items: start;
  margin-block: 18px;
  padding-block: clamp(28px, 3.4vw, 40px);
  padding-inline: var(--panel-inline);
  border: 1px solid #ecdde1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff7f9 0%, #f7fafc 100%);
}

.search-copy > p {
  max-width: 600px;
  color: var(--muted);
}

.search-route-note {
  align-self: start;
  margin-top: 8px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--coral);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.search-route-note ol {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: search-route;
}

.search-route-note li {
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  counter-increment: search-route;
}

.search-route-note li strong::before {
  margin-right: 8px;
  color: var(--coral);
  content: "0" counter(search-route);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.66rem;
}

.search-route-note li strong {
  font-size: 0.78rem;
}

.search-route-note li span {
  color: var(--muted);
  font-size: 0.8rem;
}

.closing-callout {
  text-align: center;
}

.closing-callout h2 {
  max-width: 780px;
  margin: 10px auto 14px;
}

.closing-callout > p {
  max-width: 700px;
  margin-inline: auto;
  color: var(--muted);
}

.closing-callout .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 38px 0 18px;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 36px;
}

.brand-footer {
  color: var(--ink);
}

.brand-footer > span:last-child {
  font-size: 1.08rem;
  font-weight: 850;
}

.brand-footer .brand-dot {
  background: var(--coral);
  box-shadow: 5px 5px 0 #f7ccd4;
}

.brand-footer .brand-dot::before {
  color: var(--white);
}

.brand-footer .brand-dot::after {
  border-color: var(--white);
}

.footer-trust {
  max-width: 520px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 16px;
  align-content: start;
}

.footer-nav a {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--green-2);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.62rem;
}

.article-shell {
  max-width: none;
}

.breadcrumbs {
  padding-top: 20px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.68rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  content: "/";
}

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

.page-hero h1 {
  margin-top: 14px;
  font-size: var(--title-page);
}

.page-lede {
  max-width: 760px;
  color: #55555e;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.page-hero .article-meta {
  max-width: 760px;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.article-shell > .quick-answer {
  margin-bottom: 44px;
}

.article-toc {
  max-width: none;
  margin: -24px auto 38px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.article-toc strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-toc ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc a {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

.prose {
  max-width: none;
  margin-inline: auto;
}

.prose section {
  margin: 0 0 42px;
}

.prose section > p,
.prose section > blockquote,
.prose section > .plain-steps,
.prose section > .tick-list {
  max-width: var(--reading-width);
}

.prose .wide-section {
  width: 100%;
  margin-left: 0;
  transform: none;
}

.prose h2 {
  margin-bottom: 14px;
  font-size: var(--title-article);
}

.prose h3 {
  letter-spacing: -0.025em;
}

.prose p,
.prose li {
  color: #56565f;
}

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

.prose blockquote {
  margin: 18px 0;
  padding: 20px;
  border-left: 4px solid var(--coral);
  background: var(--white);
  color: var(--green);
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1.45;
}

.article-index {
  padding-bottom: 56px;
}

.editorial-method {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  margin: -22px 0 40px;
  padding: 22px;
  border: 1px solid #edc7d0;
  border-radius: var(--radius);
  background: var(--white);
}

.editorial-method h2,
.editorial-method p {
  margin-top: 0;
}

.editorial-method p {
  color: var(--muted);
}

.editorial-method p:last-of-type {
  margin-bottom: 12px;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.article-card {
  display: flex;
  min-width: 0;
  min-height: 230px;
  flex-direction: column;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.article-card:hover {
  border-color: #e7bcc6;
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.article-card-featured {
  grid-column: 1 / -1;
  min-height: 210px;
  background: var(--white);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--coral);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-card h2 {
  margin: 14px 0 8px;
  font-size: var(--title-card);
}

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

.article-card .card-link {
  margin-top: auto;
}

.decision-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.decision-row {
  display: grid;
  grid-template-columns: minmax(145px, 0.65fr) minmax(180px, 0.9fr) minmax(230px, 1.45fr);
}

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

.decision-row > * {
  min-width: 0;
  margin: 0;
  padding: 14px 16px;
}

.decision-row strong {
  background: #fff4f6;
}

.decision-row span,
.decision-row p {
  color: var(--muted);
  font-size: 0.84rem;
}

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

.evidence-card {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.evidence-card h3 {
  margin: 12px 0 8px;
}

.evidence-card p {
  margin: 0;
  font-size: 0.9rem;
}

.action-callout {
  padding: 24px;
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.action-callout h3 {
  margin: 0 0 12px;
}

.action-callout p:last-child {
  margin-bottom: 0;
}

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

.numbered-notes article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.numbered-notes span {
  color: var(--coral);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.72rem;
}

.numbered-notes h3 {
  margin: 20px 0 8px;
}

.numbered-notes p {
  margin: 0;
  font-size: 0.83rem;
}

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

.comparison article,
.example-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-good,
.example-good {
  border-top: 4px solid var(--green) !important;
}

.comparison-weak,
.example-weak {
  border-top: 4px solid var(--coral) !important;
}

.comparison h3,
.example-card h3 {
  margin: 10px 0;
}

.comparison p,
.example-card p {
  margin: 0;
  font-size: 0.9rem;
}

.tick-list {
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  margin: 0;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line);
}

.tick-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "—";
  font-weight: 800;
}

.warning-list li::before {
  color: var(--coral);
}

.plain-steps {
  padding-left: 22px;
}

.plain-steps li {
  padding: 6px 0 6px 8px;
}

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

.check-sheet li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.check-sheet li span {
  width: 22px;
  height: 22px;
  border: 2px solid var(--green);
  border-radius: 4px;
  background: var(--white);
}

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

.score-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.score-grid strong {
  display: block;
  color: var(--coral);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 1.45rem;
}

.score-grid span {
  display: block;
  margin: 6px 0;
  color: var(--ink);
  font-weight: 800;
}

.score-grid p {
  margin: 0;
  font-size: 0.84rem;
}

.weight-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.weight-table [role="row"] {
  display: grid;
  grid-template-columns: 150px 1fr;
}

.weight-table [role="row"] + [role="row"] {
  border-top: 1px solid var(--line);
}

.weight-table span,
.weight-table strong {
  padding: 12px 15px;
  font-size: 0.86rem;
}

.weight-table strong {
  background: var(--green);
  color: white;
}

.faq-list {
  max-width: none;
  margin: 0 auto 50px;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  color: var(--coral);
  content: "+";
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details div {
  max-width: 720px;
  padding: 0 0 15px;
}

.faq-list p {
  color: #56565f;
}

.related-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) 1fr;
  gap: 24px;
  margin: 16px 0 52px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.related-strip h2 {
  margin: 9px 0 0;
  font-size: 1.14rem;
}

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

.related-link {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.related-link:hover,
.related-link:focus-visible {
  border-color: #e7bcc6;
  background: #fff5f7;
  color: var(--green-2);
}

.error-page {
  min-height: 65vh;
  padding-block: 68px;
}

.error-page h1 {
  max-width: 680px;
  margin-top: 15px;
  font-size: var(--title-page);
}

.error-page > p {
  max-width: 600px;
  color: var(--muted);
}

#nss-whatsapp-float {
  position: fixed;
  z-index: 2147483000;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(9, 46, 28, 0.3);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

#nss-whatsapp-float:hover,
#nss-whatsapp-float:focus-visible {
  color: var(--white);
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 16px 36px rgba(9, 46, 28, 0.38);
  transform: translateY(-2px) scale(1.04);
}

#nss-whatsapp-float img {
  display: block;
  width: 32px;
  height: 32px;
}

#nss-whatsapp-float .nss-whatsapp-label {
  position: absolute;
  top: 50%;
  right: 68px;
  width: max-content;
  max-width: 210px;
  padding: 0.55rem 0.7rem;
  border-radius: 9px;
  background: #17231d;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font: 600 13px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

#nss-whatsapp-float:hover .nss-whatsapp-label,
#nss-whatsapp-float:focus-visible .nss-whatsapp-label {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 600px) {
  #nss-whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  #nss-whatsapp-float .nss-whatsapp-label {
    display: none;
  }
}

@media print {
  #nss-whatsapp-float {
    display: none !important;
  }
}

@media (max-width: 980px) {
  :root {
    --page-gutter: 32px;
  }

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

  .quick-answer {
    grid-template-columns: 110px 1fr;
  }

  .quick-answer p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 28px;
    --space-section: 38px;
    --space-layout: 18px;
    --panel-inline: 18px;
  }

  body {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .home-hero {
    padding: 34px 0 30px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.15rem);
  }

  .page-hero h1,
  .error-page h1 {
    font-size: var(--title-page-mobile);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .quick-answer {
    display: block;
    padding: 18px;
  }

  .quick-answer h2 {
    margin: 6px 0 8px;
  }

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

  .split-intro,
  .section-heading,
  .search-desk,
  .save-grid,
  .editorial-method,
  .footer-grid,
  .related-strip {
    grid-template-columns: 1fr;
    gap: var(--space-layout);
  }

  .article-card-grid,
  .evidence-grid,
  .step-grid,
  .comparison,
  .score-grid,
  .numbered-notes,
  .related-links {
    grid-template-columns: 1fr;
  }

  .ledger-list,
  .search-route-note {
    margin-top: 0;
  }

  .step-grid h3 {
    margin-top: 16px;
  }

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

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 36px 0 28px;
  }

  .article-shell > .quick-answer {
    margin-bottom: 36px;
  }

  .editorial-method {
    margin-top: -14px;
    padding: 18px;
  }

  .article-toc {
    margin: -18px auto 34px;
    padding: 16px;
  }

  .article-toc ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .article-card-featured {
    grid-column: auto;
  }

  .article-card {
    min-height: 0;
    padding: 18px;
  }

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

  .decision-row > * {
    padding: 12px 16px;
  }

  .decision-row strong {
    padding-top: 17px;
  }

  .decision-row p {
    padding-bottom: 17px;
  }

  .prose section {
    margin-bottom: 34px;
  }

  .weight-table [role="row"] {
    grid-template-columns: 105px 1fr;
  }

  .weight-table span,
  .weight-table strong {
    padding: 12px;
    font-size: 0.78rem;
  }

}

@media (max-width: 390px) {
  :root {
    --page-gutter: 22px;
  }

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

@media (max-width: 980px) {
  .mast-inner {
    grid-template-columns: 1fr;
    gap: 13px;
    min-height: 0;
    padding: 13px 0;
  }

  .header-search {
    width: 100%;
  }

  .nav-inner {
    min-width: 0;
    overflow: hidden;
  }

  .site-nav {
    justify-content: flex-start;
    margin-top: 0;
    padding-bottom: 3px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-color: var(--coral) transparent;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav a {
    scroll-snap-align: start;
  }

  .site-nav::-webkit-scrollbar {
    height: 3px;
  }

  .site-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--coral);
  }

  .nav-note {
    display: none;
  }

  .hero-search-card {
    width: min(100%, 680px);
  }

  .icon-directory-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .brand-copy strong {
    font-size: 1.45rem;
  }

  .brand-copy small {
    display: none;
  }

  .brand-dot {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 10px 17px 9px 14px;
    box-shadow: 5px 5px 0 #f7ccd4;
  }

  .brand-dot::before {
    font-size: 1.15rem;
  }

  .brand-dot::after {
    width: 20px;
    right: -4px;
    bottom: 6px;
  }

  .header-search {
    grid-template-columns: 74px minmax(0, 1fr) 54px;
    min-height: 50px;
    border-width: 2px;
  }

  .header-search .search-scope {
    min-width: 74px;
    padding-inline: 9px;
    border-right-width: 1px;
    font-size: 0.66rem;
  }

  .header-search input {
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .header-search button {
    width: 54px;
  }

  .site-nav a {
    min-height: 46px;
    padding: 8px 15px;
    font-size: 0.72rem;
  }

  .nav-inner,
  .nav-band {
    min-height: 46px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-search-card {
    padding: 18px;
  }

  .directory-panel {
    padding: 18px 15px;
  }

  .directory-head {
    margin-bottom: 15px;
  }

  .icon-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .icon-category-card {
    min-height: 124px;
    padding: 12px 8px;
  }

  .icon-tile {
    width: 62px;
    height: 62px;
  }

  .hero-search-card::after {
    right: 0;
    bottom: 0;
  }

  .hero-finds-search {
    grid-template-columns: 67px minmax(0, 1fr) 54px;
    min-height: 56px;
    border-width: 2px;
  }

  .hero-finds-search .search-scope {
    min-width: 67px;
    padding-inline: 8px;
    border-right-width: 1px;
    font-size: 0.66rem;
  }

  .hero-finds-search input {
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .hero-finds-search button {
    width: 54px;
    padding: 0;
  }

  .hero-finds-search button > span:first-child {
    display: none;
  }

  .search-route-note li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
