:root {
  --ink: #17201d;
  --deep: #13261f;
  --forest: #234f40;
  --moss: #587364;
  --rust: #a34f34;
  --clay: #c77853;
  --sand: #e5d6bc;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --soft: #ece6da;
  --line: rgba(23, 32, 29, .16);
  --white-line: rgba(255, 255, 255, .18);
  --shadow: 0 24px 70px rgba(25, 37, 32, .12);
  --shell: min(1220px, calc(100vw - 48px));
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body.cwf-site {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.66;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.cwf-site a { color: inherit; text-decoration: none; }
body.cwf-site img { max-width: 100%; height: auto; }
body.cwf-site button, body.cwf-site input { font: inherit; }
body.cwf-site h1, body.cwf-site h2, body.cwf-site h3, body.cwf-site p { margin-top: 0; }
body.cwf-site h1, body.cwf-site h2, body.cwf-site h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.04;
}
body.cwf-site h1 { font-size: clamp(50px, 7.2vw, 104px); }
body.cwf-site h2 { font-size: clamp(36px, 4.5vw, 64px); }
body.cwf-site h3 { font-size: clamp(23px, 2.2vw, 31px); }
.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 980px; }
.section { padding: clamp(84px, 9vw, 136px) 0; }
.section-soft { background: var(--cream); }
.section-dark { color: #fff; background: var(--deep); }
.textile-grid { position: relative; isolation: isolate; }
.textile-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 11px 11px;
  pointer-events: none;
}
.textile-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 75% 20%, rgba(199,120,83,.22), transparent 32%);
  pointer-events: none;
}
.eyebrow {
  margin-bottom: 18px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow-light { color: #f0b897; }
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  color: #fff !important;
  background: var(--deep);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,253,248,.94);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand > span:last-child { display: grid; gap: 1px; }
.brand strong { font-size: 12px; letter-spacing: .12em; line-height: 1.2; }
.brand small { color: var(--moss); font-size: 12px; letter-spacing: .06em; }
.brand-mark { display: grid; grid-template-columns: repeat(4, 5px); align-items: stretch; width: 30px; height: 34px; gap: 2px; transform: skewY(-9deg); }
.brand-mark i { display: block; background: var(--forest); }
.brand-mark i:nth-child(2) { background: var(--clay); }
.brand-mark i:nth-child(3) { background: var(--sand); }
.brand-mark i:nth-child(4) { background: var(--ink); }
.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(14px, 1.8vw, 28px); font-size: 13px; font-weight: 700; letter-spacing: .025em; }
.primary-nav > a { position: relative; white-space: nowrap; }
.primary-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--rust); transition: right .2s ease; }
.primary-nav > a:hover::after, .primary-nav > a:focus::after { right: 0; }
.nav-cta { padding: 11px 17px; color: #fff !important; background: var(--deep); border-radius: 999px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-toggle span { display: block; height: 1px; margin: 5px 0; background: var(--ink); }

/* Shared controls */
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .button:focus { transform: translateY(-2px); }
.button-primary { color: #fff !important; background: var(--rust); }
.button-primary:hover { background: #873f2c; }
.button-ghost { border-color: rgba(255,255,255,.32); color: #fff !important; background: rgba(255,255,255,.04); }
.button-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.button-light { color: var(--deep) !important; background: #fff; }
.button-ghost-light { color: #fff !important; border-color: var(--white-line); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--rust) !important; font-size: 13px; font-weight: 800; letter-spacing: .035em; }
.text-link span { font-size: 18px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .65fr); align-items: end; gap: 60px; margin-bottom: 48px; }
.section-heading h2 { max-width: 790px; margin-bottom: 0; }
.section-heading > p { margin-bottom: 2px; color: #58615d; font-size: 18px; }
.section-heading.compact { align-items: center; }
.section-heading.compact .text-link { justify-self: end; }

/* Home */
.home-hero { padding: clamp(80px, 9vw, 130px) 0 0; color: #fff; background: var(--deep); }
.home-hero::after { background: radial-gradient(circle at 82% 20%, rgba(199,120,83,.22), transparent 35%), radial-gradient(circle at 10% 75%, rgba(88,115,100,.22), transparent 34%); }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, .65fr); gap: clamp(50px, 8vw, 120px); align-items: center; }
.hero-copy h1 { max-width: 900px; margin-bottom: 28px; }
.hero-lead { max-width: 760px; margin-bottom: 32px; font-size: clamp(20px, 2.1vw, 28px); line-height: 1.5; }
.home-hero .hero-lead { color: rgba(255,255,255,.78); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 0; margin: 26px 0 0; list-style: none; color: rgba(255,255,255,.68); font-size: 12px; letter-spacing: .045em; text-transform: uppercase; }
.hero-trust li::before { content: "•"; margin-right: 9px; color: #f0b897; }
.hero-panel { position: relative; padding: 36px 34px 30px; border: 1px solid var(--white-line); border-radius: var(--radius); background: rgba(255,255,255,.06); box-shadow: 0 30px 90px rgba(0,0,0,.2); overflow: hidden; }
.swatch-stack { display: flex; height: 88px; margin: -36px -34px 30px; }
.swatch-stack span { flex: 1; background: repeating-linear-gradient(45deg, #617266 0 3px, #53645a 3px 6px); }
.swatch-stack span:nth-child(2) { background: repeating-linear-gradient(-45deg, #a15d46 0 4px, #834734 4px 8px); }
.swatch-stack span:nth-child(3) { background: repeating-linear-gradient(90deg, #d5c4a7 0 2px, #c7b291 2px 7px); }
.panel-label { margin-bottom: 18px; color: var(--rust); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.home-hero .panel-label { color: #f0b897; }
.hero-panel ol { padding: 0; margin: 0; list-style: none; }
.hero-panel li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; padding: 15px 0; border-top: 1px solid var(--white-line); }
.hero-panel li b { color: #f0b897; font-size: 12px; }
.hero-panel li span { font-size: 15px; line-height: 1.45; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(70px, 8vw, 120px); border-top: 1px solid var(--white-line); }
.hero-stats > div { display: flex; align-items: baseline; gap: 13px; padding: 28px 24px 32px 0; border-right: 1px solid var(--white-line); }
.hero-stats > div + div { padding-left: 28px; }
.hero-stats > div:last-child { border-right: 0; }
.hero-stats strong { color: #f0b897; font-family: Georgia, serif; font-size: 44px; font-weight: 400; }
.hero-stats span { color: rgba(255,255,255,.66); font-size: 13px; }
.cluster-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.cluster-card { position: relative; grid-column: span 4; min-height: 330px; padding: 32px; border: 1px solid var(--line); background: #fff; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.cluster-card:nth-child(1), .cluster-card:nth-child(5) { grid-column: span 5; }
.cluster-card:nth-child(2), .cluster-card:nth-child(6) { grid-column: span 3; }
.cluster-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cluster-card::after { content: ""; position: absolute; right: -55px; bottom: -60px; width: 170px; height: 170px; border: 22px solid var(--soft); border-radius: 50%; opacity: .7; }
.cluster-card h3 { position: relative; z-index: 1; max-width: 330px; margin-bottom: 18px; }
.cluster-card p:not(.card-kicker) { position: relative; z-index: 1; max-width: 390px; color: #5b625e; font-size: 15px; }
.cluster-card .text-link { position: absolute; z-index: 2; left: 32px; bottom: 28px; }
.cluster-number { float: right; color: #c5bba8; font-family: Georgia, serif; font-size: 45px; line-height: 1; }
.card-kicker { color: var(--rust); font-size: 11px; font-weight: 850; letter-spacing: .11em; line-height: 1.4; text-transform: uppercase; }
.evidence-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr); gap: clamp(60px, 9vw, 130px); align-items: start; }
.evidence-layout h2 { max-width: 720px; }
.large-copy { color: rgba(255,255,255,.72); font-size: 20px; line-height: 1.65; }
.evidence-about-link { margin-top: 8px; color: #f0b897 !important; }
.evidence-list article { display: grid; grid-template-columns: 45px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--white-line); }
.evidence-list article:first-child { border-top: 1px solid var(--white-line); }
.evidence-list span { color: #f0b897; font-size: 12px; font-weight: 800; }
.evidence-list h3 { margin-bottom: 8px; color: #fff; font-family: inherit; font-size: 17px; font-weight: 800; letter-spacing: 0; }
.evidence-list p { margin-bottom: 0; color: rgba(255,255,255,.66); font-size: 14px; }
.guide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.guide-card { position: relative; min-height: 285px; padding: 28px 28px 60px; border: 1px solid var(--line); background: #fff; }
.guide-card h3 { margin-bottom: 17px; font-size: 25px; }
.guide-card h3 a::after { content: ""; position: absolute; inset: 0; }
.guide-card > p:not(.card-kicker) { color: #646a67; font-size: 14px; line-height: 1.55; }
.card-arrow { position: absolute; right: 22px; bottom: 20px; z-index: 2; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--rust) !important; }
.cta-section { background: var(--sand); }
.cta-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); gap: clamp(50px, 8vw, 110px); align-items: center; }
.cta-panel h2 { max-width: 770px; margin-bottom: 0; }
.cta-panel > div:last-child > p { margin-bottom: 25px; color: #4f5853; font-size: 17px; }

/* Page and library */
.page-hero { padding: clamp(72px, 8vw, 116px) 0; background: var(--cream); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr); gap: clamp(50px, 8vw, 110px); align-items: end; }
.page-hero h1 { margin-bottom: 0; font-size: clamp(50px, 7vw, 88px); }
.page-hero .hero-lead { margin-bottom: 8px; color: #4e5954; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 38px; color: #737a76; font-size: 12px; letter-spacing: .04em; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 4px; }
.count-line { margin: 24px 0 0; color: var(--moss); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.count-line strong { margin-right: 5px; color: var(--rust); font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.page-hero-library { padding-bottom: 82px; text-align: center; }
.page-hero-library h1 { margin-bottom: 22px; }
.page-hero-library .hero-lead { margin-inline: auto; }
.guide-search { position: relative; display: block; max-width: 720px; margin: 36px auto 0; }
.guide-search input { width: 100%; height: 62px; padding: 12px 58px 12px 22px; border: 1px solid var(--line); border-radius: 0; outline: none; background: #fff; box-shadow: 0 14px 40px rgba(24,34,30,.07); }
.guide-search input:focus { border-color: var(--rust); }
.guide-search b { position: absolute; top: 50%; right: 22px; color: var(--rust); font-size: 26px; transform: translateY(-50%); }
.library { padding-top: 80px; }
.library-group { margin-bottom: 100px; }
.library-group[hidden] { display: none; }
.library-heading { display: grid; grid-template-columns: minmax(0, .8fr) minmax(320px, .9fr); gap: 55px; align-items: end; margin-bottom: 30px; }
.library-heading h2 { margin-bottom: 0; font-size: 48px; }
.library-heading > p { margin-bottom: 4px; color: #626b66; }
.library-list { border-top: 1px solid var(--ink); }
.library-item { display: grid; grid-template-columns: 58px 1fr 40px; align-items: center; gap: 18px; min-height: 68px; border-bottom: 1px solid var(--line); transition: background .2s ease; }
.library-item:hover { background: var(--cream); }
.library-item[hidden] { display: none; }
.library-item > span { color: var(--rust); font-size: 11px; font-weight: 800; }
.library-item strong { font-size: 16px; }
.library-item i { color: var(--rust); font-style: normal; font-size: 20px; }
.no-results { padding: 35px; border: 1px solid var(--line); text-align: center; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 0; border-top: 1px solid var(--ink); list-style: none; }
.process-grid li { min-height: 240px; padding: 26px 24px; border-right: 1px solid var(--line); }
.process-grid li:last-child { border-right: 0; }
.process-grid li > span { color: var(--rust); font-size: 12px; font-weight: 800; }
.process-grid h3 { margin: 45px 0 15px; font-family: inherit; font-size: 17px; font-weight: 800; line-height: 1.35; letter-spacing: 0; }
.process-grid p { color: #68706c; font-size: 14px; }

/* Guide article */
.guide-hero { padding: clamp(70px, 8vw, 118px) 0; color: #fff; background: var(--deep); }
.guide-hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .65fr); gap: clamp(55px, 8vw, 110px); align-items: end; }
.guide-hero h1 { max-width: 880px; margin-bottom: 27px; font-size: clamp(46px, 6vw, 80px); }
.guide-hero .breadcrumbs { color: rgba(255,255,255,.54); }
.question-line { margin-bottom: 0; color: rgba(255,255,255,.72); font-size: 21px; }
.quick-answer { padding: 30px; border-left: 4px solid var(--clay); background: rgba(255,255,255,.07); }
.quick-answer .panel-label { display: flex; align-items: center; gap: 10px; color: #f0b897; }
.quick-answer .panel-label span { width: 22px; height: 1px; background: #f0b897; }
.quick-answer > p:not(.panel-label) { font-family: Georgia, serif; font-size: 21px; line-height: 1.55; }
.quick-answer .text-link { color: #f0b897 !important; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 270px; gap: clamp(60px, 8vw, 110px); align-items: start; padding-top: 80px; padding-bottom: 110px; }
.article-main { min-width: 0; }
.article-section { padding: 20px 0 85px; border-bottom: 1px solid var(--line); }
.article-section + .article-section { padding-top: 80px; }
.article-section h2 { max-width: 780px; margin-bottom: 28px; font-size: clamp(36px, 4.2vw, 58px); }
.article-section > p:not(.eyebrow) { max-width: 810px; color: #4c5551; font-size: 18px; }
.intro-copy strong { color: var(--ink); }
.decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 38px; border-top: 1px solid var(--ink); }
.decision-grid article { padding: 25px 22px 10px 0; }
.decision-grid article + article { padding-left: 22px; border-left: 1px solid var(--line); }
.decision-grid span { color: var(--rust); font-size: 11px; font-weight: 800; }
.decision-grid h3 { min-height: 58px; margin: 42px 0 14px; font-family: inherit; font-size: 17px; font-weight: 800; line-height: 1.35; letter-spacing: 0; }
.decision-grid p { color: #68706c; font-size: 14px; }
.checklist { margin-top: 36px; border-top: 1px solid var(--ink); }
.checklist article { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.checklist article > span { color: var(--rust); font-size: 12px; font-weight: 800; }
.checklist h3 { margin-bottom: 7px; font-family: inherit; font-size: 18px; font-weight: 800; line-height: 1.35; letter-spacing: 0; }
.checklist p { margin-bottom: 0; color: #68706c; font-size: 14px; }
.brief-note { display: grid; grid-template-columns: 210px 1fr; gap: 30px; margin-top: 30px; padding: 24px; background: var(--cream); }
.brief-note strong { color: var(--rust); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.brief-note p { margin-bottom: 0; font-size: 15px; }
.section-inset { margin: 0 -34px; padding-inline: 34px; background: var(--cream); border-bottom: 0; }
.workflow-list { padding: 0; margin: 30px 0 0; list-style: none; border-top: 1px solid var(--ink); }
.workflow-list li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.workflow-list li > span { color: var(--rust); font-size: 12px; font-weight: 800; }
.workflow-list h3 { margin-bottom: 6px; font-family: inherit; font-size: 18px; font-weight: 800; line-height: 1.35; letter-spacing: 0; }
.workflow-list p { margin-bottom: 0; color: #65706a; font-size: 14px; }
.risk-list { margin-top: 32px; border-top: 1px solid var(--ink); }
.risk-list article { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.risk-list span { display: block; margin-bottom: 7px; color: var(--rust); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.risk-list h3 { margin-bottom: 0; font-family: inherit; font-size: 17px; font-weight: 800; line-height: 1.42; letter-spacing: 0; }
.risk-list p { margin-bottom: 0; color: #58615d; font-size: 15px; }
.source-section { margin-top: 80px; padding: 48px !important; color: #fff; background: var(--deep); border-bottom: 0; }
.source-section h2 { color: #fff; }
.source-section > p:not(.eyebrow) { color: rgba(255,255,255,.72); font-size: 16px; }
.source-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 27px; }
.source-section .button-outline { color: #fff; border-color: var(--white-line); }
.source-actions.vertical { align-content: start; flex-direction: column; }
.faq-section { border-bottom: 0; }
.faq-list { margin-top: 34px; border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 45px 1fr 28px; gap: 15px; align-items: center; padding: 23px 0; cursor: pointer; list-style: none; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--rust); font-size: 11px; }
.faq-list summary i { font-style: normal; color: var(--rust); font-size: 22px; transition: transform .2s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details > p { max-width: 760px; padding: 0 43px 25px 60px; margin: 0; color: #59615d; }
.article-rail { position: sticky; top: 105px; display: grid; gap: 16px; }
.rail-card { padding: 24px; border: 1px solid var(--line); background: #fff; }
.rail-card > a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); color: #515a55; font-size: 13px; }
.rail-card > a:hover { color: var(--rust); }
.rail-cta { background: var(--cream); }
.rail-cta strong { display: block; margin-bottom: 14px; font-family: Georgia, serif; font-size: 23px; font-weight: 500; line-height: 1.3; }
.rail-cta p:last-child { margin-bottom: 0; color: #68706c; font-size: 13px; }
.related-section { padding: 75px 0 90px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.related-grid a { position: relative; min-height: 150px; padding: 22px 50px 20px 0; border-bottom: 1px solid var(--line); }
.related-grid a:nth-child(3n+2), .related-grid a:nth-child(3n+3) { padding-left: 22px; border-left: 1px solid var(--line); }
.related-grid span { display: block; margin-bottom: 13px; color: var(--rust); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.related-grid strong { display: block; font-family: Georgia, serif; font-size: 20px; font-weight: 500; line-height: 1.25; }
.related-grid i { position: absolute; top: 22px; right: 15px; color: var(--rust); font-style: normal; }

/* About/contact */
.prose-page { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.1fr); gap: 90px; }
.prose-page h2 { font-size: 50px; }
.prose-page > div:first-child > p:not(.eyebrow) { color: #59615d; font-size: 18px; }
.principle-grid { border-top: 1px solid var(--ink); }
.principle-grid article { display: grid; grid-template-columns: 46px 220px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.principle-grid span { color: var(--rust); font-size: 11px; font-weight: 800; }
.principle-grid h3 { margin: 0; font-family: inherit; font-size: 17px; font-weight: 800; line-height: 1.35; letter-spacing: 0; }
.principle-grid p { margin: 0; color: #68706c; font-size: 14px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(330px, .65fr); gap: clamp(60px, 9vw, 130px); align-items: start; }
.contact-layout h2 { max-width: 700px; }
.contact-checklist { padding: 0; margin: 40px 0 0; list-style: none; border-top: 1px solid var(--ink); }
.contact-checklist li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-checklist span { color: var(--rust); font-size: 11px; font-weight: 800; }
.contact-checklist p { margin: 0; color: #59615d; }
.contact-checklist strong { color: var(--ink); }
.contact-panel { position: sticky; top: 110px; padding: 36px; color: #fff; background: var(--deep); }
.contact-panel h2 { color: #fff; font-size: 40px; }
.contact-panel > p:not(.panel-label) { color: rgba(255,255,255,.7); }
.contact-panel .button { width: 100%; margin-top: 12px; }
.contact-links { margin-top: 28px; border-top: 1px solid var(--white-line); }
.contact-links a { display: flex; justify-content: space-between; gap: 15px; padding: 14px 0; border-bottom: 1px solid var(--white-line); color: rgba(255,255,255,.78); font-size: 13px; }

/* Footer */
.site-footer { padding: 80px 0 24px; color: #fff; background: #0d1814; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(210px, .55fr) minmax(210px, .55fr); gap: clamp(55px, 8vw, 110px); }
.brand-footer { margin-bottom: 25px; color: #fff !important; }
.brand-footer small { color: rgba(255,255,255,.55); }
.footer-intro > p { max-width: 520px; color: rgba(255,255,255,.62); }
.footer-intro .footer-disclosure { color: rgba(255,255,255,.43); font-size: 12px; }
.site-footer h2 { margin-bottom: 20px; color: #f0b897; font-family: inherit; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer li a { color: rgba(255,255,255,.7); font-size: 13px; }
.site-footer li a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 65px; padding-top: 20px; border-top: 1px solid var(--white-line); color: rgba(255,255,255,.42); font-size: 11px; }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 38px, 1040px); }
  .primary-nav { gap: 14px; }
  .primary-nav > a:nth-child(4), .primary-nav > a:nth-child(5) { display: none; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) 350px; gap: 50px; }
  .guide-grid { grid-template-columns: repeat(3, 1fr); }
  .cluster-card, .cluster-card:nth-child(1), .cluster-card:nth-child(2), .cluster-card:nth-child(5), .cluster-card:nth-child(6) { grid-column: span 6; }
  .article-layout { grid-template-columns: minmax(0, 1fr) 235px; gap: 50px; }
  .prose-page { gap: 50px; }
  .principle-grid article { grid-template-columns: 40px 1fr; }
  .principle-grid p { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 32px); }
  body.cwf-site { font-size: 16px; }
  .site-header { min-height: 70px; }
  .header-inner { min-height: 70px; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: 70px; left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 12px 16px 20px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 18px 40px rgba(0,0,0,.12); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a, .primary-nav > a:nth-child(4), .primary-nav > a:nth-child(5) { display: block; padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .primary-nav > a::after { display: none; }
  .primary-nav .nav-cta { margin-top: 8px; padding-inline: 16px; text-align: center; }
  .hero-layout, .page-hero-grid, .guide-hero-grid, .evidence-layout, .cta-panel, .section-heading, .library-heading, .prose-page, .contact-layout { grid-template-columns: 1fr; }
  .hero-layout { gap: 48px; }
  .home-hero { padding-top: 70px; }
  .hero-panel { max-width: 560px; }
  .hero-stats { grid-template-columns: 1fr; margin-top: 65px; }
  .hero-stats > div, .hero-stats > div + div { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--white-line); }
  .hero-stats > div:last-child { border-bottom: 0; }
  .section-heading { align-items: start; gap: 18px; }
  .section-heading.compact .text-link { justify-self: start; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li { border-bottom: 1px solid var(--line); }
  .article-layout { grid-template-columns: 1fr; padding-top: 50px; }
  .article-rail { display: none; }
  .decision-grid { grid-template-columns: 1fr; }
  .decision-grid article, .decision-grid article + article { padding: 24px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .decision-grid h3 { min-height: 0; margin-top: 18px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid a:nth-child(3n+2), .related-grid a:nth-child(3n+3) { padding-left: 0; border-left: 0; }
  .related-grid a:nth-child(even) { padding-left: 22px; border-left: 1px solid var(--line); }
  .source-section { margin-top: 50px; padding: 34px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
  .contact-panel { position: static; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 24px); }
  html { scroll-padding-top: 78px; }
  body.cwf-site h1 { font-size: clamp(43px, 14vw, 64px); overflow-wrap: anywhere; }
  body.cwf-site h2 { font-size: 36px; }
  .section { padding: 72px 0; }
  .brand strong { font-size: 10px; }
  .brand small { font-size: 10px; }
  .hero-copy h1 { font-size: 50px; }
  .hero-lead { font-size: 19px; }
  .button-row, .source-actions { align-items: stretch; flex-direction: column; }
  .button-row .button, .source-actions .button { width: 100%; }
  .hero-panel { padding: 30px 24px 25px; }
  .swatch-stack { margin: -30px -24px 25px; }
  .cluster-grid { display: block; }
  .cluster-card { min-height: 310px; margin-bottom: 12px; padding: 26px; }
  .cluster-card .text-link { left: 26px; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card { min-height: 250px; }
  .page-hero, .guide-hero { padding: 58px 0; }
  .breadcrumbs { margin-bottom: 28px; }
  .quick-answer { padding: 24px; }
  .guide-hero h1 { font-size: 46px; }
  .library { padding-top: 55px; }
  .library-group { margin-bottom: 75px; }
  .library-heading h2 { font-size: 36px; }
  .library-item { grid-template-columns: 38px 1fr 25px; gap: 10px; min-height: 74px; }
  .library-item strong { font-size: 14px; line-height: 1.35; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 190px; border-right: 0; }
  .process-grid h3 { margin-top: 25px; }
  .article-layout { padding-bottom: 70px; }
  .article-section { padding-bottom: 65px; }
  .article-section + .article-section { padding-top: 65px; }
  .brief-note { grid-template-columns: 1fr; gap: 10px; }
  .section-inset { margin-inline: -12px; padding-inline: 12px; }
  .risk-list article { grid-template-columns: 1fr; gap: 18px; }
  .source-section { margin-inline: -12px; padding: 28px 20px !important; }
  .faq-list summary { grid-template-columns: 32px 1fr 20px; }
  .faq-list details > p { padding-left: 32px; padding-right: 10px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid a, .related-grid a:nth-child(even) { padding-left: 0; border-left: 0; }
  .principle-grid article { grid-template-columns: 35px 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-intro { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
