:root {
  --paper: #f5f4f0;
  --grey: #e9e8e4;
  --grey-2: #d9d8d3;
  --ink: #171719;
  --muted: #4f4e53;
  --white: #fffefa;
  --purple: #6656d9;
  --purple-dark: #4837b7;
  --purple-soft: #dcd7ff;
  --aqua: #76dfd1;
  --aqua-soft: #d9f5f0;
  --butter: #f6ef9d;
  --butter-soft: #fbf8d8;
  --poppy: #ff6f61;
  --poppy-soft: #ffe1dc;
  --line: #202024;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(33, 31, 45, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(23, 23, 25, .07) .55px, transparent .55px);
  background-size: 6px 6px;
  opacity: .18;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: 3px; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--poppy); outline-offset: 4px; }
.site-shell { max-width: 1480px; margin: 0 auto; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 20px; top: -80px; z-index: 100; padding: 12px 18px; background: var(--ink); color: white; }
.skip-link:focus { top: 20px; }

/* Header */
.site-header {
  width: min(100% - 64px, 1320px);
  min-height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(23, 23, 25, .22);
}
.wordmark { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: 15px; font-weight: 650; letter-spacing: -.02em; }
.wordmark strong { color: var(--purple-dark); }
.wordmark-mark { position: relative; width: 38px; height: 28px; display: inline-block; }
.wordmark-mark::after { content: ""; position: absolute; left: 4px; right: 4px; top: 13px; height: 3px; background: var(--ink); transform: rotate(-8deg); }
.wordmark-mark i { position: absolute; z-index: 1; width: 10px; height: 10px; border: 2px solid var(--ink); border-radius: 50%; background: var(--paper); }
.wordmark-mark i:nth-child(1) { left: 1px; top: 15px; background: var(--poppy); }
.wordmark-mark i:nth-child(2) { left: 15px; top: 8px; background: var(--butter); }
.wordmark-mark i:nth-child(3) { right: 0; top: 2px; background: var(--aqua); }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a:not(.button) { text-decoration: none; color: #414046; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.button):hover, .site-nav > a[aria-current="page"] { color: var(--purple-dark); }
.nav-toggle { display: none; }

/* Type and shared layout */
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); letter-spacing: -.045em; text-wrap: balance; }
h1 { font-size: clamp(3.25rem, 6.4vw, 6.35rem); line-height: .96; margin-bottom: 30px; }
h2 { font-size: clamp(2.15rem, 3.7vw, 4rem); line-height: 1.06; margin-bottom: 24px; }
h3 { font-size: 1.15rem; line-height: 1.25; letter-spacing: -.025em; }
p { margin-bottom: 1.25em; }
.kicker, .mini-label {
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.section { width: min(100% - 64px, 1200px); margin: 0 auto; padding: 120px 0; }
.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading > p:not(.kicker) { max-width: 630px; color: var(--muted); font-size: 18px; }
.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr); gap: 80px; align-items: end; }
.split-heading p { margin-bottom: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 56px;
  padding: 14px 23px;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  background: var(--purple);
  color: white;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 4px 5px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button span { padding-left: 12px; border-left: 1px solid rgba(255,255,255,.45); font-size: 11px; letter-spacing: .03em; }
.button:hover { transform: translate(-2px, -2px); box-shadow: 6px 7px 0 var(--ink); background: var(--purple-dark); }
.button-small { min-height: 42px; padding: 9px 18px; box-shadow: 3px 3px 0 var(--ink); font-size: 13px; }
.button-light { background: var(--white); color: var(--ink); }
.button-light span { border-left-color: rgba(23,23,25,.35); }
.button-light:hover { background: var(--butter); }
.text-link { display: inline-flex; gap: 10px; align-items: center; font-weight: 750; text-decoration: underline; text-decoration-thickness: 1.5px; }
.text-link span { color: var(--purple-dark); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

/* Home hero */
.hero {
  width: min(100% - 64px, 1320px);
  min-height: 690px;
  margin: 0 auto;
  padding: 94px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
}
.hero-copy { max-width: 760px; }
.hero h1 em { color: var(--purple); font-weight: inherit; white-space: nowrap; }
.hero-lede { max-width: 680px; font-size: clamp(18px, 2vw, 23px); line-height: 1.55; letter-spacing: -.015em; }
.hero-lede strong { color: var(--ink); font-weight: 800; }
.hero-explainer { max-width: 700px; margin: 34px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--grey-2); border-bottom: 1px solid var(--grey-2); }
.hero-explainer div { padding: 16px 16px 16px 0; display: flex; flex-direction: column; border-right: 1px solid var(--grey-2); }
.hero-explainer div + div { padding-left: 16px; }
.hero-explainer div:last-child { border-right: 0; }
.hero-explainer span { margin-bottom: 3px; color: var(--purple-dark); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.hero-explainer b { font-size: 13px; line-height: 1.35; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; margin-top: 36px; }
.microcopy { margin: 23px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; color: var(--muted); font-size: 12px; }
.microcopy span { display: inline-flex; align-items: center; gap: 7px; }
.mini-icon { width: 15px; height: 15px; flex: none; }
.route-visual {
  position: relative;
  min-height: 470px;
  padding: 32px;
  border: 1.5px solid var(--ink);
  border-radius: 34px;
  background: var(--grey);
  box-shadow: 13px 15px 0 var(--purple-soft), 14.5px 16.5px 0 var(--ink);
  transform: rotate(1.5deg);
}
.route-visual::before { content: ""; position: absolute; width: 130px; height: 130px; right: -38px; top: -48px; border-radius: 50%; background: var(--aqua); border: 1.5px solid var(--ink); z-index: -1; }
.route-ticket { display: flex; flex-direction: column; gap: 5px; padding: 22px; border: 1px solid var(--ink); border-radius: 17px; background: var(--white); box-shadow: 5px 5px 0 var(--ink); }
.route-ticket .mini-label { margin: 0 0 4px; color: var(--purple-dark); }
.route-ticket small { color: var(--muted); }
.route-line { position: relative; height: 165px; margin: 10px 20px; display: flex; align-items: center; justify-content: space-between; }
.route-line::before { content: ""; position: absolute; left: 20px; right: 20px; top: 83px; height: 4px; background: var(--purple); transform: rotate(-5deg); }
.route-line > i { position: relative; z-index: 1; width: 14px; height: 14px; border: 3px solid var(--ink); border-radius: 50%; background: var(--butter); }
.route-stop { position: relative; z-index: 2; display: flex; flex-direction: column; width: 80px; }
.route-stop::after { content: ""; width: 20px; height: 20px; margin-top: 10px; border: 4px solid var(--ink); border-radius: 50%; background: var(--poppy); }
.route-stop.finish { align-items: flex-end; text-align: right; transform: translateY(28px); }
.route-stop.finish::after { background: var(--aqua); }
.route-stop small { color: var(--muted); white-space: nowrap; font-size: 11px; }
.route-result { display: grid; grid-template-columns: auto 1fr; gap: 2px 12px; align-items: center; padding: 18px 20px; border-radius: 16px; background: var(--purple); color: white; }
.route-result strong { display: flex; align-items: center; gap: 8px; }
.route-result .result-badge { grid-row: span 2; padding: 7px 8px; background: var(--butter); color: var(--ink); border-radius: 6px; font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; writing-mode: vertical-rl; }
.route-result > span:last-child { color: rgba(255,255,255,.88); font-size: 12px; }
.trust-strip { min-height: 80px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(12px, 2.5vw, 34px); padding: 20px 32px; background: var(--purple-soft); color: var(--ink); border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip strong { padding: 8px 13px; border-radius: 100px; background: var(--butter); color: var(--ink); border: 1px solid var(--ink); font-size: 10px; }
.trust-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--purple); }

/* Starting prompts */
.starting-point { padding-bottom: 140px; }
.prompt-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.prompt-card { min-height: 270px; padding: 26px; border: 1.5px solid var(--ink); border-radius: 18px; display: flex; flex-direction: column; }
.prompt-card span { width: fit-content; padding: 4px 8px; border: 1px solid var(--ink); border-radius: 100px; background: rgba(255,255,255,.55); font-size: 10px; font-weight: 800; }
.prompt-card h3 { margin: 26px 0 10px; font-family: var(--serif); font-size: 28px; }
.prompt-card p { margin: 0; font-size: 15px; line-height: 1.6; }
.prompt-card.purple { background: var(--purple-soft); }
.prompt-card.aqua { background: var(--aqua-soft); }
.prompt-card.butter { background: var(--butter-soft); }
.prompt-card.poppy { background: var(--poppy-soft); }

/* Deliverable */
.deliverable { width: auto; max-width: none; padding: 120px max(32px, calc((100% - 1200px)/2)); background: var(--grey); }
.plan-preview { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 330px 1fr; border: 1.5px solid var(--ink); border-radius: 24px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.preview-sidebar { padding: 34px 30px; background: var(--purple); color: white; }
.preview-sidebar h3 { margin: 12px 0; font-family: var(--serif); font-size: 34px; }
.preview-sidebar > p { color: rgba(255,255,255,.85); font-size: 13px; }
.preview-score { margin-top: 70px; padding: 20px; border-radius: 15px; background: var(--butter); color: var(--ink); display: flex; flex-direction: column; }
.preview-score strong { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.preview-score b { margin: 6px 0; font-family: var(--serif); font-size: 40px; line-height: 1; }
.preview-score span { font-size: 12px; }
.preview-body { padding: 38px 44px 42px; }
.preview-header { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--grey-2); color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.preview-body > h3 { margin-top: 30px; font-family: var(--serif); font-size: 30px; }
.leg-list { margin: 28px 0; border-top: 1px solid var(--ink); }
.leg-list div { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--grey-2); font-size: 13px; }
.leg-list span { color: var(--muted); }
.tradeoff { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 19px; margin-bottom: 26px; border: 1px solid var(--ink); border-radius: 12px; background: var(--poppy-soft); }
.tradeoff p { margin: 0; font-size: 13px; }

/* Method */
.method { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(480px, 1.3fr); gap: 70px 110px; }
.method .section-heading { grid-row: span 2; }
.method-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.method-list li { display: grid; grid-template-columns: 46px 1fr; gap: 22px; padding: 25px 0; border-bottom: 1px solid var(--grey-2); }
.method-list li > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--aqua); border: 1px solid var(--ink); font-weight: 850; }
.method-list h3 { margin-bottom: 7px; }
.method-list p { margin: 0; color: var(--muted); font-size: 15px; }
.method-note { grid-column: 2; padding: 22px 25px; border-radius: 14px; background: var(--butter-soft); border: 1px solid var(--ink); }
.method-note p { margin: 5px 0 0; font-size: 13px; }

/* Cards and guides */
.guide-section { border-top: 1px solid var(--grey-2); }
.featured-guides { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 18px; }
.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.guide-card > a { min-height: 245px; padding: 24px; display: flex; flex-direction: column; border: 1px solid var(--ink); border-radius: 17px; background: var(--white); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.guide-card > a:hover { transform: translateY(-4px); box-shadow: 5px 6px 0 var(--ink); background: var(--butter-soft); }
.guide-card-featured > a { min-height: 330px; padding: 32px; background: var(--purple-soft); }
.guide-card-featured:nth-child(2) > a { background: var(--aqua-soft); }
.guide-flag { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--white); font-size: 21px; font-weight: 800; letter-spacing: .04em; }
.guide-status { width: fit-content; margin: -40px 0 auto auto; padding: 4px 8px; border: 1px solid var(--ink); border-radius: 100px; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: var(--white); }
.guide-card h3 { margin: 40px 0 7px; font-family: var(--serif); font-size: 32px; }
.guide-card-featured h3 { font-size: 48px; }
.guide-card p { color: var(--muted); font-size: 14px; }
.guide-card .text-link { margin-top: auto; font-size: 13px; }
.all-guides-link { margin-top: 30px; }

/* Founder */
.founder-section { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(400px, 1.1fr); gap: 90px; align-items: center; }
.founder-visual { min-height: 540px; }
.founder-photo { width: 100%; height: 560px; object-fit: cover; object-position: 50% 42%; border: 1.5px solid var(--ink); border-radius: 50% 50% 22px 22px; box-shadow: 12px 12px 0 var(--aqua), 13.5px 13.5px 0 var(--ink); }
.founder-placeholder { position: relative; min-height: 540px; overflow: hidden; border: 1.5px solid var(--ink); border-radius: 50% 50% 22px 22px; background: var(--grey); box-shadow: 12px 12px 0 var(--aqua), 13.5px 13.5px 0 var(--ink); }
.founder-placeholder svg { position: absolute; inset: 40px -30px 60px; width: calc(100% + 60px); height: calc(100% - 100px); }
.founder-placeholder path { fill: none; stroke: var(--purple); stroke-width: 5; stroke-linecap: round; }
.founder-placeholder circle { fill: var(--poppy); stroke: var(--ink); stroke-width: 2; }
.founder-placeholder p { position: absolute; left: 34px; bottom: 24px; margin: 0; font-family: var(--serif); font-size: 25px; font-weight: bold; }
.founder-placeholder small { font-family: var(--sans); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.paw-dot { position: absolute; right: 42px; top: 64px; width: 80px; height: 80px; display: grid; place-items: center; border-radius: 50%; background: var(--butter); border: 1px solid var(--ink); font-family: var(--serif); font-size: 38px; font-weight: bold; }
.founder-copy { max-width: 610px; }
.founder-copy > p:not(.kicker) { font-size: 18px; color: #49484e; }

/* FAQ and CTA */
.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; border-top: 1px solid var(--grey-2); }
.faq-list details { border-top: 1px solid var(--ink); }
.faq-list details:last-child { border-bottom: 1px solid var(--ink); }
.faq-list summary { cursor: pointer; list-style: none; padding: 22px 46px 22px 0; position: relative; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--purple-dark); }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; top: 17px; font-family: var(--serif); font-size: 28px; color: var(--purple); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 700px; padding: 0 44px 22px 0; color: var(--muted); font-size: 14px; }
.final-cta { padding: 110px max(32px, calc((100% - 1050px)/2)); text-align: center; background: var(--purple); color: white; }
.final-cta h2 { max-width: 850px; margin-left: auto; margin-right: auto; }
.final-cta > p:not(.kicker) { max-width: 680px; margin: 0 auto 34px; color: rgba(255,255,255,.87); font-size: 18px; }

/* Footer */
.site-footer { width: min(100% - 64px, 1200px); margin: 0 auto; padding: 80px 0 36px; display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; }
.footer-statement { max-width: 460px; font-family: var(--serif); font-size: 30px; line-height: 1.18; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links div { display: flex; flex-direction: column; gap: 9px; }
.footer-links strong { margin-bottom: 6px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.footer-links a { color: var(--muted); font-size: 13px; }
.fine-print { grid-column: 1 / -1; margin: 30px 0 0; padding-top: 25px; border-top: 1px solid var(--grey-2); color: var(--muted); font-size: 11px; }

/* Standard page heroes */
.page-hero { width: min(100% - 64px, 1200px); min-height: 500px; margin: 0 auto; padding: 100px 0; display: flex; flex-direction: column; justify-content: center; }
.page-hero h1 { max-width: 1000px; font-size: clamp(3.5rem, 7vw, 7rem); }
.page-hero > p:not(.kicker), .about-hero > p { max-width: 720px; color: var(--muted); font-size: 21px; }
.compact-hero { min-height: 440px; border-bottom: 1px solid var(--grey-2); }
.compact-hero h1 { font-size: clamp(3.4rem, 6vw, 6rem); }
.guide-directory { padding-top: 80px; }
.all-guide-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.source-principle { margin-top: 70px; padding: 30px; display: grid; grid-template-columns: 160px 1fr; gap: 30px; border: 1px solid var(--ink); border-radius: 16px; background: var(--butter-soft); }
.source-principle span { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.source-principle p { margin: 0; }

/* Guide pages */
.guide-article { width: min(100% - 64px, 1200px); margin: 0 auto; }
.guide-hero { padding: 54px 0 70px; }
.breadcrumbs { display: flex; gap: 10px; margin-bottom: 60px; color: var(--muted); font-size: 12px; }
.guide-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 70px; align-items: end; }
.guide-hero h1 { max-width: 900px; font-size: clamp(3.6rem, 6.7vw, 6.8rem); }
.guide-deck { max-width: 850px; margin-bottom: 0; font-size: 20px; line-height: 1.55; color: #46454a; }
.country-stamp { aspect-ratio: 1; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; border: 1.5px solid var(--ink); border-radius: 50%; background: var(--aqua-soft); text-align: center; transform: rotate(4deg); box-shadow: 8px 8px 0 var(--purple-soft); }
.country-stamp span { margin-bottom: auto; font-size: 48px; font-weight: 800; letter-spacing: .03em; }
.country-stamp b { font-family: var(--serif); font-size: 30px; }
.country-stamp small { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.glance { margin: 0 -100vw; padding: 55px 100vw; background: var(--ink); color: white; }
.glance h2 { font-family: var(--sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.glance dl { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; margin: 0; }
.glance dl div { padding-right: 20px; border-right: 1px solid rgba(255,255,255,.22); }
.glance dl div:last-child { border: 0; }
.glance dt { color: rgba(255,255,255,.58); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.glance dd { margin: 8px 0 0; font-family: var(--serif); font-size: 19px; line-height: 1.25; }
.update-card { margin: 72px 0; padding: 28px 34px; display: grid; grid-template-columns: 150px 1fr; gap: 30px; border: 1px solid var(--ink); border-radius: 18px; background: var(--poppy-soft); }
.update-card > span { width: fit-content; height: fit-content; padding: 5px 9px; border: 1px solid var(--ink); border-radius: 100px; background: var(--poppy); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.update-card h2 { margin-bottom: 10px; font-family: var(--sans); font-size: 24px; letter-spacing: -.03em; }
.update-card p { margin: 0; }
.article-layout { display: grid; grid-template-columns: 210px minmax(0, 780px); justify-content: space-between; gap: 80px; padding: 50px 0 100px; }
.article-nav { position: sticky; top: 30px; align-self: start; display: flex; flex-direction: column; gap: 9px; padding: 20px; border-left: 3px solid var(--purple); font-size: 12px; }
.article-nav strong { margin-bottom: 7px; text-transform: uppercase; letter-spacing: .08em; }
.article-nav a { color: var(--muted); }
.article-body h2 { font-size: clamp(2.2rem, 3.5vw, 3.6rem); }
.article-body p, .article-body li { color: #454449; }
.rules-section, .prose-section, .guide-faq, .source-section { scroll-margin-top: 30px; padding: 55px 0; border-bottom: 1px solid var(--grey-2); }
.prose-section > p { font-size: 18px; line-height: 1.75; }
.prose-section ul { margin: 26px 0 0; padding: 0; list-style: none; }
.prose-section li { position: relative; padding: 13px 0 13px 34px; border-top: 1px solid var(--grey-2); }
.prose-section li::before { content: ""; position: absolute; left: 4px; top: 23px; width: 10px; height: 10px; border-radius: 50%; background: var(--aqua); border: 1px solid var(--ink); }
.table-wrap { overflow-x: auto; margin-top: 30px; border: 1px solid var(--ink); border-radius: 14px; background: var(--white); }
table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 13px; line-height: 1.5; }
th, td { padding: 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--grey-2); }
thead th { background: var(--butter); color: var(--ink); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
tbody th { width: 20%; font-size: 13px; }
tbody td:last-child { width: 40%; color: var(--muted); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
.route-examples { margin: 60px 0; padding: 38px; border: 1px solid var(--ink); border-radius: 20px; background: var(--purple-soft); }
.route-examples > div { display: grid; gap: 10px; }
.route-examples article { padding: 20px; border-radius: 12px; background: rgba(255,255,255,.6); }
.route-examples h3 { margin-bottom: 7px; }
.route-examples p { margin: 0; font-size: 13px; }
.source-section ul { margin: 30px 0; padding: 0; list-style: none; }
.source-section li { border-top: 1px solid var(--grey-2); }
.source-section a { padding: 15px 0; display: flex; flex-direction: column; text-decoration: none; }
.source-section a:hover strong { color: var(--purple-dark); text-decoration: underline; }
.source-section span { color: var(--muted); font-size: 12px; }
.source-section small { margin-top: 3px; color: #85838a; word-break: break-all; }
.source-date { padding: 12px 15px; background: var(--grey); font-size: 12px; }
.guide-cta { padding: 85px max(32px, calc((100% - 1050px)/2)); display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; background: var(--purple); color: white; }
.guide-cta h2 { max-width: 700px; }
.guide-cta p:not(.kicker) { max-width: 680px; color: rgba(255,255,255,.87); }
.related-guides { padding-top: 90px; }

/* About, plan, legal, 404 */
.about-hero { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: end; border-bottom: 1px solid var(--grey-2); }
.about-hero h1 { font-size: clamp(3.7rem, 7vw, 6.8rem); }
.about-photo-band { position: relative; width: min(100% - 64px, 1320px); height: min(62vw, 650px); min-height: 420px; margin: 0 auto; overflow: hidden; border: 1px solid var(--ink); border-radius: 26px; background: var(--ink); }
.about-photo-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 64%; opacity: .93; }
.about-photo-band::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(14,14,16,.75)); pointer-events: none; }
.about-photo-band p { position: absolute; z-index: 1; left: 34px; bottom: 24px; max-width: 580px; margin: 0; color: white; font-family: var(--serif); font-size: clamp(20px, 2.3vw, 32px); line-height: 1.25; }
.about-photo-band p span { display: block; margin-bottom: 7px; font-family: var(--sans); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; color: var(--butter); }
.story-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 110px; }
.story-copy { max-width: 700px; }
.story-copy > p { font-size: 18px; color: var(--muted); }
.story-note { align-self: start; padding: 30px; border: 1px solid var(--ink); border-radius: 20px; background: var(--aqua-soft); transform: rotate(1deg); }
.story-note > span { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.story-note ul { padding-left: 20px; }
.sardinia-story { padding-top: 20px; display: grid; grid-template-columns: minmax(300px, .75fr) minmax(360px, 1.25fr); gap: 100px; align-items: center; }
.sardinia-story figure { margin: 0; }
.sardinia-story img { width: 100%; height: 610px; object-fit: cover; border: 1px solid var(--ink); border-radius: 180px 180px 20px 20px; box-shadow: 10px 10px 0 var(--butter), 11.5px 11.5px 0 var(--ink); }
.sardinia-story figcaption { margin: 18px 0 0 10px; color: var(--muted); font-size: 12px; font-style: italic; }
.sardinia-story > div { max-width: 590px; }
.sardinia-story > div > p:not(.kicker) { color: var(--muted); font-size: 18px; }
.plan-hero { text-align: center; align-items: center; }
.plan-hero > p:not(.kicker) { margin-left: auto; margin-right: auto; }
.plan-hero small { display: block; max-width: 600px; margin-top: 25px; color: var(--muted); }
.intake-preview { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; border-top: 1px solid var(--grey-2); }
.intake-preview ol { margin: 0; padding: 0; list-style: none; }
.intake-preview li { display: grid; grid-template-columns: 55px 1fr; padding: 20px 0; border-top: 1px solid var(--grey-2); }
.intake-preview li > span { grid-row: span 2; color: var(--purple-dark); font-size: 11px; font-weight: 850; }
.intake-preview li p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }
.scope-panel { display: grid; grid-template-columns: 1fr 330px; gap: 100px; padding: 70px; border: 1px solid var(--ink); border-radius: 24px; background: var(--grey); }
.scope-panel li { margin: 10px 0; }
.scope-panel aside { padding: 28px; border: 1px solid var(--ink); border-radius: 17px; background: var(--butter); box-shadow: 6px 6px 0 var(--ink); }
.scope-panel aside strong { display: block; font-family: var(--serif); font-size: 62px; line-height: 1; }
.scope-panel aside > span { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.scope-panel aside p { font-size: 12px; }
.legal-copy { max-width: 760px; }
.legal-copy h2 { margin-top: 60px; font-family: var(--sans); font-size: 25px; letter-spacing: -.03em; }
.not-found { min-height: 650px; width: min(100% - 64px, 900px); margin: 0 auto; padding: 120px 0; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.not-found h1 { font-size: clamp(4rem, 8vw, 8rem); }
.not-found p:not(.kicker) { color: var(--muted); font-size: 18px; }
.not-found > div { display: flex; align-items: center; justify-content: center; gap: 30px; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 900px; }
  .route-visual { width: min(100%, 620px); margin-left: auto; }
  .prompt-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .prompt-card { transform: none !important; }
  .method { gap: 60px; }
  .guide-grid, .all-guide-grid { grid-template-columns: repeat(2, 1fr); }
  .glance dl { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .glance dl div:nth-child(3) { border-right: 0; }
  .article-layout { grid-template-columns: 170px minmax(0, 1fr); gap: 50px; }
}

@media (max-width: 760px) {
  .site-header { width: min(100% - 36px, 1320px); min-height: 76px; flex-wrap: wrap; }
  .site-nav { width: 100%; padding: 18px 0 24px; align-items: flex-start; flex-direction: column; gap: 15px; }
  .js .nav-toggle { display: flex; width: 42px; height: 42px; padding: 11px 9px; border: 1px solid var(--ink); border-radius: 50%; background: var(--butter); flex-direction: column; justify-content: center; gap: 6px; }
  .nav-toggle > span:not(.sr-only) { display: block; height: 2px; background: var(--ink); }
  .js .site-nav { position: absolute; z-index: 20; left: 18px; right: 18px; top: 70px; width: auto; padding: 24px; display: none; align-items: stretch; gap: 18px; border: 1px solid var(--ink); border-radius: 18px; background: var(--white); box-shadow: 6px 6px 0 var(--ink); }
  .js .site-nav.is-open { display: flex; }
  .site-nav .button { margin-top: 5px; }
  h1 { font-size: clamp(2.8rem, 13vw, 5rem); }
  h2 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .section, .page-hero, .guide-article, .site-footer { width: min(100% - 36px, 1200px); }
  .section { padding: 82px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 0; }
  .hero { width: min(100% - 36px, 1320px); padding: 70px 0 90px; grid-template-columns: 1fr; gap: 65px; }
  .hero-lede { font-size: 18px; }
  .hero-explainer { grid-template-columns: 1fr; }
  .hero-explainer div, .hero-explainer div + div { padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--grey-2); }
  .hero-explainer div:last-child { border-bottom: 0; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .route-visual { min-height: 415px; padding: 20px; box-shadow: 8px 9px 0 var(--purple-soft), 9.5px 10.5px 0 var(--ink); }
  .route-visual::before { width: 90px; height: 90px; right: -20px; }
  .route-line { margin: 6px 4px; }
  .route-result { padding: 15px; }
  .trust-strip { justify-content: flex-start; }
  .prompt-grid, .featured-guides, .guide-grid, .all-guide-grid { grid-template-columns: 1fr; }
  .prompt-card { min-height: 220px; }
  .deliverable { padding: 82px 18px; }
  .plan-preview { grid-template-columns: 1fr; }
  .preview-score { margin-top: 30px; }
  .preview-body { padding: 28px 22px; }
  .leg-list div { grid-template-columns: 1fr auto; }
  .leg-list span { grid-row: 2; }
  .tradeoff { grid-template-columns: 1fr; gap: 4px; }
  .method { grid-template-columns: 1fr; gap: 28px; }
  .method .section-heading { grid-row: auto; }
  .method-note { grid-column: auto; }
  .guide-card-featured > a { min-height: 270px; }
  .founder-section, .faq-section, .about-hero, .story-grid, .intake-preview { grid-template-columns: 1fr; gap: 50px; }
  .about-photo-band { width: min(100% - 36px, 1320px); min-height: 440px; }
  .about-photo-band p { left: 22px; right: 22px; bottom: 20px; }
  .sardinia-story { grid-template-columns: 1fr; gap: 55px; }
  .sardinia-story img { height: 540px; }
  .founder-visual, .founder-placeholder { min-height: 440px; }
  .site-footer { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .fine-print { grid-column: auto; }
  .page-hero { min-height: 420px; padding: 70px 0; }
  .guide-hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .breadcrumbs { margin-bottom: 35px; }
  .country-stamp { width: 210px; }
  .glance { margin: 0 -18px; padding: 45px 18px; }
  .glance dl { grid-template-columns: repeat(2, 1fr); }
  .glance dl div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); padding-bottom: 18px; }
  .update-card { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; padding-top: 20px; }
  .article-nav { position: static; border-left: 0; border-top: 3px solid var(--purple); background: var(--grey); }
  .guide-cta { grid-template-columns: 1fr; gap: 20px; }
  .scope-panel { width: min(100% - 36px, 1200px); grid-template-columns: 1fr; gap: 45px; padding: 28px; }
}

@media (max-width: 470px) {
  .wordmark { font-size: 13px; }
  .button { width: 100%; }
  .route-ticket { padding: 16px; }
  .route-ticket strong { font-size: 13px; }
  .route-line { height: 145px; }
  .route-result > span:last-child { display: none; }
  .preview-header { flex-direction: column; gap: 4px; }
  .footer-links { grid-template-columns: 1fr; }
  .glance dl { grid-template-columns: 1fr; }
  .not-found > div { align-items: stretch; flex-direction: column; }
}

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