:root {
  --ink: #12263a;
  --ink-soft: #526579;
  --navy: #0d2d45;
  --teal: #087f7a;
  --teal-dark: #056963;
  --teal-wash: #e7f6f4;
  --amber: #f1a93a;
  --amber-wash: #fff3d9;
  --blue-wash: #edf5fb;
  --line: #d8e2ea;
  --paper: #ffffff;
  --mist: #f4f8fa;
  --danger: #b33a3a;
  --danger-wash: #fff0ee;
  --shadow: 0 24px 70px rgba(13, 45, 69, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #eef7f8 0, #f8fbfc 36rem, #fff 72rem);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.58;
}
body.modal-open { overflow: hidden; }
button, input { font: inherit; }
button { color: inherit; }
a { color: var(--teal-dark); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.purpose-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 31, 47, .72);
  backdrop-filter: blur(8px);
}
.purpose-overlay[hidden] { display: none; }
.purpose-dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: clamp(30px, 6vw, 52px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.purpose-dialog h2 { margin: 0 42px 18px 0; color: var(--navy); font-size: clamp(1.9rem, 5vw, 2.8rem); }
.purpose-dialog p:not(.eyebrow) { color: var(--ink-soft); }
.purpose-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--mist);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}
.purpose-close:hover, .purpose-close:focus-visible { border-color: var(--teal); outline: 3px solid rgba(8,127,122,.18); }
.purpose-start { min-height: 48px; margin-top: 12px; padding: 10px 19px; border: 0; border-radius: 11px; color: #fff; background: var(--teal); cursor: pointer; font-weight: 700; }
.purpose-start:hover, .purpose-start:focus-visible { background: var(--teal-dark); outline: 3px solid rgba(8,127,122,.18); }

.news-banner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 9px clamp(20px, 5vw, 76px);
  color: #fff;
  background: var(--teal-dark);
  font-size: .88rem;
}
.news-banner[hidden] { display: none; }
.news-banner div { display: flex; align-items: baseline; justify-content: center; gap: 12px; }
.news-banner strong { font-family: Manrope, sans-serif; }
.news-banner button { flex: 0 0 auto; width: 32px; height: 32px; border: 0; border-radius: 50%; color: #fff; background: rgba(255,255,255,.12); cursor: pointer; font-size: 1.2rem; }
.news-banner button:hover, .news-banner button:focus-visible { background: rgba(255,255,255,.22); outline: 2px solid #fff; }

.topbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(13, 45, 69, .1);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 2;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-family: Manrope, sans-serif;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 28px;
  height: 28px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.brand-mark span { position: relative; z-index: 1; color: #fff; font: 800 9px/1 Manrope, sans-serif; letter-spacing: -.04em; }
.brand-mark i { position: absolute; right: -4px; bottom: -4px; width: 13px; height: 13px; border-radius: 6px 0 0 0; background: var(--teal); transform: rotate(12deg); }
.independent { color: var(--ink-soft); font-size: .82rem; }
.site-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 5px; }
.site-nav a { padding: 8px 10px; border-radius: 8px; color: var(--ink-soft); font-size: .86rem; font-weight: 700; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.active { color: var(--teal-dark); background: var(--teal-wash); outline: none; }

main { overflow: hidden; }
.intro {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) clamp(20px, 5vw, 44px) clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: Manrope, sans-serif; line-height: 1.12; letter-spacing: -.035em; }
h1 { margin: 0; max-width: 680px; font-size: clamp(2.6rem, 6vw, 5.3rem); color: var(--navy); }
.intro h1 { font-size: clamp(2.35rem, 5vw, 4.5rem); }
.intro-copy > p:not(.eyebrow) { max-width: 650px; font-size: clamp(1rem, 1.7vw, 1.18rem); color: var(--ink-soft); }
.intro-copy > .intro-lead { margin-bottom: 4px; color: var(--ink); font-weight: 700; }
.intro-copy > .intro-lead + p { margin-top: 0; }
.scope-note {
  margin-top: 26px;
  padding: 14px 17px;
  border-left: 4px solid var(--amber);
  background: rgba(255,255,255,.65);
  border-radius: 0 12px 12px 0;
}
.scope-note strong { color: var(--ink); }
.scope-disclosure { margin: 16px 0 0; font-size: .9rem !important; line-height: 1.55; }
.scope-disclosure strong { color: var(--ink); }
.intro-image {
  margin: 0;
  position: relative;
  border-radius: 32px 8px 32px 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.intro-image::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.48); border-radius: inherit; pointer-events: none; }
.intro-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.guide-shell {
  max-width: 1120px;
  margin: 0 auto clamp(84px, 10vw, 140px);
  padding: 0 clamp(20px, 5vw, 44px);
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}
.journey {
  padding: 34px 30px;
  color: #fff;
  background: var(--navy);
  border-radius: 24px 0 0 24px;
}
.journey-label { margin: 0 0 26px; color: #a9c0d1; font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.journey ol { padding: 0; margin: 0; list-style: none; }
.journey li { position: relative; display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 12px; min-height: 62px; color: #8eabbd; }
.journey li:not(:last-child)::after { content: ""; position: absolute; left: 14px; top: 44px; bottom: -2px; width: 1px; background: #3c5d73; }
.journey li span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid #527186; border-radius: 50%; font-size: .75rem; font-weight: 700; background: var(--navy); z-index: 1; }
.journey li b { font-size: .88rem; font-weight: 600; }
.journey li.active { color: #fff; }
.journey li.active span { color: #092b3e; border-color: var(--amber); background: var(--amber); }
.journey li.done { color: #cbe6e4; }
.journey li.done span { color: #fff; border-color: var(--teal); background: var(--teal); }
.text-button { margin-top: 26px; padding: 0; color: #fff; background: transparent; border: 0; border-bottom: 1px solid #7994a6; cursor: pointer; font-size: .85rem; }

.decision-panel {
  min-height: 500px;
  padding: clamp(30px, 5vw, 58px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 24px 24px 0;
  box-shadow: var(--shadow);
}
.panel-topline { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 46px; color: var(--ink-soft); font-size: .8rem; font-weight: 600; }
.source-chip { padding: 5px 10px; border-radius: 999px; color: var(--teal-dark); background: var(--teal-wash); }
.question-kicker { margin: 0 0 8px; color: var(--teal-dark); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.decision-panel h2 { max-width: 720px; margin: 0 0 12px; font-size: clamp(1.8rem, 4vw, 3rem); color: var(--navy); }
.question-help { max-width: 680px; margin: 0 0 30px; color: var(--ink-soft); }
.legacy-help, .path-switch, .process-note { margin: -10px 0 24px; padding: 15px 17px; border-left: 4px solid var(--teal); border-radius: 0 12px 12px 0; background: var(--teal-wash); }
.legacy-help { color: var(--ink-soft); }
.legacy-help a { font-weight: 700; }
.path-switch, .process-note { display: grid; gap: 5px; }
.path-switch strong, .process-note strong { color: var(--navy); }
.path-switch span, .process-note span { color: var(--ink-soft); }
.choice-grid { display: grid; gap: 14px; }
.choice-grid.two { grid-template-columns: 1fr 1fr; }
.choice {
  width: 100%;
  min-height: 104px;
  padding: 18px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 16px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.choice.text-choice { grid-template-columns: minmax(0, 1fr) auto; }
.choice:hover, .choice:focus-visible { transform: translateY(-2px); border-color: var(--teal); box-shadow: 0 10px 28px rgba(8,127,122,.12); outline: none; }
.choice-symbol { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; background: var(--teal); border-radius: 13px; font: 800 1rem Manrope, sans-serif; }
.choice-symbol.cat { color: var(--navy); background: var(--amber); }
.choice strong { display: block; font: 700 1.05rem Manrope, sans-serif; }
.choice small { display: block; margin-top: 4px; color: var(--ink-soft); font-size: .82rem; line-height: 1.35; }
.arrow { color: var(--teal); font-size: 1.3rem; }
.back-button { margin: 24px 0 0; padding: 8px 0; color: var(--ink-soft); background: transparent; border: 0; cursor: pointer; font-weight: 600; }
.back-button:hover { color: var(--teal-dark); }
.result-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 24px; }
.result-actions .back-button, .result-actions .secondary-link { margin: 0; }
.early-help { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; padding: 16px 17px; border: 1px solid rgba(8,127,122,.28); border-radius: 12px; color: var(--ink-soft); background: var(--teal-wash); }
.early-help button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 44px; padding: 10px 15px; border: 0; border-radius: 10px; color: #fff; background: var(--teal-dark); cursor: pointer; font-weight: 700; text-align: center; white-space: nowrap; box-shadow: 0 7px 18px rgba(8,127,122,.17); }
.early-help button:hover, .early-help button:focus-visible { background: var(--navy); outline: none; }
.help-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 8px; }
.help-choice-grid article { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.help-choice-grid h3 { margin: 8px 0; color: var(--navy); }
.help-choice-grid p { margin: 0 0 18px; color: var(--ink-soft); }

.risk-box { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-bottom: 22px; }
.risk-search { width: 100%; min-height: 52px; padding: 12px 16px; border: 0; border-bottom: 1px solid var(--line); color: var(--ink); background: #fbfdfe; }
.risk-search:focus { outline: 2px solid var(--teal); outline-offset: -2px; }
.risk-list { display: flex; flex-wrap: wrap; gap: 7px; max-height: 150px; overflow: auto; padding: 14px; }
.country-pill { padding: 7px 10px; border-radius: 7px; background: var(--blue-wash); color: #365066; font-size: .76rem; }
.country-pill.hide { display: none; }
.country-assistance { display: grid; gap: 3px; margin: -8px 0 22px; padding: 14px 16px; border-left: 4px solid var(--teal); border-radius: 0 10px 10px 0; background: var(--teal-wash); }
.country-assistance strong { color: var(--navy); }
.country-assistance span { color: var(--ink-soft); font-size: .88rem; }
.agent-contacts { display: grid; gap: 8px; margin-top: 10px; }
.agent-contact-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 10px; border-radius: 9px; background: #fff; }
.agent-contact-row span { display: grid; gap: 2px; min-width: 0; }
.agent-contact-row small { color: var(--ink-soft); font-size: .72rem; }
.agent-contact-row b { overflow-wrap: anywhere; color: var(--navy); font-size: .88rem; }
.agent-contact-row button { padding: 6px 10px; border: 1px solid var(--line); border-radius: 8px; background: #fff; cursor: pointer; }
.risk-actions { grid-template-columns: 1fr 1fr; }
.risk-actions .choice { min-height: 82px; grid-template-columns: 1fr auto; }

.result-tag { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; margin-bottom: 18px; border-radius: 999px; color: var(--teal-dark); background: var(--teal-wash); font-size: .8rem; font-weight: 700; }
.result-tag.stop { color: var(--danger); background: var(--danger-wash); }
.result-intro { font-size: 1.08rem; color: var(--ink-soft); }
.checklist { padding: 0; margin: 26px 0; list-style: none; display: grid; gap: 11px; }
.checklist li { position: relative; padding: 14px 16px 14px 46px; border: 1px solid var(--line); border-radius: 12px; background: #fbfdfe; }
.checklist li::before { content: "✓"; position: absolute; left: 16px; top: 14px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--teal); font-size: .72rem; font-weight: 800; }
.checklist li.warning::before { content: "!"; background: var(--amber); color: var(--navy); }
.checklist li.stop::before { content: "×"; background: var(--danger); }
.checklist a { font-weight: 700; text-underline-offset: 2px; }
.result-note { padding: 14px 16px; margin: 22px 0; border-left: 4px solid var(--amber); background: var(--amber-wash); border-radius: 0 10px 10px 0; color: #5c492c; }
.primary-link { display: inline-flex; align-items: center; gap: 8px; min-height: 48px; padding: 10px 16px; border-radius: 11px; color: #fff; background: var(--teal); text-decoration: none; font-weight: 700; }
.primary-link:hover { background: var(--teal-dark); }
.titer-validity { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; margin: -10px 0 26px; padding: 14px 16px; border-radius: 12px; background: var(--teal-wash); color: var(--ink-soft); font-size: .9rem; }
.titer-validity strong { color: var(--teal-dark); white-space: nowrap; }
.secondary-link { display: inline-flex; align-items: center; min-height: 48px; margin-left: 10px; padding: 10px 16px; border: 1px solid var(--teal); border-radius: 11px; color: var(--teal-dark); background: #fff; cursor: pointer; text-decoration: none; font-weight: 700; }
.secondary-link:hover, .secondary-link:focus-visible { background: var(--teal-wash); outline: 3px solid rgba(8,127,122,.16); }
.stay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0; }
.stay-grid article { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fbfdfe; }
.stay-grid h3 { margin: 8px 0; color: var(--navy); font-size: 1.22rem; }
.stay-grid p, .tcpm-help p { margin: 0; color: var(--ink-soft); }
.stay-label { color: var(--teal-dark); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.stay-label.warning { color: #8b5b11; }
.titer-paths { margin-top: 0; }
.titer-paths article { padding: 16px; }
.titer-paths h3 { font-size: 1.05rem; }
.titer-paths p { color: var(--ink-soft); font-size: .85rem; }
.tcpm-help h3 { margin: 0 0 8px; color: var(--navy); }
.tcpm-help { margin-top: 16px; padding: 20px 22px; border-left: 4px solid var(--amber); border-radius: 0 14px 14px 0; background: var(--amber-wash); }
.tcpm-help h3 { max-width: 720px; font-size: 1.05rem; line-height: 1.35; letter-spacing: -.01em; }
.tcpm-help .as-link { margin: 14px 0 0; background: transparent; }
.plan-section { margin-top: 18px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.plan-section h3 { margin: 0; color: var(--navy); font-size: 1.2rem; }
.compact-checklist { margin-bottom: 0; }
.plain-list { display: grid; gap: 9px; margin: 18px 0 0; padding-left: 22px; color: var(--ink); }
.process-steps { display: grid; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; counter-reset: process; }
.process-steps li { position: relative; min-height: 38px; padding-left: 48px; color: var(--ink-soft); }
.process-steps li::before { counter-increment: process; content: counter(process); position: absolute; left: 0; top: -3px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--teal); font-weight: 800; }
.process-steps strong { color: var(--ink); }
.facility-note { margin: 16px 0 0; padding: 12px 14px; border-left: 3px solid var(--amber); color: #5c492c; background: var(--amber-wash); font-size: .88rem; }
.plan-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 18px 0 0; }
.plan-actions .secondary-link { margin: 0; }
.button-link { border: 0; cursor: pointer; font: inherit; }
.copy-status { width: 100%; color: var(--teal-dark); font-size: .82rem; }
.internal-next { margin: 12px 0 4px; }
.internal-next .secondary-link { margin-left: 0; }
.plan-complete { margin-top: 24px; padding: 24px; border: 1px solid rgba(8,127,122,.3); border-radius: 16px; background: var(--teal-wash); }
.plan-complete h3, .next-steps h3 { margin: 0; color: var(--navy); font-size: 1.35rem; }
.plan-complete > p:not(.question-kicker) { margin: 8px 0 0; color: var(--ink-soft); }
.next-steps { margin-top: 26px; }
.next-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.next-step-grid article { display: flex; flex-direction: column; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.next-step-grid article.featured-step { border-color: rgba(8,127,122,.45); background: linear-gradient(180deg, #fff 0, var(--teal-wash) 100%); }
.next-step-number { color: var(--teal-dark); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.next-step-grid h4 { margin: 14px 0 8px; color: var(--navy); font: 700 1.05rem/1.25 Manrope, sans-serif; }
.next-step-grid p { flex: 1; margin: 0 0 18px; color: var(--ink-soft); font-size: .88rem; }
.next-step-grid .as-link { margin: 0; }
.other-rules { margin-top: 26px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--blue-wash); }
.other-rules h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.2rem; }
.other-rules > p:not(.question-kicker) { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.other-rule-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 16px; }
.other-rule-links a, .other-rule-links span { padding: 11px 12px; border-radius: 10px; background: #fff; color: var(--ink-soft); font-size: .82rem; font-weight: 700; }
.other-rule-links a { color: var(--teal-dark); text-decoration: none; }
.after-arrival-link { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.arrival-timeline { display: grid; gap: 0; margin: 24px 0 0; padding: 0; list-style: none; counter-reset: arrival; }
.arrival-timeline li { position: relative; display: grid; gap: 2px; min-height: 76px; padding: 0 0 20px 56px; }
.arrival-timeline li:not(:last-child)::after { content: ""; position: absolute; left: 19px; top: 38px; bottom: 0; width: 2px; background: var(--line); }
.arrival-timeline li::before { counter-increment: arrival; content: counter(arrival); position: absolute; left: 0; top: 0; z-index: 1; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--teal); font-weight: 800; }
.arrival-timeline strong { color: var(--navy); font-family: Manrope, sans-serif; }
.arrival-timeline span { color: var(--ink-soft); }
.reservation-stages { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.reservation-stages article { display: grid; gap: 7px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #fbfdfe; }
.reservation-stages article > span { color: var(--teal-dark); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.reservation-stages article > strong { color: var(--navy); font-family: Manrope, sans-serif; }
.reservation-stages p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.partner-directory { margin-top: 18px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #f8fbfc; }
.partner-directory h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.2rem; }
.partner-directory > p:not(.question-kicker) { margin: 0 0 18px; color: var(--ink-soft); }
.partner-directory label { display: block; margin-bottom: 8px; color: var(--navy); font-size: .88rem; font-weight: 700; }
.partner-directory .risk-search { border: 1px solid var(--line); border-radius: 10px; }
.agent-country-list { display: flex; flex-wrap: wrap; gap: 7px; max-height: 150px; overflow: auto; margin: 10px 0 16px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.agent-country { padding: 7px 10px; border: 1px solid transparent; border-radius: 7px; color: #365066; background: var(--blue-wash); cursor: pointer; font-size: .76rem; }
.agent-country:hover, .agent-country:focus-visible { border-color: var(--teal); outline: 2px solid rgba(8,127,122,.16); }
.agent-country[aria-pressed="true"] { color: #fff; background: var(--teal); }
.agent-country.hide { display: none; }
.agent-result { display: grid; gap: 5px; padding: 16px; border-left: 4px solid var(--teal); border-radius: 0 10px 10px 0; background: var(--teal-wash); }
.agent-result strong { color: var(--navy); font: 700 1.02rem Manrope, sans-serif; }
.agent-result span { color: var(--ink-soft); font-size: .88rem; }
.agent-result .agent-location { color: var(--teal-dark); font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.agent-identity { display: flex; align-items: center; gap: 14px; }
.agent-identity > div { display: grid; gap: 5px; }
.agent-logo { width: 118px; height: auto; padding: 7px; border: 1px solid var(--line); border-radius: 9px; background: #fff; object-fit: contain; }
.agent-website { width: fit-content; margin-top: 8px; color: var(--teal-dark); font-weight: 700; text-underline-offset: 3px; }
.readiness { max-width: 1120px; margin: 0 auto 36px; padding: 0 clamp(20px, 5vw, 44px); }
.sources { max-width: 1120px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 44px) 110px; }
.section-heading { max-width: 720px; margin-bottom: 24px; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); color: var(--navy); }
.readiness-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.readiness-grid article { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.82); }
.number { color: var(--teal); font: 800 .76rem Manrope, sans-serif; letter-spacing: .12em; }
.readiness-grid h3 { margin: 14px 0 7px; font-size: 1.05rem; }
.readiness-grid p { margin: 0; color: var(--ink-soft); font-size: .88rem; }
details { border-top: 1px solid var(--line); }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary { padding: 19px 4px; cursor: pointer; font-weight: 700; list-style-position: outside; }
.details-body { padding: 0 4px 20px; max-width: 880px; color: var(--ink-soft); }
.source-links { display: grid; gap: 8px; }

footer { padding: 34px clamp(20px, 5vw, 76px); color: #b6c8d4; background: var(--navy); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px 38px; font-size: .78rem; }
footer p { max-width: 760px; margin: 0; }
footer strong { color: #fff; }
footer .professional-listing { max-width: 360px; }
footer .publisher { margin-left: auto; text-align: right; }
footer a { color: #fff; font-weight: 700; text-underline-offset: 3px; }
.privacy-main { min-height: calc(100vh - 150px); padding: clamp(44px, 7vw, 82px) clamp(20px, 5vw, 76px) 90px; }
.privacy-wrap { max-width: 820px; margin: 0 auto; }
.privacy-wrap h1 { max-width: none; font-size: clamp(2.5rem, 6vw, 4.5rem); }
.privacy-intro { margin: 18px 0 32px; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.65; }
.privacy-section { padding: 24px 0; border-top: 1px solid var(--line); }
.privacy-section h2 { margin: 0 0 10px; color: var(--navy); font-size: 1.3rem; }
.privacy-section p, .privacy-section li { color: var(--ink-soft); }
.privacy-section ul { margin: 10px 0 0; padding-left: 22px; }
.privacy-back { display: inline-flex; margin-top: 28px; color: var(--teal-dark); font-weight: 800; text-decoration: none; }
.privacy-back:hover, .privacy-back:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
.noscript { padding: 20px; background: var(--danger-wash); color: var(--danger); }

/* Multi-page entry hub */
.hub-hero {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 44px) clamp(38px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
}
.hub-copy h1 { margin: 0; font-size: clamp(2.7rem, 6vw, 5.5rem); }
.hub-lead { max-width: 690px; margin: 22px 0 0; color: var(--ink-soft); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hub-copy .scope-note { max-width: 690px; margin-top: 28px; color: var(--ink-soft); }
.hub-copy .scope-note strong { display: block; margin-bottom: 2px; }
.hub-image { max-height: 500px; }
.animal-router { max-width: 1120px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 44px) clamp(76px, 9vw, 120px); }
.compact-heading { margin-bottom: 22px; }
.animal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.animal-card {
  min-height: 142px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255,255,255,.88);
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(13,45,69,.06);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.animal-card:hover, .animal-card:focus-visible { transform: translateY(-3px); border-color: var(--teal); box-shadow: 0 18px 40px rgba(8,127,122,.12); outline: none; }
.animal-card.featured-animal { grid-column: span 2; border-color: rgba(8,127,122,.35); background: linear-gradient(120deg, #fff 0, var(--teal-wash) 100%); }
.animal-card strong { display: block; color: var(--navy); font: 800 1.25rem Manrope, sans-serif; }
.animal-card small { display: block; max-width: 470px; margin-top: 5px; color: var(--ink-soft); font-size: .9rem; line-height: 1.45; }
.animal-card b { color: var(--teal); font-size: 1.35rem; }
.animal-code { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: var(--teal); font: 800 1.05rem Manrope, sans-serif; }
.animal-code.cat { color: var(--navy); background: var(--amber); }
.animal-code.bird { background: #316a97; }
.animal-code.small { background: #7a527e; }
.animal-code.reptile { background: #3f7359; }
.animal-code.other { color: var(--navy); background: var(--blue-wash); }
.agency-strip { max-width: 1120px; margin: 0 auto 70px; padding: 34px clamp(20px, 5vw, 44px); border-radius: 24px; color: #fff; background: var(--navy); }
.agency-strip > div:first-child { max-width: 720px; }
.agency-strip .eyebrow { color: #80d6cf; }
.agency-strip h2 { margin: 0; font-size: clamp(1.9rem, 4vw, 3.2rem); }
.agency-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; }
.agency-grid article { display: grid; gap: 6px; padding: 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; background: rgba(255,255,255,.05); }
.agency-grid strong { color: #fff; font-family: Manrope, sans-serif; }
.agency-grid span { color: #b8cbd8; font-size: .84rem; line-height: 1.45; }
.hub-sources { padding-bottom: 90px; }

/* Focused guidance pages */
.topic-main { max-width: 1120px; margin: 0 auto; padding: clamp(48px, 8vw, 92px) clamp(20px, 5vw, 44px) 90px; overflow: visible; }
.topic-hero { max-width: 900px; padding-bottom: clamp(38px, 6vw, 64px); }
.topic-hero h1 { max-width: 900px; font-size: clamp(2.5rem, 6vw, 5rem); }
.topic-hero > p:not(.eyebrow) { max-width: 780px; margin: 22px 0 0; color: var(--ink-soft); font-size: clamp(1.05rem, 2vw, 1.22rem); }
.caution-hero { padding-left: 24px; border-left: 5px solid var(--amber); }
.path-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 70px; }
.path-card { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(24px, 4vw, 38px); border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 14px 44px rgba(13,45,69,.07); }
.path-card.high-risk-card { border-color: rgba(8,127,122,.38); background: linear-gradient(145deg, #fff 0, var(--teal-wash) 100%); }
.path-label { color: var(--teal-dark); font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.path-card h2 { margin: 12px 0 10px; color: var(--navy); font-size: clamp(1.55rem, 3vw, 2.35rem); }
.path-card p { flex: 1; margin: 0 0 24px; color: var(--ink-soft); }
.path-card .secondary-link { margin: 0; }
.topic-section { margin: 26px 0 70px; padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.topic-section > h2 { max-width: 850px; margin: 0 0 12px; color: var(--navy); font-size: clamp(1.8rem, 4vw, 3rem); }
.topic-section > p:not(.eyebrow) { max-width: 840px; color: var(--ink-soft); }
.compact-section { background: var(--blue-wash); }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 26px; }
.check-grid article { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #fbfdfe; }
.check-grid article > span { color: var(--teal); font: 800 .75rem Manrope, sans-serif; letter-spacing: .1em; }
.check-grid h3 { margin: 11px 0 7px; color: var(--navy); font-size: 1.05rem; }
.check-grid p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.bird-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.official-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.official-actions a { padding: 11px 14px; border: 1px solid rgba(8,127,122,.3); border-radius: 10px; color: var(--teal-dark); background: #fff; font-weight: 700; text-decoration: none; }
.official-actions a:hover, .official-actions a:focus-visible { border-color: var(--teal); background: var(--teal-wash); outline: none; }
.standalone-actions { margin: 18px 0 46px; }
.ordered-checklist { padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.ordered-checklist h2 { margin: 0 0 24px; color: var(--navy); font-size: clamp(1.8rem, 4vw, 3rem); }
.ordered-checklist ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: guide-list; }
.ordered-checklist li { position: relative; display: grid; gap: 3px; min-height: 78px; padding: 0 0 22px 60px; counter-increment: guide-list; }
.ordered-checklist li:not(:last-child)::after { content: ""; position: absolute; left: 20px; top: 42px; bottom: 0; width: 1px; background: var(--line); }
.ordered-checklist li::before { content: counter(guide-list); position: absolute; left: 0; top: 0; z-index: 1; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--teal); font-weight: 800; }
.ordered-checklist strong { color: var(--navy); font: 700 1.04rem Manrope, sans-serif; }
.ordered-checklist span { color: var(--ink-soft); }
.callout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0 60px; }
.callout-grid article { display: flex; flex-direction: column; align-items: flex-start; padding: 28px; border-radius: 18px; background: var(--teal-wash); }
.callout-grid article:last-child { background: var(--blue-wash); }
.callout-grid h2 { margin: 0 0 8px; color: var(--navy); font-size: 1.5rem; }
.callout-grid p:not(.eyebrow) { margin: 0 0 20px; color: var(--ink-soft); }
.callout-grid .source-links { margin-top: auto; }
.warning-panel { margin: 18px 0; padding: 24px; border-left: 5px solid var(--amber); border-radius: 0 16px 16px 0; background: var(--amber-wash); }
.warning-panel strong { color: var(--navy); font: 800 1.2rem Manrope, sans-serif; }
.warning-panel p { max-width: 820px; color: #5c492c; }
.fact-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin: 0 0 22px; }
.fact-grid article { padding: 24px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.fact-grid h2 { margin: 13px 0 8px; color: var(--navy); font-size: 1.3rem; }
.fact-grid p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.fact-status { display: inline-flex; padding: 5px 9px; border-radius: 999px; font-size: .74rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.fact-status.required { color: var(--teal-dark); background: var(--teal-wash); }
.fact-status.recommended { color: #76500f; background: var(--amber-wash); }
.fact-status.variable { color: #31516c; background: var(--blue-wash); }
.cat-island-warning { margin: 22px 0 54px; }
.small-species-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-bottom: 22px; }
.small-species-grid article { display: flex; flex-direction: column; align-items: flex-start; padding: 24px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.small-species-grid article > span { color: var(--teal-dark); font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.small-species-grid strong { margin: 12px 0 8px; color: var(--navy); font: 800 1.15rem/1.3 Manrope, sans-serif; }
.small-species-grid p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.small-species-grid a { margin-top: 16px; color: var(--teal-dark); font-size: .85rem; font-weight: 800; }
.small-species-grid .sugar-glider-card { border-color: rgba(241,169,58,.55); background: var(--amber-wash); }
.page-back { display: inline-flex; margin-top: 18px; color: var(--teal-dark); font-weight: 800; text-decoration: none; }
.page-back:hover, .page-back:focus-visible { text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 820px) {
  .independent { display: none; }
  .site-nav { display: none; }
  .intro { grid-template-columns: 1fr; padding-top: 48px; }
  .intro-image { max-height: 330px; border-radius: 22px 6px 22px 22px; }
  .guide-shell { grid-template-columns: 1fr; }
  .journey { padding: 18px 22px; border-radius: 18px 18px 0 0; }
  .journey-label { margin-bottom: 12px; }
  .journey ol { display: grid; grid-template-columns: repeat(5, 1fr); }
  .journey li { min-height: auto; display: flex; justify-content: center; }
  .journey li b { display: none; }
  .journey li:not(:last-child)::after { left: 50%; right: -50%; top: 15px; bottom: auto; width: auto; height: 1px; }
  .text-button { display: none; }
  .decision-panel { min-height: 520px; border-left: 1px solid var(--line); border-top: 0; border-radius: 0 0 18px 18px; }
  .readiness-grid, .next-step-grid, .other-rule-links { grid-template-columns: 1fr; }
  .hub-hero { grid-template-columns: 1fr; padding-top: 54px; }
  .hub-image { max-height: 330px; }
  .agency-strip { border-radius: 0; }
  .agency-grid { grid-template-columns: 1fr 1fr; }
  .path-split, .callout-grid { grid-template-columns: 1fr; }
  .bird-grid { grid-template-columns: 1fr 1fr; }
  .small-species-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .news-banner { align-items: flex-start; justify-content: space-between; }
  .news-banner div { display: grid; gap: 2px; justify-content: start; }
  .topbar { min-height: 62px; }
  .intro { padding-bottom: 28px; }
  .intro-image { max-height: 240px; }
  .choice-grid.two, .risk-actions { grid-template-columns: 1fr; }
  .choice { min-height: 88px; }
  .decision-panel { padding: 28px 20px 34px; }
  .panel-topline { margin-bottom: 34px; }
  .source-chip { display: none; }
  .titer-validity { grid-template-columns: 1fr; gap: 3px; }
  .stay-grid { grid-template-columns: 1fr; }
  .reservation-stages { grid-template-columns: 1fr; }
  .help-choice-grid { grid-template-columns: 1fr; }
  .early-help { align-items: flex-start; flex-direction: column; }
  .early-help button { align-self: flex-start; text-align: left; }
  .agent-identity { align-items: flex-start; flex-direction: column; }
  .secondary-link { margin: 10px 0 0; width: 100%; justify-content: center; }
  .result-actions .secondary-link { width: auto; }
  footer { flex-direction: column; }
  footer .publisher { margin-left: 0; text-align: left; }
  .animal-grid { grid-template-columns: 1fr; }
  .animal-card.featured-animal { grid-column: auto; }
  .animal-card { min-height: 118px; grid-template-columns: 48px 1fr auto; padding: 18px; }
  .animal-code { width: 48px; height: 48px; }
  .agency-grid, .check-grid, .bird-grid, .fact-grid { grid-template-columns: 1fr; }
  .topic-main { padding-top: 48px; }
  .topic-hero h1 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .ordered-checklist { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media print {
  body { background: #fff; }
  body > :not(main), .intro, .readiness, .sources, .journey, .panel-topline, .plan-complete, .next-steps, .internal-next, .tcpm-help, .partner-directory, .back-button { display: none !important; }
  main, .guide-shell, .decision-panel { display: block; width: 100%; margin: 0; padding: 0; border: 0; box-shadow: none; }
  .printable-plan { display: block; }
  .plan-section { break-inside: avoid; }
}
