:root {
  --ink: #18372f;
  --green: #0d4a3d;
  --green-dark: #083c32;
  --green-2: #1f6b57;
  --mint: #dcebe4;
  --paper: #f7f3e9;
  --white: #fffdf8;
  --gold: #c69a42;
  --gold-soft: #eee1bd;
  --red: #a54835;
  --line: #d8d8cc;
  --muted: #5c6b66;
  --shadow: 0 24px 70px rgba(16, 49, 41, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.4;
}
button, select, a { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
[hidden] { display: none !important; }
img, svg { max-width: 100%; }
.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--green);
  color: white;
  border-radius: 6px;
}
.skip-link:focus { top: 14px; }
.visually-hidden {
  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;
}

.site-header {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(24px, 6vw, 92px);
  border-bottom: 1px solid rgba(24, 55, 47, 0.13);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 233, 0.94);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.brand-dot {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--green);
}
.site-header nav { margin-left: auto; display: flex; gap: 28px; }
.site-header nav a, .footer-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 650;
}
.site-header nav a:hover, .footer-links a:hover { color: var(--green-2); }
.internal-tag {
  border: 1px solid rgba(24, 55, 47, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  padding: clamp(70px, 9vw, 130px) clamp(24px, 8vw, 130px);
  position: relative;
  overflow: hidden;
}
.hero-copy, .date-card, .truth-strip > div, .question-main, .why-card,
.result-card, .logic-intro, .logic-stack, .country-status, .country-action { min-width: 0; }
.hero::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -190px;
  top: -210px;
  border: 90px solid rgba(198, 154, 66, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
.kicker {
  color: var(--green-2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin: 0 0 20px;
}
.hero h1 {
  font-size: clamp(3.1rem, 6.4vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  max-width: 930px;
  margin: 0;
  font-weight: 720;
}
.hero h1 em { color: var(--green-2); font-style: normal; font-weight: 520; }
.hero-intro {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.34rem);
  line-height: 1.65;
  margin: 30px 0;
}
.hero-actions, .result-actions, .logic-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.primary, .secondary {
  border-radius: 8px;
  padding: 15px 20px;
  font-weight: 750;
  border: 1px solid var(--green);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.18s ease;
}
.primary { background: var(--green); color: white; box-shadow: 0 10px 26px rgba(13, 74, 61, 0.15); }
.primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.primary:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.secondary { color: var(--green); background: transparent; }
.secondary:hover { background: rgba(13, 74, 61, 0.06); }
.secondary.small { padding: 10px 13px; font-size: 0.76rem; }
.microcopy { color: #71807a; font-size: 0.74rem; margin-top: 16px; }

.date-card {
  position: relative;
  z-index: 2;
  background: var(--green);
  color: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.date-topline { display: flex; justify-content: space-between; gap: 18px; align-items: center; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 750; }
.status-dot { color: #dceecb; position: relative; padding-left: 12px; }
.status-dot::before { content: ""; width: 6px; height: 6px; background: #b8d790; border-radius: 50%; position: absolute; left: 0; top: 4px; }
.date-card > strong { display: block; font-size: 7.2rem; line-height: 0.9; letter-spacing: -0.08em; color: var(--gold-soft); margin-top: 34px; }
.date-month { font-size: 1.55rem; font-weight: 730; margin-bottom: 23px; }
.date-card p { color: #e6eee9; font-size: 0.9rem; line-height: 1.7; }
.date-warning { border-top: 1px solid rgba(255, 255, 255, 0.2); margin-top: 23px; padding-top: 18px; display: flex; gap: 10px; font-size: 0.75rem; line-height: 1.45; }
.date-warning span { flex: 0 0 auto; width: 20px; height: 20px; display: grid; place-items: center; background: var(--gold); color: var(--green); border-radius: 50%; font-weight: 900; }

.truth-strip { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 0 clamp(24px, 8vw, 130px); display: grid; grid-template-columns: repeat(3, 1fr); }
.truth-strip > div { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 10px; padding: 28px 34px; align-items: start; border-right: 1px solid var(--line); }
.truth-strip > div:first-child { padding-left: 0; }
.truth-strip > div:last-child { border-right: 0; }
.strip-number { color: var(--gold); font-size: 0.72rem; font-weight: 850; }
.truth-strip p { margin: 0; font-size: 0.8rem; line-height: 1.6; color: var(--muted); }
.truth-strip strong { color: var(--ink); }
.uk-strip { background: var(--gold-soft); border-bottom: 1px solid #d8c58f; padding: 21px clamp(24px, 8vw, 130px); display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: 34px; align-items: center; }
.uk-strip > div { display: flex; align-items: center; gap: 13px; }
.uk-strip > div > span { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 50%; background: var(--green); color: white; display: grid; place-items: center; font-size: 0.68rem; font-weight: 850; }
.uk-strip strong { font-size: 0.84rem; }
.uk-strip p { margin: 0; color: #4a5d55; font-size: 0.75rem; line-height: 1.6; }

.finder-section { padding: clamp(80px, 10vw, 140px) clamp(24px, 8vw, 130px); }
.heading-row { display: flex; gap: 36px; justify-content: space-between; align-items: flex-end; max-width: 1180px; }
.logic-button { flex: 0 0 auto; border: 1px solid var(--green); background: transparent; color: var(--green); border-radius: 8px; padding: 12px 15px; cursor: pointer; font-size: 0.76rem; font-weight: 750; }
.logic-button:hover { background: rgba(13, 74, 61, 0.06); }
.logic-actions { margin-bottom: 46px; justify-content: flex-end; }
.section-heading { max-width: 800px; margin-bottom: 42px; }
.section-heading h2 { font-size: clamp(2.25rem, 4vw, 4.2rem); letter-spacing: -0.05em; line-height: 1.04; margin: 0 0 18px; overflow-wrap: anywhere; }
.section-heading > p:last-child { color: var(--muted); line-height: 1.7; }
.finder-shell { max-width: 1180px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); min-height: 540px; overflow: hidden; }
.finder-start { min-height: 540px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 44px; }
.finder-start h3 { font-size: clamp(1.8rem, 3vw, 3.1rem); margin: 20px 0 10px; letter-spacing: -0.04em; }
.finder-start p { color: var(--muted); max-width: 650px; line-height: 1.7; margin-bottom: 28px; }
.finder-mark { width: 64px; height: 64px; display: grid; place-items: center; background: var(--mint); color: var(--green); border-radius: 50%; font-size: 1.7rem; font-weight: 800; }
.question-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; min-height: 540px; }
.question-main { padding: clamp(32px, 5vw, 64px); }
.progress-row { display: flex; align-items: center; gap: 22px; font-size: 0.7rem; font-weight: 750; color: var(--muted); }
.progress-track { height: 4px; background: #e4e6df; border-radius: 999px; flex: 1; overflow: hidden; }
.progress-track span { display: block; height: 100%; background: var(--gold); transition: width 0.25s ease; }
.question-eyebrow { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--green-2); font-weight: 850; margin: 48px 0 12px; }
.question-main h3, .result-header h3 { font-size: clamp(1.8rem, 3.1vw, 3.15rem); line-height: 1.08; letter-spacing: -0.045em; margin: 0 0 26px; overflow-wrap: anywhere; }
.choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.choice { position: relative; text-align: left; background: white; border: 1px solid var(--line); border-radius: 8px; padding: 17px 48px 17px 17px; min-height: 82px; cursor: pointer; display: flex; flex-direction: column; gap: 6px; transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease; overflow: hidden; }
.choice:hover { border-color: var(--green-2); background: #f8fbf8; transform: translateY(-1px); }
.choice strong, .choice span { display: block; overflow-wrap: anywhere; }
.choice strong { font-size: 0.9rem; }
.choice span { color: var(--muted); font-size: 0.72rem; line-height: 1.45; }
.choice i { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-style: normal; color: var(--gold); font-size: 1.05rem; line-height: 1; }
.select-card { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 20px; max-width: 620px; }
.select-card label { display: block; font-size: 0.78rem; font-weight: 750; margin-bottom: 9px; }
.select-card select { display: block; width: 100%; min-height: 48px; padding: 10px 42px 10px 12px; border: 1px solid #aebbb5; border-radius: 6px; background: white; color: var(--ink); }
.continue-button { margin-top: 14px; width: 100%; }
.question-controls { display: flex; justify-content: space-between; gap: 18px; margin-top: 28px; }
.text-button { border: 0; background: transparent; color: var(--green-2); cursor: pointer; font-size: 0.76rem; font-weight: 750; padding: 8px 0; }
.text-button:disabled { opacity: 0.3; cursor: not-allowed; }
.why-card { background: var(--green); color: white; padding: 42px 30px; display: flex; flex-direction: column; justify-content: center; }
.why-card > span { color: var(--gold-soft); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.67rem; font-weight: 800; }
.why-card p { font-size: 1rem; line-height: 1.7; margin: 16px 0 30px; overflow-wrap: anywhere; }
.why-card small { border-top: 1px solid rgba(255, 255, 255, 0.2); padding-top: 18px; color: #bcd2c8; }

.result { padding: clamp(30px, 5vw, 58px); }
.result-header { display: flex; gap: 30px; align-items: flex-start; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 26px; }
.result-header .question-eyebrow { margin-top: 0; }
.result-header h3 { max-width: 850px; margin-bottom: 0; }
.result-status { margin: 0 0 8px; color: var(--green-2); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; }
.result-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 22px; }
.result-card { border: 1px solid var(--line); border-radius: 8px; padding: 21px; background: white; }
.result-card.featured { background: #f1f7f3; border-color: #bfd6ca; }
.result-card.wide { grid-column: 1 / -1; }
.result-card.alert { background: #fff5ed; border-color: #e3bca9; }
.result-card > span { color: var(--green-2); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.11em; font-weight: 850; }
.result-card h4 { font-size: 1.2rem; margin: 10px 0; overflow-wrap: anywhere; }
.result-card p, .result-card li { color: var(--muted); font-size: 0.78rem; line-height: 1.65; overflow-wrap: anywhere; }
.result-card p strong { color: var(--ink); }
.result-card ul { margin: 12px 0 0; padding-left: 18px; }
.result-card a { color: var(--green-2); font-weight: 700; }
.decision-trail { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 14px; }
.decision-trail > span { display: flex; flex-direction: column; gap: 5px; color: var(--ink); font-size: 0.7rem; border-left: 2px solid var(--gold); padding-left: 10px; overflow-wrap: anywhere; }
.decision-trail small { color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.56rem; }
.legal-line { background: #f0ede4; border-radius: 6px; padding: 14px; margin: 14px 0 22px; font-size: 0.7rem; line-height: 1.55; color: var(--muted); }

.logic-overview { max-width: 1180px; display: grid; grid-template-columns: 310px minmax(0, 1fr); gap: 48px; padding: 34px; margin-bottom: 28px; background: #ece7da; border: 1px solid #d5cebc; border-radius: 10px; }
.logic-intro { position: sticky; top: 112px; align-self: start; }
.logic-intro h3 { font-size: 1.7rem; letter-spacing: -0.035em; margin: 0 0 12px; }
.logic-intro p:last-child { color: var(--muted); font-size: 0.78rem; line-height: 1.65; }
.logic-stack { display: flex; flex-direction: column; gap: 22px; }
.logic-node, .logic-outcome { position: relative; display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 16px; align-items: start; padding: 19px; background: white; border: 1px solid var(--line); border-radius: 8px; }
.logic-node:not(:last-of-type)::after { content: ""; position: absolute; width: 2px; height: 23px; background: var(--gold); bottom: -23px; left: 42px; }
.logic-node > span, .logic-outcome > span { width: 48px; height: 48px; border-radius: 50%; background: var(--mint); color: var(--green); display: grid; place-items: center; font-size: 0.7rem; font-weight: 850; }
.logic-node small { color: var(--green-2); font-size: 0.58rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.logic-node strong, .logic-outcome strong { display: block; font-size: 0.84rem; margin: 5px 0; }
.logic-node p, .logic-outcome p { margin: 0; color: var(--muted); font-size: 0.69rem; line-height: 1.55; overflow-wrap: anywhere; }
.logic-outcome { background: var(--green); border-color: var(--green); color: white; }
.logic-outcome > span { background: var(--gold); }
.logic-outcome p { color: #d8e8e1; }

.principle-section { background: var(--green); color: white; padding: clamp(80px, 10vw, 140px) clamp(24px, 8vw, 130px); }
.section-heading.inverse .kicker { color: var(--gold-soft); }
.section-heading.inverse h2 { max-width: 930px; }
.section-heading.inverse > p:last-child { color: #c8dcd3; }
.principle-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 1160px; }
.principle-grid article { border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.06); padding: clamp(28px, 4vw, 48px); border-radius: 8px; }
.pillar-letter { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--green); font-weight: 850; }
.principle-grid h3 { font-size: 1.55rem; letter-spacing: -0.025em; margin: 28px 0 13px; }
.principle-grid p { color: #dce8e2; line-height: 1.75; }
.principle-grid small { display: block; border-top: 1px solid rgba(255, 255, 255, 0.18); margin-top: 28px; padding-top: 18px; color: #a9c9bc; }

.guide-section, .scenario-section, .sources-section { padding: clamp(80px, 10vw, 140px) clamp(24px, 8vw, 130px); }
.guide-section { background: var(--paper); }
.callout-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; max-width: 1180px; }
.callout { background: var(--white); border: 1px solid var(--line); padding: 28px; border-radius: 8px; }
.callout > span, .country-status > span, .source-list article > span { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.11em; color: var(--green-2); font-weight: 850; }
.callout h3 { font-size: 1.25rem; letter-spacing: -0.025em; margin: 14px 0 10px; }
.callout p { color: var(--muted); font-size: 0.78rem; line-height: 1.7; }
.uk-guidance-card { max-width: 1180px; margin-top: 16px; border-radius: 8px; background: var(--green); color: white; padding: 27px 30px; display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 34px; align-items: start; }
.uk-guidance-card > span { color: var(--gold-soft); font-size: 0.66rem; line-height: 1.5; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 850; }
.uk-guidance-card h3 { margin: 0 0 8px; font-size: 1.22rem; }
.uk-guidance-card p { margin: 0; color: #d6e5df; font-size: 0.75rem; line-height: 1.7; }
.subsection-heading { max-width: 740px; margin: 90px 0 28px; }
.subsection-heading h3 { font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -0.045em; margin: 0; }
.role-table, .scenario-table { max-width: 1180px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--white); }
.table-head, .table-row { display: grid; grid-template-columns: 150px 1.15fr 1.15fr 120px; gap: 18px; align-items: start; padding: 17px 20px; }
.table-head { background: var(--green); color: white; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 800; }
.table-row { border-top: 1px solid var(--line); }
.table-row:first-of-type { border-top: 0; }
.table-row strong { font-size: 0.78rem; }
.table-row p, .table-row small { margin: 0; color: var(--muted); font-size: 0.68rem; line-height: 1.55; overflow-wrap: anywhere; }
.table-row small { color: var(--green-2); font-weight: 700; }
.timeline { max-width: 1000px; border-left: 1px solid #b7c8c0; margin-left: 14px; }
.timeline article { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 30px; position: relative; padding: 0 0 38px 34px; }
.timeline article::before { content: ""; position: absolute; width: 11px; height: 11px; background: var(--gold); border: 4px solid var(--paper); border-radius: 50%; left: -6px; top: 1px; }
.timeline-date { display: flex; flex-direction: column; gap: 7px; }
.timeline-date span { color: var(--green-2); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.11em; font-weight: 850; }
.timeline-date strong { font-size: 0.9rem; }
.timeline h4 { margin: 0 0 8px; font-size: 1rem; }
.timeline p { margin: 0; color: var(--muted); font-size: 0.75rem; line-height: 1.7; }

.evidence-section { background: var(--green); color: white; padding: clamp(80px, 10vw, 140px) clamp(24px, 8vw, 130px); }
.evidence-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; max-width: 1320px; }
.evidence-grid article { background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 8px; padding: 26px; }
.evidence-number { color: var(--gold-soft); font-size: 0.62rem; font-weight: 850; }
.evidence-grid h3 { font-size: 1.15rem; margin: 18px 0; }
.evidence-grid ul { margin: 0; padding-left: 17px; }
.evidence-grid li { color: #d9e8e1; font-size: 0.7rem; line-height: 1.65; margin-bottom: 8px; }
.pfas-banner { max-width: 1320px; margin-top: 20px; background: var(--gold-soft); color: var(--ink); padding: 27px; border-radius: 8px; display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 34px; }
.pfas-banner span { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.11em; font-weight: 850; color: var(--green-2); }
.pfas-banner h3 { font-size: 1.35rem; letter-spacing: -0.025em; margin: 10px 0 0; }
.pfas-banner p { margin: 0; color: #465951; font-size: 0.74rem; line-height: 1.7; }

.country-list { max-width: 1260px; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.country-list article { display: grid; grid-template-columns: 70px 210px minmax(0, 1fr) minmax(260px, 0.8fr); gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: start; }
.country-code { width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: white; display: grid; place-items: center; font-size: 0.7rem; font-weight: 850; }
.country-name h3 { margin: 0 0 7px; font-size: 1rem; }
.country-name p, .country-status p, .country-action p { margin: 0; color: var(--muted); font-size: 0.69rem; line-height: 1.55; overflow-wrap: anywhere; }
.country-action { border-left: 2px solid var(--gold); padding-left: 16px; }
.country-action strong { font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.08em; }
.country-action a { display: inline-block; color: var(--green-2); margin-top: 8px; text-decoration: underline; text-underline-offset: 2px; font-size: 0.65rem; font-weight: 750; overflow-wrap: anywhere; }
.scenario-section { background: #ebe5d7; }
.scenario-table .table-head, .scenario-table .table-row { grid-template-columns: 1.2fr 0.65fr 0.9fr 1.1fr; }

.governance-section { background: var(--green); color: white; padding: clamp(80px, 10vw, 140px) clamp(24px, 8vw, 130px); }
.governance-flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; max-width: 1240px; }
.governance-flow article { border-top: 2px solid var(--gold); padding: 24px 14px 0 0; }
.governance-flow span { color: var(--gold-soft); font-size: 0.7rem; font-weight: 850; }
.governance-flow h3 { margin: 13px 0 8px; font-size: 1rem; }
.governance-flow p { color: #c8dcd3; font-size: 0.7rem; line-height: 1.65; }
.open-points { max-width: 1240px; margin-top: 62px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 8px; padding: 30px; display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 36px; }
.open-points h3 { margin: 0; font-size: 1.25rem; }
.open-points > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 22px; }
.open-points p { margin: 0; color: #d1e1da; font-size: 0.7rem; line-height: 1.55; border-left: 2px solid var(--gold); padding-left: 12px; }

.source-list { max-width: 1120px; border-top: 1px solid var(--line); }
.source-list article { display: grid; grid-template-columns: 180px minmax(0, 1fr) 120px; gap: 22px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.source-list h3 { font-size: 0.82rem; margin: 0 0 5px; }
.source-list p { margin: 0; color: var(--muted); font-size: 0.67rem; }
.source-list a { text-align: right; color: var(--green-2); text-decoration: underline; text-underline-offset: 2px; font-size: 0.65rem; font-weight: 750; overflow-wrap: anywhere; }
.download-card { max-width: 1120px; margin-top: 40px; border-radius: 8px; background: var(--white); border: 1px solid var(--line); padding: 30px; display: flex; justify-content: space-between; gap: 36px; align-items: center; }
.download-card h3 { font-size: 1.4rem; margin: 0 0 8px; }
.download-card p:last-child { color: var(--muted); max-width: 700px; font-size: 0.72rem; line-height: 1.6; }

footer { padding: 40px clamp(24px, 8vw, 130px); background: #0a3028; color: white; display: flex; justify-content: space-between; gap: 50px; align-items: center; }
footer p { color: #a9c9bc; font-size: 0.72rem; margin: 7px 0 0; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: white; }
.noscript { padding: 16px; background: #fff5ed; color: var(--red); text-align: center; font-weight: 700; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .internal-tag { margin-left: auto; }
  .hero { grid-template-columns: 1fr; }
  .date-card { max-width: 520px; }
  .truth-strip { grid-template-columns: 1fr; }
  .truth-strip > div { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .truth-strip > div:last-child { border-bottom: 0; }
  .uk-strip { grid-template-columns: 1fr; gap: 10px; }
  .question-layout { grid-template-columns: 1fr; }
  .why-card { min-height: auto; }
  .principle-grid { grid-template-columns: 1fr; }
  .heading-row { align-items: flex-start; flex-direction: column; gap: 0; }
  .logic-actions { margin: -24px 0 36px; justify-content: flex-start; }
  .logic-overview { grid-template-columns: 1fr; }
  .logic-intro { position: static; }
  .callout-grid, .evidence-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .uk-guidance-card { grid-template-columns: 1fr; gap: 12px; }
  .country-list article { grid-template-columns: 60px 180px minmax(0, 1fr); }
  .country-action { grid-column: 2 / -1; }
  .governance-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .open-points { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { height: 68px; padding: 0 18px; }
  .brand { font-size: 0.9rem; }
  .internal-tag { display: none; }
  .hero { padding: 60px 20px 76px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 3.35rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .primary, .secondary { width: 100%; }
  .truth-strip { padding: 0 20px; }
  .uk-strip { padding-left: 20px; padding-right: 20px; }
  .finder-section, .principle-section { padding: 76px 20px; }
  .finder-start { padding: 40px 20px; }
  .question-main, .result { padding: 26px 20px; }
  .choices, .result-grid { grid-template-columns: 1fr; }
  .decision-trail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .result-card.wide { grid-column: auto; }
  .result-header { flex-direction: column; }
  .result-header .secondary { width: auto; }
  .logic-actions { width: 100%; }
  .logic-button { flex: 1 1 180px; }
  .logic-overview { padding: 20px; gap: 20px; }
  .logic-node, .logic-outcome { grid-template-columns: 40px minmax(0, 1fr); padding: 15px; }
  .logic-node > span, .logic-outcome > span { width: 40px; height: 40px; }
  .logic-node:not(:last-of-type)::after { left: 34px; }
  .callout-grid, .evidence-grid, .governance-flow { grid-template-columns: 1fr; }
  .table-head { display: none; }
  .table-row, .scenario-table .table-row { grid-template-columns: 1fr; gap: 7px; padding: 20px; }
  .timeline article { grid-template-columns: 1fr; gap: 10px; }
  .pfas-banner { grid-template-columns: 1fr; gap: 16px; }
  .country-list article { grid-template-columns: 48px minmax(0, 1fr); gap: 14px; }
  .country-status, .country-action { grid-column: 2; }
  .open-points > div { grid-template-columns: 1fr; }
  .source-list article { grid-template-columns: 1fr; gap: 8px; align-items: start; }
  .source-list a { text-align: left; }
  .download-card { flex-direction: column; align-items: stretch; }
  footer { flex-direction: column; align-items: flex-start; padding: 36px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  @page { size: A4 portrait; margin: 12mm; }
  html, body { background: white !important; color: #152b25 !important; font-family: Arial, sans-serif; }
  body { font-size: 9pt; }
  .site-header, footer, button, .hero-actions, .microcopy { display: none !important; }
  a { color: #174e41 !important; text-decoration: underline !important; }
  .finder-shell, .result-card, .callout, .role-table, .scenario-table, .download-card { box-shadow: none !important; }

  body.print-case > *:not(main),
  body.print-case main > section:not(.finder-section),
  body.print-case .finder-section > *:not(.finder-shell),
  body.print-case .finder-start,
  body.print-case .question-layout { display: none !important; }
  body.print-case .finder-section { padding: 0 !important; }
  body.print-case .finder-shell { border: 0; min-height: 0; max-width: none; overflow: visible; }
  body.print-case .result { display: block !important; padding: 0; }
  body.print-case .result-header { display: block; padding-bottom: 4mm; }
  body.print-case .result-header h3 { font-size: 20pt; }
  body.print-case .result-grid { gap: 4mm; }
  body.print-case .result-card { break-inside: avoid; padding: 4mm; }
  body.print-case .result-card p, body.print-case .result-card li { font-size: 8pt; }

  body.print-logic > *:not(main),
  body.print-logic main > section:not(.finder-section),
  body.print-logic .finder-section > *:not(.logic-overview) { display: none !important; }
  body.print-logic .finder-section { padding: 0 !important; }
  body.print-logic .logic-overview { display: grid !important; max-width: none; margin: 0; border: 0; padding: 0; background: white; grid-template-columns: 60mm minmax(0, 1fr); gap: 8mm; }
  body.print-logic .logic-intro { position: static; }
  body.print-logic .logic-stack { gap: 3mm; }
  body.print-logic .logic-node, body.print-logic .logic-outcome { break-inside: avoid; padding: 3mm; }

  body.print-guide .hero,
  body.print-guide .truth-strip,
  body.print-guide .uk-strip,
  body.print-guide .finder-section,
  body.print-guide .download-card { display: none !important; }
  body.print-guide .principle-section,
  body.print-guide .guide-section,
  body.print-guide .evidence-section,
  body.print-guide .scenario-section,
  body.print-guide .governance-section,
  body.print-guide .sources-section { display: block; padding: 8mm 0; background: white !important; color: #152b25 !important; }
  body.print-guide .section-heading { margin-bottom: 5mm; max-width: none; }
  body.print-guide .section-heading h2 { font-size: 20pt; color: #0d4a3d; }
  body.print-guide .section-heading.inverse .kicker,
  body.print-guide .section-heading.inverse > p:last-child { color: #5c6b66; }
  body.print-guide .principle-grid,
  body.print-guide .callout-grid,
  body.print-guide .evidence-grid,
  body.print-guide .governance-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4mm; }
  body.print-guide .principle-grid article,
  body.print-guide .evidence-grid article,
  body.print-guide .governance-flow article,
  body.print-guide .open-points { background: white; color: #152b25; border: 1px solid #c8cfca; break-inside: avoid; }
  body.print-guide .principle-grid p,
  body.print-guide .principle-grid small,
  body.print-guide .evidence-grid li,
  body.print-guide .governance-flow p,
  body.print-guide .open-points p { color: #455a52; }
  body.print-guide .uk-guidance-card { background: #edf5f0; color: #152b25; }
  body.print-guide .uk-guidance-card p { color: #455a52; }
  body.print-guide .pfas-banner { break-inside: avoid; }
  body.print-guide .country-list article,
  body.print-guide .table-row,
  body.print-guide .timeline article,
  body.print-guide .source-list article { break-inside: avoid; }
  body.print-guide .country-list article { grid-template-columns: 14mm 36mm minmax(0, 1fr) minmax(45mm, 0.8fr); gap: 4mm; padding: 4mm 0; }
  body.print-guide .source-list article { grid-template-columns: 38mm minmax(0, 1fr) 24mm; }
  body.print-guide .source-list a::after,
  body.print-guide .country-action a::after { content: "\A" attr(href); white-space: pre-wrap; font-size: 6pt; font-weight: 400; overflow-wrap: anywhere; }
}
