:root {
  --ink: #12231f;
  --ink-soft: #294039;
  --forest: #17372f;
  --forest-light: #31594f;
  --paper: #f4f0e7;
  --paper-deep: #e7e0d3;
  --surface: #fffdf8;
  --muted: #5f6c67;
  --line: #cec7b9;
  --coral: #e06145;
  --coral-dark: #ad3d28;
  --yellow: #f1c767;
  --white: #fffdf8;
  --max: 1220px;
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(22, 43, 36, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Aptos", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .2em; text-decoration-thickness: 1px; }
a:hover { color: var(--coral-dark); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
h1, h2, h3 { margin-top: 0; font-family: Iowan Old Style, Baskerville, Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; line-height: 1.02; text-wrap: balance; }
h1 { font-size: clamp(3.3rem, 7.5vw, 6.7rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.6rem); }
h3 { font-size: clamp(1.45rem, 2.5vw, 2rem); }
p { margin-top: 0; }
.shell { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 100; transform: translateY(-180%); border-radius: 999px; background: var(--ink); color: var(--white); padding: .75rem 1rem; }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin-bottom: 1rem; color: var(--coral-dark); font-size: .74rem; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow-light { color: #f3a08c; }

.status-bar { background: var(--ink); color: #e9eee9; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.status-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.status-inner span:first-child { display: inline-flex; align-items: center; gap: .55rem; }
.status-inner i { width: .5rem; height: .5rem; border-radius: 50%; background: #7ddc9d; box-shadow: 0 0 0 4px rgba(125, 220, 157, .15); }
.site-header { position: relative; z-index: 20; border-bottom: 1px solid rgba(18, 35, 31, .14); background: rgba(244, 240, 231, .94); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.wordmark { display: inline-flex; align-items: center; gap: .75rem; color: var(--ink); font-size: 1.08rem; font-weight: 850; letter-spacing: -.02em; text-decoration: none; }
.mark { width: 2.35rem; height: 2.35rem; display: grid; place-items: center; border-radius: 11px; background: var(--coral); color: #fff; font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: 1.5rem; font-style: italic; font-weight: 700; transform: rotate(-3deg); }
.primary-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: .35rem; }
.primary-nav a { min-height: 44px; display: inline-flex; align-items: center; border-radius: 999px; padding: .45rem .85rem; font-size: .9rem; font-weight: 700; text-decoration: none; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { background: rgba(18, 35, 31, .07); color: var(--ink); }

.hero { padding-block: clamp(1rem, 3vw, 2.5rem) clamp(3.5rem, 7vw, 6rem); }
.hero-media { position: relative; min-height: min(680px, 68vw); overflow: hidden; border-radius: var(--radius-lg); background: var(--forest); box-shadow: var(--shadow); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255, 253, 248, .22), transparent 52%); pointer-events: none; }
.hero-media > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.hero-panel { width: min(51%, 590px); position: absolute; z-index: 1; top: 50%; left: clamp(1.25rem, 5vw, 4.5rem); transform: translateY(-50%); }
.hero-panel h1 { margin-bottom: 1.25rem; }
.hero-panel h1 em { color: var(--coral-dark); font-weight: 500; }
.hero-panel > p:not(.eyebrow) { max-width: 540px; color: var(--ink-soft); font-size: clamp(1rem, 1.8vw, 1.22rem); }
.button-row { margin-top: 1.8rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: .75rem; border: 1px solid transparent; border-radius: 999px; padding: .8rem 1.25rem; font-size: .9rem; font-weight: 800; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); box-shadow: 0 10px 24px rgba(18, 35, 31, .2); }
.button-primary:hover { background: var(--coral-dark); color: #fff; }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--yellow); color: var(--ink); }
.text-link { font-weight: 800; }

.launch-note { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 253, 248, .58); padding: .65rem .8rem .65rem .65rem; }
.launch-note p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.note-label { border-radius: 999px; background: #ffe4a6; padding: .4rem .8rem; color: #654909; font-size: .68rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.trust-strip > div { min-height: 130px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 1rem; padding: 1.25rem clamp(1rem, 3vw, 2.25rem); border-right: 1px solid var(--line); }
.trust-strip > div:last-child { border-right: 0; }
.trust-number { grid-row: 1 / 3; align-self: center; color: var(--coral); font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: 1.5rem; }
.trust-strip strong { align-self: end; }
.trust-strip small { color: var(--muted); }

.section { padding-block: clamp(5rem, 9vw, 8rem); }
.section-heading { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-heading h2 { margin-bottom: 0; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .65fr); align-items: end; gap: 3rem; }
.split-heading > p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(290px, auto); gap: 1rem; }
.category-card { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255, 253, 248, .66); padding: clamp(1.4rem, 2.8vw, 2.2rem); }
.category-card h3 { margin-bottom: .75rem; }
.category-card p:not(.category-kicker) { color: var(--muted); }
.category-card a { font-size: .9rem; font-weight: 800; }
.category-featured { grid-column: span 2; background: var(--surface); }
.category-dark { border-color: var(--forest); background: var(--forest); color: var(--white); }
.category-dark p:not(.category-kicker) { color: #cbd8d3; }
.category-dark a { color: #fff; }
.category-index { align-self: flex-end; color: var(--coral-dark); font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: 1.2rem; }
.category-dark .category-index { color: #f3a08c; }
.category-kicker { margin-bottom: .65rem; color: var(--coral-dark); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.category-dark .category-kicker { color: #f3a08c; }

.section-dark { background: var(--forest); color: var(--white); }
.section-dark .split-heading > p { color: #cbd8d3; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.guide-card { min-height: 420px; display: flex; flex-direction: column; border-radius: var(--radius-md); background: #f8f4eb; color: var(--ink); padding: clamp(1.5rem, 3vw, 2.4rem); }
.guide-card h3 { margin: auto 0 1rem; }
.guide-card > p:last-of-type { color: var(--muted); }
.guide-card a { margin-top: 1.5rem; font-weight: 850; }
.guide-card-accent { background: var(--coral); color: #fff; }
.guide-card-accent > p:last-of-type { color: #fff2ed; }
.guide-meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.guide-card-accent .guide-meta { color: #fff2ed; }
.all-guides { margin-top: 2rem; }

.method-section { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.method-intro { position: sticky; top: 2rem; }
.method-intro > p:not(.eyebrow) { max-width: 530px; color: var(--muted); font-size: 1.08rem; }
.method-list { margin: 0; padding: 0; list-style: none; }
.method-list li { display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.method-list li:last-child { border-bottom: 1px solid var(--line); }
.method-list span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); color: #fff; font-weight: 850; }
.method-list h3 { margin-bottom: .45rem; font-size: 1.75rem; }
.method-list p { margin-bottom: 0; color: var(--muted); }
.closing-card { margin-bottom: clamp(5rem, 10vw, 9rem); display: grid; grid-template-columns: 1.1fr .7fr; gap: 3rem; border-radius: var(--radius-lg); background: #eddcaf; padding: clamp(2rem, 5vw, 4.5rem); }
.closing-card h2 { margin-bottom: 0; font-size: clamp(2.2rem, 4vw, 4rem); }
.closing-card > div:last-child { align-self: end; }
.closing-card > div:last-child p { color: var(--ink-soft); }

.page-hero { padding-block: clamp(4.5rem, 9vw, 8rem); border-bottom: 1px solid var(--line); }
.page-hero-inner { max-width: 930px; }
.page-hero h1 { margin-bottom: 1.5rem; }
.page-hero .lede { max-width: 760px; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.page-meta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.page-meta span { border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.34); padding: .45rem .75rem; font-size: .74rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.guides-index { padding-block: clamp(4rem, 8vw, 7rem); }
.guide-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.guide-index-card { min-height: 420px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); padding: clamp(1.5rem, 3vw, 2.5rem); }
.guide-index-card:nth-child(2) { background: #eddcaf; }
.guide-index-card h2 { margin: auto 0 1rem; font-size: clamp(2rem, 3vw, 2.7rem); }
.guide-index-card > p:not(.guide-meta) { color: var(--muted); }
.guide-index-card a { margin-top: 1.5rem; font-weight: 850; }
.guide-layout { padding-block: clamp(3rem, 7vw, 6rem); display: grid; grid-template-columns: minmax(210px, .38fr) minmax(0, 1fr); gap: clamp(2.5rem, 8vw, 7rem); align-items: start; }
.guide-aside { position: sticky; top: 2rem; border-top: 4px solid var(--coral); padding-top: 1.25rem; }
.guide-aside h2 { font-family: inherit; font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.guide-aside ul { margin: 0; padding: 0; list-style: none; }
.guide-aside li { padding: .55rem 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.article-body { max-width: 790px; }
.article-body > p:first-child { color: var(--ink-soft); font-size: 1.18rem; }
.article-body section { margin: 0 0 3.5rem; scroll-margin-top: 1rem; }
.article-body h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.article-body h3 { margin: 2rem 0 .65rem; font-size: 1.4rem; }
.article-body p, .article-body li { color: #344841; }
.article-body li { margin-bottom: .75rem; }
.check-panel { margin: 2rem 0; border-radius: var(--radius-md); background: var(--forest); color: #fff; padding: clamp(1.5rem, 4vw, 2.5rem); }
.check-panel h3 { margin-top: 0; color: #fff; }
.check-panel p, .check-panel li { color: #d9e3df; }
.callout { margin: 2rem 0; border-left: 5px solid var(--coral); background: #fff8ea; padding: 1.25rem 1.5rem; }
.callout p:last-child { margin-bottom: 0; }

.policy { padding-bottom: clamp(4rem, 8vw, 7rem); }
.policy .page-hero { border-bottom: 0; }
.policy-list section { display: grid; grid-template-columns: 86px minmax(0, 800px); gap: 2rem; padding-block: clamp(2rem, 5vw, 3.5rem); border-top: 1px solid var(--line); }
.policy-list .number { color: var(--coral-dark); font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: 2.4rem; }
.policy-list h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
.policy-list p { color: var(--muted); }
.contact-grid { padding-bottom: clamp(5rem, 9vw, 8rem); display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr); gap: 1rem; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); padding: clamp(1.5rem, 4vw, 3rem); overflow-wrap: anywhere; }
.contact-card-primary { background: var(--forest); color: #fff; }
.contact-card-primary .eyebrow { color: #f3a08c; }
.contact-card-primary a { color: #fff; font-size: clamp(1.1rem, 2.4vw, 1.5rem); font-weight: 800; }
.contact-card p:last-child { margin-bottom: 0; }
.about-grid { padding-block: clamp(4rem, 8vw, 7rem); display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.about-card { min-height: 300px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); padding: clamp(1.5rem, 4vw, 3rem); }
.about-card h2 { font-size: clamp(2rem, 4vw, 3rem); }
.about-card p { color: var(--muted); }
.about-card-wide { grid-column: 1 / -1; min-height: 240px; background: #eddcaf; }

.site-footer { background: var(--ink); color: var(--white); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-main { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 3rem; padding-bottom: 4rem; }
.wordmark-footer { margin-bottom: 1.25rem; color: #fff; }
.footer-main > div:first-child p { max-width: 360px; color: #bfcfc9; }
.footer-title { margin-bottom: .75rem; color: #f3a08c; font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.footer-main nav { display: flex; flex-direction: column; align-items: flex-start; }
.footer-main nav a { min-height: 40px; display: inline-flex; align-items: center; color: #dbe5e1; text-decoration: none; }
.footer-main nav a:hover { color: #fff; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.16); color: #9eb2aa; font-size: .78rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 900px) {
  .category-grid, .guide-grid, .guide-index-grid { grid-template-columns: repeat(2, 1fr); }
  .category-featured { grid-column: span 1; }
  .guide-grid > :last-child, .guide-index-grid > :last-child { grid-column: 1 / -1; }
  .method-section { grid-template-columns: 1fr; }
  .method-intro, .guide-aside { position: static; }
  .guide-layout { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .status-inner span:last-child { display: none; }
  .header-inner { align-items: flex-start; padding-block: .85rem; }
  .primary-nav { gap: 0; }
  .primary-nav a { min-height: 38px; padding: .3rem .55rem; font-size: .8rem; }
  .hero-media { min-height: 690px; display: flex; align-items: flex-end; }
  .hero-media > img { height: 46%; top: 0; object-position: 74% center; }
  .hero-media::after { background: linear-gradient(180deg, transparent 20%, var(--paper) 47%); }
  .hero-panel { width: auto; position: relative; top: auto; left: auto; transform: none; padding: 20rem 1.5rem 2.25rem; }
  .hero-panel h1 { font-size: clamp(3.1rem, 15vw, 5.3rem); }
  .launch-note { grid-template-columns: 1fr; border-radius: var(--radius-md); }
  .note-label { justify-self: start; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div { min-height: 100px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip > div:last-child { border-bottom: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .category-grid, .guide-grid, .guide-index-grid { grid-template-columns: 1fr; }
  .guide-grid > :last-child, .guide-index-grid > :last-child { grid-column: auto; }
  .guide-card { min-height: 360px; }
  .closing-card, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .about-card-wide { grid-column: auto; }
  .policy-list section { grid-template-columns: 1fr; gap: .5rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; }
}

@media (max-width: 500px) {
  .shell { width: min(calc(100% - 1.25rem), var(--max)); }
  .wordmark > span:last-child { display: none; }
  .primary-nav a:nth-child(2) { display: none; }
  .button-row { align-items: flex-start; flex-direction: column; }
  .hero-panel { padding-inline: 1.15rem; }
}

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

@media print {
  .status-bar, .site-header, .site-footer, .button-row, .launch-note { display: none; }
  body { background: #fff; color: #000; }
  .page-hero, .guide-layout { padding-block: 1rem; }
  .guide-layout { display: block; }
  .guide-aside { display: none; }
  a { text-decoration: none; }
}
