:root {
  --ink: #171411;
  --paper: #f6f0e7;
  --cream: #fffaf2;
  --terracotta: #c75532;
  --terracotta-dark: #95391f;
  --olive: #536447;
  --gold: #d6a948;
  --line: rgba(23, 20, 17, 0.14);
  --muted: #6f675f;
  --shadow: 0 24px 70px rgba(62, 42, 24, 0.12);
  --radius: 22px;
  --content-max: 1500px;
  --header-max: 1750px;
  --footer-max: 1350px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link, .wwc-skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
}
.skip-link:focus, .wwc-skip-link:focus { transform: translateY(0); }

:where(a, button, input, select, textarea, [tabindex]):focus-visible { outline: 3px solid #f59e0b; outline-offset: 3px; }
main[id], section[id], article[id], h1[id], h2[id], h3[id] { scroll-margin-top: 5rem; }
:where(button, [role="button"], input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]), select, textarea) { min-height: 44px; }
:where([aria-current="page"]) { font-weight: 700; text-decoration-thickness: .14em; text-underline-offset: .18em; }

.container { width: min(var(--content-max), calc(100% - 80px)); margin-inline: auto; }
.narrow { width: min(var(--content-max), calc(100% - 80px)); margin-inline: auto; }
.site-header > .container { width: min(var(--header-max), calc(100% - 80px)); }
.site-footer > .container { width: min(var(--footer-max), calc(100% - 80px)); }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-cream { background: var(--cream); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--terracotta-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.section-dark .eyebrow { color: #f1b36d; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin-top: 0; }
h1 { font-size: 5rem; letter-spacing: 0; overflow-wrap: break-word; }
h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); letter-spacing: -0.04em; }
h3 { font-size: 1.55rem; }
p { margin-top: 0; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.section-dark .lead { color: #c8c0b6; }
.section-dark .prose, .section-dark .prose p { color: #c8c0b6; }
.section-dark .prose h3 { color: #fff; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 34px; }
.section-head h2 { max-width: 720px; margin-bottom: 0; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(246, 240, 231, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-logo { width: 46px; height: 46px; flex: 0 0 auto; }
.brand-copy { display: grid; justify-items: center; min-width: 164px; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; white-space: nowrap; }
.brand-country { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 5px; color: var(--terracotta-dark); font-size: .56rem; font-weight: 800; letter-spacing: .24em; line-height: 1; text-transform: uppercase; }
.brand-country::before, .brand-country::after { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .65; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; color: #39332d; font-size: 0.9rem; font-weight: 650; text-decoration: none; }
.main-nav a:not(.button-link)::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; transform: scaleX(0); background: var(--terracotta); transition: transform 180ms ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.button-link, .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid var(--terracotta);
  border-radius: 999px;
  background: var(--terracotta);
  color: white !important;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button:hover, .button-link:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); transform: translateY(-1px); }
.button.secondary { background: transparent; color: var(--ink) !important; border-color: var(--line); }
.button.secondary:hover { border-color: var(--ink); }
.button.light { background: var(--cream); color: var(--ink) !important; border-color: var(--cream); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.25rem; }

.hero { position: relative; min-height: 720px; display: grid; align-items: end; overflow: hidden; color: white; background: #221710; }
.hero-media { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.01); }
.hero::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(15,10,7,.92) 0%, rgba(15,10,7,.62) 48%, rgba(15,10,7,.12) 100%); }
.hero::after { content: ""; position: absolute; z-index: 1; inset: auto 0 0; height: 160px; background: linear-gradient(transparent, rgba(10,7,5,.48)); }
.hero-content { position: relative; z-index: 2; padding: 104px 0 74px; }
.hero .eyebrow { color: #f3bd77; }
.hero h1 { max-width: 940px; margin-bottom: 22px; }
.hero h1 em { color: #efb05f; font-weight: 400; }
.hero-intro { max-width: 650px; margin-bottom: 32px; color: #ede4da; font-size: 1.16rem; }
.search-panel { display: grid; grid-template-columns: 1.5fr 1fr auto; gap: 10px; width: min(840px, 100%); padding: 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: rgba(255,255,255,.95); box-shadow: var(--shadow); color: var(--ink); }
.search-field { display: flex; align-items: center; gap: 10px; min-width: 0; padding: 0 14px; }
.search-field + .search-field { border-left: 1px solid var(--line); }
.search-field label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.search-field input, .search-field select { width: 100%; min-height: 50px; border: 0; outline: none; background: transparent; color: var(--ink); }
.search-panel .button { border-radius: 12px; }
.hero-note { margin: 16px 0 0; color: #d9cdc1; font-size: .82rem; }

.trust-strip { background: var(--ink); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 30px; border-left: 1px solid rgba(255,255,255,.12); }
.trust-item:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.trust-item strong { display: block; margin-bottom: 2px; color: #efb05f; font-family: var(--serif); font-size: 1.9rem; font-weight: 500; }
.trust-item span { color: #c4bbb1; font-size: .82rem; }

.answer-panel { display: grid; grid-template-columns: 1.45fr .65fr; gap: 58px; align-items: stretch; }
.answer-main { padding: 24px 0; }
.answer-main h2 { max-width: 900px; margin-bottom: 18px; font-size: clamp(2.35rem, 4vw, 4rem); }
.answer-lead { max-width: 900px; color: #514a43; font-size: 1.08rem; }
.answer-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 30px 0 0; padding: 0; list-style: none; }
.answer-steps li { display: grid; grid-template-columns: 38px 1fr; gap: 1px 12px; align-items: center; padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: var(--cream); }
.answer-steps li > span { grid-row: 1 / span 2; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--terracotta); color: white; font-family: var(--serif); }
.answer-steps strong { font-size: .88rem; }
.answer-steps small { color: var(--muted); font-size: .75rem; line-height: 1.45; }
.answer-proof { display: flex; flex-direction: column; justify-content: center; padding: 34px; border-radius: var(--radius); background: var(--ink); color: white; box-shadow: var(--shadow); }
.answer-proof-label { margin-bottom: 19px; color: #efb05f; font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.answer-proof dl { display: grid; gap: 0; margin: 0 0 22px; }
.answer-proof dl div { display: grid; grid-template-columns: .7fr 1.3fr; gap: 14px; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.12); }
.answer-proof dt { color: #aaa198; font-size: .72rem; font-weight: 750; }
.answer-proof dd { margin: 0; color: #f3ede6; font-size: .78rem; }
.answer-proof .text-link { color: #f2c58a; }
.destination-links { display: grid; gap: 8px; }
.destination-links a { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.12); color: white; font-family: var(--serif); font-size: 1.05rem; text-decoration: none; }
.destination-links a:hover { color: #f2c58a; }
.destination-links span { color: #aaa198; font-family: var(--sans); font-size: .7rem; text-align: right; }

.listing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.listing-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); transition: transform 180ms ease, box-shadow 180ms ease; }
.listing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.listing-visual { position: relative; aspect-ratio: 16 / 8; overflow: hidden; background: #342820; }
.listing-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10, 8, 7, .5)); pointer-events: none; }
.listing-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.listing-card:hover .listing-visual img { transform: scale(1.045); }
.generated-editorial-visual { position: relative; isolation: isolate; min-height: 190px; overflow: hidden; background: radial-gradient(circle at var(--visual-x) var(--visual-y), hsl(var(--visual-accent) 78% 68% / .9) 0 9%, transparent 36%), radial-gradient(circle at calc(100% - var(--visual-x)) calc(100% - var(--visual-y)), hsl(var(--visual-hue) 78% 34% / .72) 0 12%, transparent 45%), linear-gradient(var(--visual-angle), hsl(var(--visual-hue) 44% 18%), hsl(var(--visual-accent) 52% 37%)); }
.generated-editorial-visual::before { content: ""; position: absolute; z-index: -1; inset: 12% 18%; border: 1px solid rgba(255, 255, 255, .28); border-radius: 42% 58% 63% 37% / 48% 36% 64% 52%; box-shadow: 0 0 0 18px rgba(255, 255, 255, .055), 0 0 0 42px rgba(255, 255, 255, .035); transform: rotate(var(--visual-turn)); }
.generated-editorial-monogram { position: absolute; left: 22px; top: 50%; color: rgba(255, 255, 255, .18); font-family: Georgia, serif; font-size: clamp(4rem, 10vw, 7.5rem); font-weight: 800; letter-spacing: -.08em; line-height: 1; transform: translateY(-50%); }
.generated-editorial-label { position: absolute; z-index: 1; right: 13px; bottom: 10px; color: rgba(255, 255, 255, .92); font-size: .65rem; font-weight: 750; letter-spacing: .08em; text-shadow: 0 1px 8px rgba(0, 0, 0, .45); text-transform: uppercase; }
.city-generated-visual { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; min-height: 0; transition: transform 500ms ease; }
.city-chip-photo:hover .city-generated-visual { transform: scale(1.045); }
.locality-generated-visual { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; border-radius: 0; }
.listing-card-header { display: flex; align-items: center; justify-content: space-between; min-height: 64px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: #f5eee5; }
.listing-card-meta { display: flex; align-items: center; gap: 9px; min-width: 0; }
.listing-type { padding: 7px 11px; border-radius: 999px; background: var(--ink); color: white; font-size: .72rem; font-weight: 700; }
.listing-source-badge { overflow: hidden; max-width: 165px; color: var(--olive); font-size: .68rem; font-weight: 800; letter-spacing: .02em; text-overflow: ellipsis; white-space: nowrap; }
.listing-source-badge span { color: var(--terracotta); font-size: 1rem; line-height: 0; vertical-align: -.08em; }
.favorite-button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: var(--cream); color: var(--ink); font-size: 1.35rem; cursor: pointer; }
.favorite-button.is-active { color: var(--terracotta); }
.listing-body { padding: 23px; }
.listing-kicker { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 8px; color: var(--terracotta-dark); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.listing-body h3 { margin-bottom: 6px; }
.listing-cuisine { margin-bottom: 12px; color: var(--olive); font-weight: 700; }
.listing-address { margin: -4px 0 12px; color: var(--muted); font-size: .8rem; font-style: normal; }
.listing-description { min-height: 3.2em; color: var(--muted); font-size: .91rem; }
.listing-verification { margin: 14px 0 10px; color: var(--olive); font-size: .75rem; font-weight: 700; }
.listing-verification a { color: inherit; text-underline-offset: 3px; }
.text-link { color: var(--terracotta-dark); font-size: .88rem; font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card { min-height: 230px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: #211d19; color: white; text-decoration: none; transition: background 180ms ease, transform 180ms ease; }
.category-card:hover { transform: translateY(-4px); background: #2b251f; }
.category-card-photo { position: relative; isolation: isolate; overflow: hidden; }
.category-card-photo::before { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(14, 10, 8, .18), rgba(14, 10, 8, .9)); content: ""; }
.category-card-photo img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.category-card-photo:hover img { transform: scale(1.05); }
.category-card .number { color: #eab066; font-family: var(--serif); font-size: 2rem; }
.category-card h3 { margin: 0 0 8px; font-size: 1.65rem; }
.category-card p { margin: 0; color: #e1d8cf; font-size: .9rem; }

.intent-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.intent-card { overflow: hidden; display: grid; grid-template-columns: 1fr; align-content: start; padding: 0 22px 23px; border: 1px solid var(--line); border-radius: var(--radius); background: white; color: var(--ink); text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.intent-card:hover { transform: translateY(-4px); border-color: rgba(199,85,50,.48); box-shadow: 0 18px 45px rgba(62,42,24,.1); }
.intent-card img { width: calc(100% + 44px); height: 210px; margin: 0 -22px 21px; object-fit: cover; transition: transform 500ms ease; }
.intent-card:hover img { transform: scale(1.035); }
.intent-card span { margin-bottom: 8px; color: var(--terracotta-dark); font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.intent-card h3 { margin-bottom: 8px; font-size: 1.55rem; }
.intent-card p { margin: 0; color: var(--muted); font-size: .88rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feature-image { position: relative; }
.feature-image img { width: 100%; min-height: 520px; object-fit: cover; border-radius: 160px 160px 20px 20px; box-shadow: var(--shadow); }
.feature-image::after { content: "Guide indépendant"; position: absolute; right: -16px; bottom: 34px; padding: 14px 18px; transform: rotate(-4deg); border-radius: 2px; background: var(--gold); color: var(--ink); font-family: var(--serif); font-style: italic; box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.steps { display: grid; gap: 20px; margin: 30px 0 34px; }
.step { display: grid; grid-template-columns: 42px 1fr; gap: 16px; }
.step-number { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--terracotta); border-radius: 50%; color: var(--terracotta-dark); font-family: var(--serif); }
.step h3 { margin: 0 0 5px; font-family: var(--sans); font-size: 1rem; font-weight: 800; }
.step p { margin: 0; color: var(--muted); font-size: .92rem; }

.city-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.city-chip { padding: 20px 16px; border: 1px solid var(--line); border-radius: 16px; background: var(--cream); text-align: center; text-decoration: none; transition: border-color 180ms ease, color 180ms ease; }
.city-chip:hover { border-color: var(--terracotta); color: var(--terracotta-dark); }
.city-chip strong { display: block; font-family: var(--serif); font-size: 1.25rem; }
.city-chip span { color: var(--muted); font-size: .78rem; }
.city-chip-photo { position: relative; isolation: isolate; display: flex; min-height: 168px; justify-content: end; flex-direction: column; overflow: hidden; border-color: transparent; color: white; text-align: left; }
.city-chip-photo::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(16, 11, 8, .04) 18%, rgba(16, 11, 8, .86) 100%); }
.city-chip-photo img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.city-chip-photo:hover { border-color: var(--gold); color: white; }
.city-chip-photo:hover img { transform: scale(1.06); }
.city-chip-photo span { color: rgba(255, 255, 255, .84); }
.city-chip-photo .generated-editorial-monogram { color: rgba(255, 255, 255, .18); font-size: clamp(4rem, 10vw, 7.5rem); }
.city-chip-photo .generated-editorial-label { color: rgba(255, 255, 255, .92); font-size: .65rem; }
.home-city-grid { grid-template-columns: repeat(3, 1fr); }
.home-city-grid .city-chip-photo { min-height: 230px; padding: 24px; }
.home-city-grid .city-chip-photo strong { font-size: 1.55rem; }
.related-city-grid { grid-template-columns: repeat(5, 1fr); }

.mobility-section { padding-top: 0; }
.mobility-card { position: relative; display: grid; grid-template-columns: .8fr 1.25fr auto; gap: 48px; align-items: center; overflow: hidden; padding: 42px; border-radius: 28px; background: var(--ink); color: white; box-shadow: var(--shadow); }
.mobility-card::after { content: ""; position: absolute; right: -90px; bottom: -120px; width: 280px; height: 280px; border: 46px solid rgba(199,85,50,.28); border-radius: 50%; pointer-events: none; }
.mobility-card > * { position: relative; z-index: 1; }
.mobility-route { display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px 12px; align-items: center; }
.mobility-route span { grid-column: 1/-1; color: #bdb4aa; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mobility-route strong { color: #efb05f; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.mobility-route i { height: 1px; background: rgba(255,255,255,.24); }
.mobility-copy .eyebrow { color: #efb05f; }
.mobility-copy h2 { max-width: 720px; margin-bottom: 13px; font-size: clamp(2rem, 3.4vw, 3.4rem); }
.mobility-copy > p:last-child { max-width: 820px; margin-bottom: 0; color: #c8c0b6; font-size: .94rem; }
.mobility-copy strong { color: white; }
.mobility-action { display: grid; justify-items: start; gap: 12px; min-width: 245px; }
.mobility-action > span { color: #a9a097; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.mobility-action .button { width: 100%; white-space: nowrap; }

.editorial-grid { display: grid; grid-template-columns: 1.3fr .85fr .85fr; gap: 22px; }
.editorial-card { position: relative; min-height: 360px; overflow: hidden; display: flex; align-items: end; padding: 28px; border-radius: var(--radius); color: white; text-decoration: none; background: #342820; }
.editorial-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 25%, rgba(10,8,7,.9)); z-index: 1; }
.editorial-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.editorial-card:hover img { transform: scale(1.04); }
.editorial-content { position: relative; z-index: 2; }
.editorial-content span { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.editorial-content h3 { margin: 8px 0 0; font-size: 1.8rem; }

.newsletter { padding: 54px; border-radius: 28px; background: var(--terracotta); color: white; }
.newsletter-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.newsletter h2 { margin-bottom: 10px; font-size: clamp(2rem, 4vw, 3.5rem); }
.newsletter p { max-width: 580px; margin-bottom: 0; color: #ffe7dd; }
.professional-promo { display: flex; align-items: center; gap: 20px; margin-top: 16px; padding: 17px 22px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,250,242,.58); }
.partner-logo { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 12px; object-fit: contain; }
.partner-logo-light { padding: 4px; background: white; }
.professional-promo-label { flex: 0 0 auto; color: var(--muted); font-size: .64rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.professional-promo p { flex: 1 1 auto; margin: 0; color: var(--muted); font-size: .82rem; }
.professional-promo p strong { color: var(--ink); }
.professional-promo a { flex: 0 0 auto; color: var(--terracotta-dark); font-size: .8rem; font-weight: 850; text-decoration: none; }
.professional-promo a:hover { text-decoration: underline; text-underline-offset: 4px; }

.employment-home-section { padding-top: 0; }
.employment-home-card { display: grid; grid-template-columns: 1.4fr .6fr; gap: 54px; align-items: center; padding: 54px; border-radius: 28px; background: var(--ink); color: white; box-shadow: var(--shadow); }
.employment-home-card h2 { max-width: 760px; margin-bottom: 14px; font-size: clamp(2.3rem, 4vw, 4rem); }
.employment-home-card p:not(.eyebrow) { max-width: 760px; margin-bottom: 0; color: #c8c0b6; }
.employment-home-actions { display: grid; justify-items: start; gap: 18px; }
.text-link-light { color: #f2c58a; font-size: .9rem; font-weight: 800; text-decoration: none; }
.text-link-light:hover { color: white; text-decoration: underline; text-underline-offset: 4px; }

.page-hero { padding: 36px 0 28px; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 1100px; margin-bottom: 18px; font-size: 2.75rem; }
.locality-hero-visual, .collection-hero-visual { position: relative; max-width: 980px; height: 190px; margin: 24px 0 0; overflow: hidden; border-radius: 8px; background: #342820; box-shadow: var(--shadow); }
.locality-hero-visual img, .collection-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.locality-hero-visual::after, .collection-hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10, 8, 7, .6)); pointer-events: none; }
.locality-hero-visual figcaption, .collection-hero-visual figcaption { position: absolute; z-index: 1; right: 18px; bottom: 14px; color: rgba(255, 255, 255, .92); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumbs { margin-bottom: 24px; color: var(--muted); font-size: .82rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 7px; color: #a59b91; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--terracotta-dark); text-decoration: underline; text-underline-offset: 3px; }

.employment-hero { padding-bottom: 0; overflow: hidden; background: linear-gradient(135deg, #fffaf2 0%, #f2e4d6 100%); }
.employment-hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .7fr); gap: 64px; align-items: center; padding-bottom: 58px; }
.employment-hero .lead { max-width: 850px; }
.employment-feature { position: relative; padding: 34px; overflow: hidden; border-radius: 24px; background: var(--ink); color: white; box-shadow: var(--shadow); }
.employment-feature::before { content: ""; position: absolute; top: -70px; right: -50px; width: 190px; height: 190px; border: 34px solid rgba(199,85,50,.4); border-radius: 50%; }
.employment-feature > * { position: relative; }
.employment-feature-kicker { display: block; margin-bottom: 14px; color: #efb05f; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.employment-feature h2 { margin-bottom: 16px; font-size: clamp(2rem, 3vw, 3rem); }
.employment-feature p { color: #c8c0b6; }
.employment-feature ul { display: grid; gap: 9px; margin: 22px 0 0; padding: 0; list-style: none; }
.employment-feature li { display: grid; grid-template-columns: 20px 1fr; gap: 9px; color: #eee7df; font-size: .9rem; }
.employment-feature li::before { content: "✓"; color: #efb05f; font-weight: 900; }
.employment-toc { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); }
.employment-toc a { padding: 19px 14px; border-left: 1px solid var(--line); color: #514a43; font-size: .8rem; font-weight: 800; text-align: center; text-decoration: none; }
.employment-toc a:last-child { border-right: 1px solid var(--line); }
.employment-toc a:hover { background: rgba(255,255,255,.55); color: var(--terracotta-dark); }
.employment-answer { background: var(--terracotta); color: white; }
.employment-answer-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.employment-answer .eyebrow { color: #ffe1c6; }
.employment-answer h2 { margin-bottom: 0; font-size: clamp(2rem, 3.4vw, 3.4rem); }
.employment-answer-grid > p { margin: 0; color: #fff3e8; font-size: 1.06rem; }
.section-note { max-width: 470px; margin: 0; color: var(--muted); font-size: .9rem; }
.career-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.career-card { display: flex; flex-direction: column; padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: var(--cream); }
.career-card:hover { border-color: rgba(199,85,50,.55); box-shadow: 0 18px 45px rgba(62,42,24,.08); }
.career-family { align-self: flex-start; margin-bottom: 18px; padding: 6px 10px; border-radius: 999px; background: #f1dfcf; color: var(--terracotta-dark); font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.career-card h3 { margin-bottom: 11px; }
.career-card > p { min-height: 6em; color: var(--muted); font-size: .9rem; }
.career-card dl { display: grid; gap: 13px; margin: auto 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.career-card dl div { display: grid; gap: 2px; }
.career-card dt { color: var(--terracotta-dark); font-size: .69rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.career-card dd { margin: 0; color: #514a43; font-size: .82rem; }
.employment-callout { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; margin-top: 34px; padding: 34px; border-radius: 22px; background: var(--terracotta); color: white; }
.employment-callout-label { display: block; margin-bottom: 6px; color: #ffe1c6; font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.employment-callout h3 { margin-bottom: 8px; font-size: 2rem; }
.employment-callout p { max-width: 760px; margin: 0; color: #ffe7dd; }
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.12); }
.skills-grid article { min-height: 245px; padding: 28px; background: #211d19; }
.skills-grid article > span { display: block; margin-bottom: 42px; color: #efb05f; font-family: var(--serif); font-size: 1.65rem; }
.skills-grid h3 { margin-bottom: 10px; color: white; }
.skills-grid p { margin-bottom: 0; color: #bdb4aa; font-size: .9rem; }
.training-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.training-card { grid-column: span 2; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.training-card.training-card--visual { padding: 0 28px 28px; overflow: hidden; }
.training-card__image { display: block; width: calc(100% + 56px); height: 180px; margin: 0 -28px 24px; object-fit: cover; }
.training-card:nth-child(4), .training-card:nth-child(5) { grid-column: span 3; }
.training-level { display: inline-block; margin-bottom: 17px; color: var(--terracotta-dark); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.training-card h3 { margin-bottom: 12px; }
.training-card p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }
.reform-note { margin-top: 22px; padding: 25px 28px; border-left: 4px solid var(--terracotta); background: #f5e8dc; }
.reform-note strong { display: block; margin-bottom: 5px; }
.reform-note p { max-width: 1050px; margin-bottom: 10px; color: #514a43; }
.employment-guide-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 78px; align-items: start; }
.employment-guide-layout > div:first-child { position: sticky; top: 120px; }
.job-search-steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.job-search-steps li { display: grid; grid-template-columns: 56px 1fr; gap: 21px; padding: 0 0 30px; }
.job-search-steps li:not(:last-child) { margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.job-search-steps li > span { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--terracotta); border-radius: 50%; color: var(--terracotta-dark); font-family: var(--serif); font-size: 1.2rem; }
.job-search-steps h3 { margin-bottom: 8px; font-family: var(--sans); font-size: 1.05rem; font-weight: 850; }
.job-search-steps p { margin: 0; color: var(--muted); }
.resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.resource-card { display: flex; flex-direction: column; min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.resource-card > .resource-kind { margin-bottom: 22px; color: var(--terracotta-dark); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.resource-logo, .resource-mark { width: 52px; height: 52px; margin-bottom: 16px; border-radius: 12px; }
.resource-logo { padding: 3px; background: white; object-fit: contain; }
.resource-mark { display: grid; place-items: center; background: var(--cream); color: var(--ink); font-family: var(--serif); font-size: 1.1rem; font-weight: 700; letter-spacing: .04em; }
.resource-card h3 { margin-bottom: 10px; }
.resource-card p { color: var(--muted); font-size: .9rem; }
.resource-card a { margin-top: auto; color: var(--terracotta-dark); font-size: .87rem; font-weight: 850; text-decoration: none; }
.resource-card a:hover { text-decoration: underline; text-underline-offset: 4px; }
.resource-card-featured { border-color: var(--terracotta); background: var(--terracotta); color: white; }
.resource-card-featured > .resource-kind, .resource-card-featured a { color: #ffe3ca; }
.resource-card-featured p { color: #ffe7dd; }
.source-note { margin: 20px 0 0; color: var(--muted); font-size: .78rem; }
.employment-realities { background: #ede3d6; }
.split-copy { display: grid; grid-template-columns: .7fr 1.3fr; gap: 76px; align-items: start; }
.split-copy h2 { margin-bottom: 0; }
.prose-compact { max-width: 900px; }
.prose-compact p { color: #514a43; }
.prose-compact p:last-child { margin-bottom: 0; }
.employment-faq > h2 { max-width: 850px; }
.employment-final-cta .eyebrow { color: #ffe1c6; }

.filter-panel { position: sticky; z-index: 20; top: 78px; padding: 18px 0; background: rgba(246,240,231,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.filters { display: grid; grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(150px, .75fr)) auto auto; gap: 12px; align-items: end; }
.filters .field { gap: 4px; }
.filters .field label { font-size: .72rem; }
.control { min-height: 50px; padding: 0 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); color: var(--ink); outline: none; }
.control:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(199,85,50,.14); }
.check-control { display: flex; align-items: center; gap: 8px; padding: 0 12px; white-space: nowrap; font-size: .86rem; font-weight: 700; }
.filter-submit { min-height: 50px; }
.directory-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; color: var(--muted); }
.reset-button { border: 0; background: transparent; color: var(--terracotta-dark); font-weight: 800; text-decoration: none; cursor: pointer; }
.empty-state { grid-column: 1/-1; padding: 60px 24px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }
.entity-directory { margin-top: 64px; padding-top: 42px; border-top: 1px solid var(--line); }
.entity-directory h2 { margin-bottom: 8px; font-size: 2rem; }
.entity-directory > p { margin-bottom: 22px; color: var(--muted); }
.entity-index { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 0; padding: 0; list-style: none; }
.entity-index a { display: flex; justify-content: space-between; gap: 12px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px; background: var(--cream); text-decoration: none; }
.entity-index a:hover { border-color: var(--terracotta); }
.entity-index span { color: var(--muted); font-size: .78rem; white-space: nowrap; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 42px; }
.pagination span { color: var(--muted); font-size: .88rem; font-weight: 750; }
.pagination-link { min-width: 150px; padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream); color: var(--terracotta-dark); font-weight: 800; text-align: center; text-decoration: none; }
.pagination-link:hover { border-color: var(--terracotta); background: white; }
.quick-filters { padding: 13px 0; border-bottom: 1px solid var(--line); background: var(--cream); }
.quick-filters .container { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.quick-filters span { margin-right: 5px; color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.quick-filters a { padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--terracotta-dark); font-size: .76rem; font-weight: 750; text-decoration: none; }
.quick-filters a:hover { border-color: var(--terracotta); background: white; }

.city-search-bar { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.1); background: var(--ink); color: white; }
.city-search-bar form { display: grid; grid-template-columns: minmax(280px, 1fr) auto auto; gap: 14px; align-items: end; }
.city-search-bar form > div { display: grid; gap: 6px; }
.city-search-bar label { color: #f1b36d; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.city-search-bar .control { width: 100%; background: white; }
.city-search-bar .reset-button { min-height: 48px; display: inline-flex; align-items: center; color: #f2c58a; }
.city-answer { background: #efe4d7; }

.prose { width: 100%; max-width: 900px; margin-inline: auto; color: #3f3933; font-size: 1.03rem; }
.prose h2 { margin: 56px 0 18px; font-size: 2.4rem; }
.prose h3 { margin: 34px 0 10px; font-family: var(--sans); font-size: 1.15rem; font-weight: 800; }
.prose p, .prose li { color: #514a43; }
.prose blockquote { margin: 36px 0; padding: 26px 30px; border-left: 4px solid var(--terracotta); background: var(--cream); font-family: var(--serif); font-size: 1.35rem; }
.legal-disclaimer { display: grid; gap: 6px; margin: 20px 0; padding: 22px 24px; border-left: 4px solid var(--terracotta); background: var(--cream); }
.legal-disclaimer small { color: var(--muted); font-size: .92rem; line-height: 1.6; }
.guide-toc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
.guide-toc a { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--cream); font-weight: 700; text-decoration: none; }
.guide-toc a:hover { border-color: var(--terracotta); }
.content-visual { margin: 0 0 38px; overflow: hidden; border-radius: var(--radius); background: #342820; box-shadow: var(--shadow); }
.content-visual img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.content-visual figcaption { padding: 12px 16px; color: var(--muted); background: var(--cream); font-size: .78rem; }
.content-visual-wide { margin-bottom: 48px; }
.content-visual-inline { float: right; width: min(46%, 420px); margin: 5px 0 22px 30px; }
.content-visual-inline img { aspect-ratio: 4 / 3; }
.content-visual-dark { margin-bottom: 26px; box-shadow: none; }
.content-visual-dark figcaption { color: #bdb4aa; background: rgba(255, 255, 255, .06); }
.employment-visual { max-width: 820px; margin: -12px 0 44px; }

.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 64px; align-items: start; }
.form-aside { position: sticky; top: 120px; }
.form-aside h2 { font-size: 3rem; }
.benefit-list { display: grid; gap: 14px; padding: 0; list-style: none; }
.benefit-list li { display: grid; grid-template-columns: 30px 1fr; gap: 10px; }
.benefit-list li::before { content: "✓"; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--olive); color: white; font-size: .8rem; }
.form-card { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1/-1; }
.field label { font-size: .84rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px; background: white; color: var(--ink); outline: none; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(199,85,50,.14); }
.form-note { color: var(--muted); font-size: .78rem; }
.form-status { margin-top: 18px; padding: 14px; border-radius: 10px; background: #e5eddc; color: #334329; }
.consent { display: flex; align-items: flex-start; gap: 10px; }
.consent input { width: 18px; min-height: 18px; margin-top: 3px; }

.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.error-page { min-height: 62vh; display: grid; align-items: center; padding: 90px 0; background: var(--cream); }
.error-page h1 { max-width: 780px; margin-bottom: 18px; }
.legal-copy h2:first-child, .prose h2:first-child { margin-top: 0; }
.prose details { margin: 12px 0; border: 1px solid var(--line); border-radius: 13px; background: var(--cream); }
.prose summary { padding: 17px 20px; color: var(--ink); font-weight: 800; cursor: pointer; }
.prose details p { padding: 0 20px 18px; margin: 0; }
.home-faq h2 { margin-top: 0; }
.home-faq > p:last-child { margin-top: 24px; }
.listing-kicker a { text-decoration: none; }
.listing-kicker a:hover { text-decoration: underline; text-underline-offset: 3px; }
[hidden] { display: none !important; }

.site-footer { padding: 64px 0 28px; background: #100e0d; color: #d8d0c6; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; padding-bottom: 48px; }
.footer-brand { color: white; }
.footer-brand p { max-width: 360px; margin-top: 18px; color: #a9a097; }
.footer-column h2 { margin-bottom: 16px; color: white; font-family: var(--sans); font-size: .82rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.footer-column a { display: block; margin: 9px 0; color: #b8afa5; font-size: .88rem; text-decoration: none; }
.footer-column a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #8f867d; font-size: .78rem; }
.footer-bottom a { color: inherit; text-underline-offset: 3px; }
.ai-disclaimer { display: grid; gap: 4px; max-width: 780px; margin-bottom: 24px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.035); }
.ai-disclaimer strong { color: #eee7df; font-size: .86rem; }
.ai-disclaimer small { color: #a9a097; line-height: 1.5; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 980px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: .84rem; }
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .answer-panel { grid-template-columns: 1fr; gap: 24px; }
  .answer-main { padding-bottom: 0; }
  .intent-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .related-city-grid { grid-template-columns: repeat(3, 1fr); }
  .mobility-card { grid-template-columns: .7fr 1.3fr; }
  .mobility-action { grid-column: 1/-1; grid-template-columns: auto auto; align-items: center; justify-content: start; }
  .mobility-action .button { width: auto; }
  .split, .form-layout { grid-template-columns: 1fr; gap: 44px; }
  .employment-home-card, .employment-hero-grid, .employment-guide-layout, .split-copy { grid-template-columns: 1fr; gap: 42px; }
  .employment-guide-layout > div:first-child { position: static; }
  .employment-toc { grid-template-columns: repeat(3, 1fr); }
  .employment-toc a:nth-child(3) { border-right: 1px solid var(--line); }
  .career-grid, .skills-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-toc { grid-template-columns: repeat(2, 1fr); }
  .training-card { grid-column: span 3; }
  .form-aside { position: static; }
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .editorial-card:first-child { grid-column: 1/-1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .container, .narrow, .site-header > .container, .site-footer > .container { width: calc(100% - 32px); }
  .section { padding: 64px 0; }
  .header-inner { min-height: 68px; }
  .menu-toggle { display: grid; place-items: center; }
  .main-nav { position: absolute; top: 68px; right: 0; left: 0; display: none; align-items: stretch; padding: 18px 20px 24px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 18px 40px rgba(0,0,0,.12); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 10px 4px; }
  .main-nav .button-link { margin-top: 8px; }
  .brand { gap: 10px; }
  .brand-logo { width: 42px; height: 42px; }
  .brand-copy { min-width: 145px; }
  .brand-copy strong { font-size: 1.02rem; }
  .brand-country { gap: 6px; font-size: .5rem; }
  .brand-country::before, .brand-country::after { width: 22px; }
  .hero { min-height: 680px; }
  .hero::before { background: linear-gradient(rgba(15,10,7,.54), rgba(15,10,7,.9)); }
  .hero-content { padding: 40px 0 32px; }
  .hero h1 { font-size: 2.75rem; }
  .page-hero h1 { font-size: 2rem; }
  .locality-hero-visual, .collection-hero-visual { height: 140px; }
  .search-panel { grid-template-columns: 1fr; }
  .search-field + .search-field { border-left: 0; border-top: 1px solid var(--line); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .answer-steps { grid-template-columns: 1fr; }
  .trust-item:nth-child(2) { border-right: 1px solid rgba(255,255,255,.12); }
  .listing-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head .button { margin-top: 20px; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .home-city-grid { grid-template-columns: 1fr 1fr; }
  .mobility-card { grid-template-columns: 1fr; gap: 30px; padding: 34px 28px; }
  .mobility-route { max-width: 320px; }
  .mobility-action { grid-column: auto; grid-template-columns: 1fr; }
  .mobility-action .button { width: 100%; white-space: normal; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-card:first-child { grid-column: auto; }
  .newsletter { padding: 34px 26px; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 24px; }
  .professional-promo { align-items: flex-start; flex-direction: column; gap: 9px; }
  .employment-home-card { padding: 36px 28px; }
  .employment-answer-grid, .employment-callout { grid-template-columns: 1fr; gap: 28px; }
  .career-grid, .resource-grid { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: 1fr; }
  .training-card, .training-card:nth-child(4), .training-card:nth-child(5) { grid-column: auto; }
  .career-card > p { min-height: 0; }
  .filters { grid-template-columns: 1fr 1fr; }
  .filters .field:first-of-type { grid-column: 1/-1; }
  .filter-panel { top: 68px; }
  .guide-toc { grid-template-columns: 1fr; }
  .entity-index { grid-template-columns: 1fr 1fr; }
  .city-search-bar form { grid-template-columns: 1fr auto; }
  .city-search-bar .reset-button { grid-column: 1 / -1; min-height: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1/-1; }
  .footer-grid .footer-column:last-child { grid-column: auto; }
}

@media (max-width: 480px) {
  h1 { font-size: 3.15rem; }
  .trust-grid, .category-grid, .city-grid, .filters, .footer-grid { grid-template-columns: 1fr; }
  .intent-grid, .home-city-grid { grid-template-columns: 1fr; }
  .related-city-grid { grid-template-columns: 1fr; }
  .city-search-bar form { grid-template-columns: 1fr; }
  .city-search-bar .reset-button { grid-column: auto; }
  .answer-proof { padding: 27px 23px; }
  .entity-index { grid-template-columns: 1fr; }
  .employment-toc, .skills-grid { grid-template-columns: 1fr; }
  .guide-toc { grid-template-columns: 1fr; }
  .employment-toc a, .employment-toc a:nth-child(3) { border-right: 1px solid var(--line); }
  .employment-feature, .career-card, .training-card, .resource-card { padding: 23px; }
  .job-search-steps li { grid-template-columns: 44px 1fr; gap: 15px; }
  .job-search-steps li > span { width: 42px; height: 42px; }
  .trust-item { border-right: 1px solid rgba(255,255,255,.12); }
  .filter-panel { position: static; }
  .filters .field:first-of-type { grid-column: auto; }
  .pagination { align-items: stretch; flex-direction: column; }
  .pagination span { order: -1; text-align: center; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { display: block; }
}

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

@media (forced-colors: active) {
  :where(a, button, input, select, textarea, [tabindex]):focus-visible { outline: 3px solid ButtonText; }
  .skip-link, .wwc-skip-link { border-color: ButtonText; }
}
