:root {
    --ink: #12342f;
    --ink-2: #1c4a43;
    --paper: #f7f3e8;
    --white: #fffefa;
    --soft: #ebe7dc;
    --mint: #b9e5d1;
    --lime: #d9f25f;
    --orange: #ed6545;
    --text: #173b35;
    --muted: #59706b;
    --line: #d3d7ce;
    --shadow: 0 24px 60px rgb(18 52 47 / 12%);
    --radius: 4px;
    --shell: 1500px;
    --header-shell: 1750px;
    --footer-shell: 1350px;
    --gutter: clamp(20px, 3vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; background: var(--white); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
[hidden] { display: none !important; }
.shell { width: min(calc(100% - (var(--gutter) * 2)), var(--shell)); margin-inline: auto; }
.narrow { max-width: 920px; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 12px 18px; background: var(--white); color: var(--ink); transform: translateY(-160%); box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.05; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.7rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.25rem, 4.4vw, 4.25rem); margin-bottom: 22px; }
h3 { font-size: 1.35rem; }
em { color: var(--orange); font-family: Georgia, serif; font-weight: 400; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 24px; color: currentColor; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { width: 22px; height: 2px; background: currentColor; content: ""; }
.tag { display: inline-flex; width: fit-content; padding: 6px 9px; background: var(--lime); color: var(--ink); font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 52px; padding: 13px 20px; border: 1px solid transparent; font-size: .86rem; font-weight: 800; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--ink-2); }
.button-outline { border-color: var(--ink); background: transparent; }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 3px; border-bottom: 1px solid currentColor; color: var(--ink); font-size: .78rem; font-weight: 800; }
.text-link:hover { color: var(--orange); }

.topbar { background: var(--ink); color: #b9cec9; font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.topbar-inner, .header-inner { width: min(calc(100% - (var(--gutter) * 2)), var(--header-shell)); }
.topbar-inner { display: flex; justify-content: space-between; padding-block: 9px; }
.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid var(--line); background: rgb(255 254 250 / 94%); backdrop-filter: blur(14px); }
.header-inner { display: flex; align-items: center; min-height: 78px; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; line-height: 1; }
.brand-mark { display: block; width: 44px; height: 44px; flex: 0 0 44px; }
.brand-wordmark { display: block; }
.brand strong { display: block; font-size: .95rem; letter-spacing: -.02em; }
.brand small { display: flex; align-items: center; gap: 7px; margin-top: 5px; color: var(--muted); font-size: .55rem; font-weight: 850; letter-spacing: .24em; text-transform: uppercase; }
.brand small::before { width: 22px; height: 1px; background: var(--orange); content: ""; }
.brand-light small { color: #a9bdb9; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.2vw, 30px); margin-left: auto; }
.main-nav a { position: relative; padding-block: 28px; color: #314e49; font-size: .76rem; font-weight: 750; white-space: nowrap; }
.main-nav a::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--orange); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { display: inline-flex; align-items: center; gap: 16px; padding: 12px 15px; background: var(--lime); font-size: .72rem; font-weight: 850; white-space: nowrap; }
.menu-toggle { display: none; margin-left: auto; border: 0; background: transparent; font-size: .76rem; font-weight: 800; }
.breadcrumbs { padding-block: 12px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .7rem; }
.breadcrumbs li + li::before { margin-right: 7px; content: "/"; }
.breadcrumbs a:hover { color: var(--orange); }

.hero { overflow: hidden; padding: clamp(70px, 9vw, 130px) 0; background: var(--paper); }
.hero-grid { display: grid; grid-template-columns: 1.45fr .75fr; gap: clamp(45px, 8vw, 110px); align-items: center; }
.hero-side { display: grid; gap: 22px; }
.hero-photo { overflow: hidden; height: clamp(210px, 21vw, 330px); margin: 0; box-shadow: 16px 16px 0 var(--mint); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero-copy > p { max-width: 720px; margin-bottom: 34px; color: #3e5c57; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.job-search { display: grid; grid-template-columns: 1fr .9fr auto; max-width: 820px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.job-search > div { display: flex; min-width: 0; padding: 14px 18px; flex-direction: column; border-right: 1px solid var(--line); }
.job-search label { font-size: .68rem; font-weight: 850; text-transform: uppercase; }
.job-search input { min-width: 0; padding: 5px 0 0; border: 0; outline: 0; background: transparent; color: var(--ink); }
.job-search input::placeholder { color: #82938f; }
.job-search button { min-width: 130px; border: 0; background: var(--orange); color: #fff; font-size: .76rem; font-weight: 850; cursor: pointer; }
.job-search button:hover { background: #d94e30; }
.form-note { grid-column: 1 / -1; margin: 0; padding: 9px 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }
.quick-links { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 20px; font-size: .7rem; }
.quick-links span { color: var(--muted); font-weight: 800; text-transform: uppercase; }
.quick-links a { padding-bottom: 2px; border-bottom: 1px solid var(--line); font-weight: 800; }
.quick-links a:hover { border-color: var(--orange); color: var(--orange); }
.journey-card { position: relative; padding: 26px; background: var(--ink); color: #fff; box-shadow: 16px 16px 0 var(--mint); }
.journey-head { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgb(255 255 255 / 18%); font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }
.journey-card ol { margin: 0; padding: 12px 0; list-style: none; }
.journey-card li { display: grid; grid-template-columns: 44px 1fr; align-items: center; padding: 17px 0; border-bottom: 1px solid rgb(255 255 255 / 14%); }
.journey-card li > span { color: var(--lime); font-size: .7rem; font-weight: 850; }
.journey-card li strong, .journey-card li small { display: block; }
.journey-card li strong { margin-bottom: 4px; }
.journey-card li small { color: #a9bdb9; }
.journey-card > a { display: flex; justify-content: space-between; padding-top: 18px; color: var(--lime); font-size: .74rem; font-weight: 800; }

.section { padding-block: clamp(78px, 9vw, 130px); }
.section-soft { background: var(--paper); }
.section-ink { background: var(--ink); color: #d9e4e1; }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-heading { display: grid; grid-template-columns: 1.4fr .65fr; gap: 50px; align-items: end; margin-bottom: 50px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 500px; margin: 0; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature-card { display: flex; min-height: 310px; padding: 24px; flex-direction: column; border: 1px solid var(--line); background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-card > span { color: var(--orange); font-size: .68rem; font-weight: 900; }
.feature-card h3 { margin: 55px 0 15px; font-size: 1.7rem; }
.feature-card p { color: var(--muted); font-size: .87rem; }
.feature-card strong { display: flex; justify-content: space-between; margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); font-size: .73rem; }
.feature-card-accent { border-color: var(--orange); background: var(--orange); color: #fff; }
.feature-card-accent h3, .feature-card-accent > span { color: #fff; }
.feature-card-accent p { color: #ffe0d8; }
.feature-card-accent strong { border-color: rgb(255 255 255 / 40%); }
.split-layout { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(50px, 9vw, 120px); align-items: start; }
.statement { position: sticky; top: 130px; }
.statement p { max-width: 480px; color: #acc0bc; }
.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 32px 0; border-bottom: 1px solid rgb(255 255 255 / 17%); }
.steps-list li > span { display: grid; width: 37px; height: 37px; place-items: center; border: 1px solid #66817b; color: var(--lime); font-size: .7rem; font-weight: 800; }
.steps-list h3 { margin-bottom: 9px; }
.steps-list p { margin: 0; color: #acc0bc; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.article-grid article { display: flex; min-height: 340px; padding: 28px; flex-direction: column; border: 1px solid var(--line); background: var(--white); }
.article-grid h2, .article-grid h3 { margin: 45px 0 14px; font-size: 1.75rem; }
.article-grid p { color: var(--muted); }
.article-grid .text-link { margin-top: auto; align-self: flex-start; }
.article-grid-large article { min-height: 390px; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 9vw, 120px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; color: var(--ink); font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.4rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details div { padding: 0 40px 22px 0; color: var(--muted); }
.faq-list p { margin: 0; }

.page-hero { padding: clamp(70px, 9vw, 125px) 0; background: var(--paper); }
.page-hero h1 { font-size: clamp(3.1rem, 6.4vw, 6rem); }
.page-hero p { max-width: 780px; margin-bottom: 0; color: #46605c; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.page-hero-mint { background: var(--mint); }
.page-hero-orange { background: var(--orange); color: #fff; }
.page-hero-orange h1 { color: #fff; }
.page-hero-orange p { color: #ffe3dc; }
.page-hero-compact { padding-block: 70px; }
.page-hero-compact h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.visual-band { position: relative; margin-top: clamp(28px, 5vw, 72px); }
.visual-band img { width: 100%; height: clamp(270px, 42vw, 610px); object-fit: cover; }
.visual-band figcaption { position: absolute; right: 18px; bottom: 18px; max-width: 470px; padding: 13px 16px; background: rgb(9 35 31 / 92%); color: #fff; font-size: .74rem; }
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-grid article { min-height: 260px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid article > span { color: var(--orange); font-size: .7rem; font-weight: 900; }
.process-grid h2 { margin-top: 50px; font-size: 1.85rem; }
.process-grid p { color: var(--muted); }
.process-grid-three { grid-template-columns: repeat(3, 1fr); }
.definition-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.definition-grid article { padding: 26px; border-top: 4px solid var(--orange); background: var(--white); }
.definition-grid h3 { font-size: 1.7rem; }
.definition-grid p { margin: 0; color: var(--muted); font-size: .88rem; }
.source-note { margin: 32px 0 0; color: var(--muted); font-size: .78rem; }
.source-note a { border-bottom: 1px solid currentColor; color: var(--ink); font-weight: 750; }
.resource-list { border-top: 1px solid var(--line); }
.resource-list > a { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 27px 4px; border-bottom: 1px solid var(--line); }
.resource-list > a:hover h3 { color: var(--orange); }
.resource-list span { color: var(--orange); font-size: .67rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.resource-list h3 { margin: 7px 0 5px; font-size: 1.6rem; transition: color .2s ease; }
.resource-list p { margin: 0; color: var(--muted); }
.resource-list strong { font-size: .74rem; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compare-grid article { min-height: 370px; padding: 34px; background: var(--paper); }
.compare-grid article:nth-child(2) { background: var(--mint); }
.compare-grid h2 { margin-top: 55px; font-size: 2.2rem; }
.compare-grid p { max-width: 560px; color: #455f5a; }
.code-badge { display: inline-flex; padding: 7px 10px; background: var(--ink); color: #fff; font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.sector-grid article { min-height: 210px; padding: 24px; border: 1px solid var(--line); background: var(--white); }
.sector-grid span { color: var(--orange); font-size: .67rem; font-weight: 900; }
.sector-grid h3 { margin: 40px 0 10px; }
.sector-grid p { color: var(--muted); font-size: .82rem; }
.content-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 9vw, 120px); }
.content-layout h2 { font-size: clamp(2.1rem, 3.5vw, 3.6rem); }
.prose { color: #405a55; font-size: 1.05rem; }
.prose p { margin-bottom: 1.4em; }
.prose .button { margin-top: 18px; color: #fff; font-size: .8rem; }
.filter-field { display: flex; flex-direction: column; }
.filter-field label { margin-bottom: 7px; font-size: .68rem; font-weight: 850; text-transform: uppercase; }
.filter-field input { min-width: 270px; padding: 12px 0; border: 0; border-bottom: 2px solid var(--ink); background: transparent; outline: 0; }
.region-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.region-grid article { display: grid; grid-template-columns: 38px 1fr auto; gap: 15px; align-items: center; min-height: 125px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.region-grid article > span { color: var(--orange); font-size: .68rem; font-weight: 900; }
.region-grid h3 { margin-bottom: 6px; font-size: 1.25rem; }
.region-grid p { margin: 0; color: var(--muted); font-size: .78rem; }
.region-grid a { font-size: .68rem; font-weight: 800; white-space: nowrap; }
.region-grid a:hover { color: var(--orange); }
.empty-state { padding: 30px; border: 1px solid var(--line); text-align: center; }
.check-list { border-top: 1px solid var(--line); }
.check-list > p { display: grid; grid-template-columns: .55fr 1fr; gap: 30px; margin: 0; padding: 22px 0; border-bottom: 1px solid var(--line); }
.check-list strong { color: var(--ink); }
.check-list span { color: var(--muted); }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter-buttons button { padding: 9px 13px; border: 1px solid var(--line); background: var(--white); font-size: .7rem; font-weight: 800; cursor: pointer; }
.filter-buttons button:hover, .filter-buttons button.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.directory-card { display: flex; min-height: 280px; padding: 26px; flex-direction: column; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }
.directory-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.directory-card h2 { margin: 38px 0 12px; font-size: 1.7rem; }
.directory-card p { color: var(--muted); font-size: .85rem; }
.directory-card strong { display: flex; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-size: .72rem; }
.resource-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.resource-card-head img { width: 40px; height: 40px; object-fit: contain; }
.resource-monogram { display: grid; width: 40px; height: 40px; place-items: center; background: var(--ink); color: var(--lime); font-size: .68rem; font-weight: 900; letter-spacing: .04em; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.principles-grid article { min-height: 250px; padding: 24px; background: var(--white); }
.principles-grid span { color: var(--orange); font-size: .68rem; font-weight: 900; }
.principles-grid h3 { margin-top: 48px; }
.principles-grid p { color: var(--muted); font-size: .85rem; }
.contact-panel { display: flex; align-items: end; justify-content: space-between; gap: 50px; padding: 50px; background: var(--mint); }
.contact-panel h2 { margin-bottom: 14px; }
.contact-panel p { max-width: 560px; margin: 0; }
.source-panel { display: grid; max-width: 1040px; gap: 12px; padding: clamp(28px, 5vw, 54px); border-left: 5px solid var(--orange); background: var(--paper); }
.source-panel > strong { color: var(--ink); font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.1; }
.source-panel p { margin: 0; color: var(--muted); }
.source-panel .text-link { width: fit-content; margin-top: 8px; }
.territory-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr); gap: clamp(45px, 8vw, 110px); align-items: start; }
.territory-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 36px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.territory-stats span { display: grid; gap: 4px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.territory-stats strong { color: var(--ink); font-size: clamp(1.35rem, 3vw, 2.3rem); line-height: 1; }
.territory-stats small { color: var(--muted); }
.territory-stats-wide { grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0 0 70px; }
.territory-aside { display: grid; border-top: 4px solid var(--orange); background: var(--paper); }
.territory-aside > strong { padding: 20px; color: var(--ink); }
.territory-aside a { display: flex; justify-content: space-between; gap: 20px; padding: 18px 20px; border-top: 1px solid var(--line); font-size: .8rem; font-weight: 800; }
.territory-aside a:hover { color: var(--orange); }
.territory-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.territory-card-grid > a { display: flex; min-height: 260px; padding: 25px; flex-direction: column; border: 1px solid var(--line); background: var(--white); }
.territory-card-grid > a > span { color: var(--orange); font-size: .7rem; font-weight: 900; }
.territory-card-grid h2 { margin: 38px 0 12px; font-size: 1.7rem; }
.territory-card-grid p { color: var(--muted); font-size: .84rem; }
.territory-card-grid strong { display: flex; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-size: .72rem; }
.city-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.city-grid a { display: grid; gap: 5px; min-height: 100px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.city-grid a:hover { background: var(--paper); }
.city-grid strong { color: var(--ink); }
.city-grid span { color: var(--muted); font-size: .72rem; }
.commune-directory { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.commune-directory summary { padding: 22px 0; color: var(--ink); font-weight: 800; cursor: pointer; }
.commune-directory > div { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 0 28px; }
.commune-directory span { padding: 6px 9px; border: 1px solid var(--line); background: var(--white); color: var(--muted); font-size: .7rem; }
.legal-copy { max-width: 1040px; }
.legal-copy h2 { margin: 44px 0 12px; font-size: 1.8rem; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { color: #435d58; }
.legal-copy a { border-bottom: 1px solid currentColor; color: var(--ink); font-weight: 700; }
.legal-disclaimer { display: grid; gap: 6px; padding: 24px; border-left: 4px solid var(--orange); background: var(--paper); }
.legal-disclaimer strong { color: var(--ink); }
.legal-disclaimer small { color: var(--muted); font-size: .88rem; }

.article-hero { padding: clamp(70px, 9vw, 120px) 0; background: var(--ink); }
.article-title { max-width: 930px; }
.article-title h1 { margin-top: 25px; color: #fff; font-size: clamp(3.2rem, 6.5vw, 6rem); }
.article-title > p { max-width: 760px; color: #b9cbc7; font-size: 1.2rem; }
.article-meta { display: flex; gap: 25px; margin-top: 38px; color: #8da7a1; font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.article-layout { display: grid; grid-template-columns: 220px minmax(0, 740px); gap: clamp(50px, 9vw, 120px); padding-block: 90px 120px; justify-content: center; }
.article-nav { position: sticky; top: 120px; display: flex; height: fit-content; flex-direction: column; gap: 12px; padding-left: 18px; border-left: 2px solid var(--line); font-size: .76rem; }
.article-nav strong { margin-bottom: 8px; text-transform: uppercase; }
.article-nav a { color: var(--muted); }
.article-nav a:hover { color: var(--orange); }
.article-body section { margin-bottom: 65px; }
.article-body h2 { margin-bottom: 24px; font-size: clamp(2rem, 3.4vw, 3rem); }
.article-body h3 { margin: 35px 0 15px; font-size: 1.55rem; }
.article-body p, .article-body li { color: #3f5954; font-size: 1.02rem; }
.article-body li + li { margin-top: 8px; }
.article-body ul, .article-body ol { padding-left: 22px; }
.example-box { margin: 30px 0; padding: 27px; border-left: 4px solid var(--orange); background: var(--paper); }
.example-box > span { color: var(--orange); font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.example-box p { margin: 13px 0 0; }
.link-panel { display: grid; gap: 10px; margin-top: 25px; }
.link-panel a { display: flex; justify-content: space-between; gap: 30px; padding: 18px; background: var(--paper); }
.link-panel span { color: var(--muted); font-size: .76rem; }
.error-page { padding-block: 120px; text-align: center; }
.error-code { color: var(--orange); font-size: 1rem; font-weight: 900; letter-spacing: .18em; }
.error-page h1 { margin: 20px 0; font-size: clamp(3rem, 6vw, 5rem); }
.error-page p { color: var(--muted); }
.button-row { display: flex; justify-content: center; gap: 12px; margin-top: 35px; }

.site-cta { padding-block: 65px; background: var(--lime); }
.site-cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 45px; }
.site-cta h2 { max-width: 720px; margin: 0; font-size: clamp(2.3rem, 4vw, 4rem); }
.site-cta p { max-width: 720px; margin: 16px 0 0; color: #24463f; }
.site-footer { padding: 80px 0 25px; background: #09231f; color: #a9bdb9; }
.site-footer .shell { max-width: var(--footer-shell); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 60px; }
.footer-grid > div { display: flex; align-items: flex-start; flex-direction: column; gap: 11px; }
.brand-light { color: #fff; }
.footer-about p { max-width: 360px; margin-top: 15px; font-size: .8rem; }
.footer-grid > div > strong { margin-bottom: 9px; color: #fff; font-size: .78rem; }
.footer-grid > div > a:not(.brand) { font-size: .74rem; }
.footer-grid > div > a:not(.brand):hover { color: var(--lime); }
.footer-bottom { margin-top: 60px; padding-top: 20px; border-top: 1px solid rgb(255 255 255 / 12%); font-size: .68rem; }
.footer-bottom p { margin: 0; }
.footer-legal { display: grid; gap: 18px; }
.ai-disclaimer { display: grid; max-width: 880px; gap: 4px; }
.ai-disclaimer strong { color: #fff; font-size: .72rem; }
.ai-disclaimer small { color: #91aaa4; font-size: .68rem; line-height: 1.55; }

@media (max-width: 1050px) {
    .site-header { backdrop-filter: none; }
    .main-nav, .header-cta { display: none; }
    .menu-toggle { display: block; }
    .main-nav.is-open { position: fixed; top: 113px; right: 0; bottom: 0; left: 0; display: flex; align-items: stretch; justify-content: flex-start; padding: 30px 20px; flex-direction: column; gap: 0; overflow-y: auto; background: var(--white); }
    .main-nav.is-open a { padding: 19px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
    .main-nav.is-open a::after { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .journey-card { max-width: 580px; }
    .feature-grid, .sector-grid, .principles-grid { grid-template-columns: repeat(2, 1fr); }
    .definition-grid { grid-template-columns: repeat(2, 1fr); }
    .directory-grid { grid-template-columns: repeat(2, 1fr); }
    .territory-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    :root { --gutter: 16px; }
    .topbar-inner span:last-child { display: none; }
    .header-inner { min-height: 68px; }
    .main-nav.is-open { top: 103px; }
    .breadcrumbs { padding-block: 9px; }
    h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
    .hero { padding-block: 65px 80px; }
    .job-search { grid-template-columns: 1fr; }
    .job-search > div { border-right: 0; border-bottom: 1px solid var(--line); }
    .job-search button { min-height: 55px; }
    .section-heading, .split-layout, .faq-layout, .content-layout { grid-template-columns: 1fr; gap: 32px; }
    .territory-layout { grid-template-columns: 1fr; gap: 32px; }
    .statement { position: static; }
    .feature-grid, .article-grid, .sector-grid, .process-grid, .process-grid-three, .compare-grid, .region-grid, .directory-grid, .principles-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 260px; }
    .article-grid article { min-height: 300px; }
    .definition-grid { grid-template-columns: 1fr; }
    .region-grid article { grid-template-columns: 34px 1fr; }
    .region-grid article a { grid-column: 2; }
    .filter-field input { min-width: 0; width: 100%; }
    .check-list > p { grid-template-columns: 1fr; gap: 6px; }
    .contact-panel, .site-cta-inner { align-items: stretch; flex-direction: column; }
    .contact-panel { padding: 30px; }
    .article-layout { grid-template-columns: 1fr; padding-block: 60px 85px; }
    .article-nav { position: static; }
    .article-meta { align-items: flex-start; flex-direction: column; gap: 6px; }
    .link-panel a { align-items: flex-start; flex-direction: column; gap: 7px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
    .territory-card-grid, .city-grid { grid-template-columns: 1fr; }
    .territory-stats-wide { grid-template-columns: 1fr; }
    .visual-band figcaption { position: static; max-width: none; }
    .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
    .quick-links span { width: 100%; }
    .journey-card { padding: 20px; box-shadow: 9px 9px 0 var(--mint); }
    .button-row { align-items: stretch; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-about { grid-column: auto; }
    .territory-stats { grid-template-columns: 1fr; }
}

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

@media print {
    .topbar, .site-header, .breadcrumbs, .site-cta, .site-footer, .article-nav { display: none !important; }
    body { background: #fff; color: #000; }
    .article-layout { display: block; padding: 20px 0; }
    .article-hero { padding: 30px 0; background: #fff; }
    .article-title h1, h1, h2, h3 { color: #000; }
    .article-title > p, .article-body p, .article-body li { color: #222; }
    a { text-decoration: underline; }
}
