:root {
  --cream: #f7f1e5;
  --cream-deep: #eee4d3;
  --paper: #fffdf8;
  --ink: #102946;
  --ink-soft: #40526a;
  --green: #276b4c;
  --green-deep: #164a37;
  --gold: #b27b2e;
  --gold-soft: #e7c98c;
  --menu-hover: #0d714c;
  --menu-highlight: #f1cf73;
  --line: #d9cfbf;
  --shadow: 0 18px 50px rgba(16, 41, 70, .1);
  --radius: 18px;
  --max: 1180px;
}
html[data-theme="white"] {
  --cream: #ffffff;
  --cream-deep: #f3f5f2;
  --paper: #ffffff;
  --line: #d8ded8;
  --shadow: 0 18px 50px rgba(16, 41, 70, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body::before { content: ""; pointer-events: none; position: fixed; inset: 0; opacity: .28; background-image: radial-gradient(rgba(16,41,70,.08) .45px, transparent .45px); background-size: 5px 5px; mix-blend-mode: multiply; }
html[data-theme="white"] body::before { opacity: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(247,241,229,.93); border-bottom: 1px solid rgba(217,207,191,.85); backdrop-filter: blur(16px); }
html[data-theme="white"] .site-header { background: rgba(255,255,255,.96); border-bottom-color: var(--line); }
.nav-wrap { min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { display: block; width: min(504px, calc(100vw - 170px)); height: auto; object-fit: contain; object-position: left center; }
.brand-logo-header { transition: opacity .16s ease; }
.brand:hover .brand-logo-header { opacity: .82; }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.desktop-nav { display: flex; align-items: center; gap: 21px; color: var(--ink-soft); font-size: 1.05rem; font-weight: 650; }
.desktop-nav a, .mobile-nav a { position: relative; padding-block: 8px; background-image: linear-gradient(transparent 52%, var(--menu-highlight) 52%, var(--menu-highlight) 88%, transparent 88%); background-repeat: no-repeat; background-position: left center; background-size: 0 100%; transition: color .16s ease, background-size .2s ease; }
.desktop-nav a:hover, .desktop-nav a.active, .mobile-nav a:hover, .mobile-nav a.active { color: var(--menu-hover); background-size: 100% 100%; }
.desktop-nav a.active, .mobile-nav a.active { font-weight: 800; }
.mobile-nav { display: none; }
.mobile-nav summary { list-style: none; padding: 8px 0; color: var(--green-deep); font-size: 1rem; font-weight: 750; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav nav { position: absolute; left: 24px; right: 24px; top: 106px; display: grid; gap: 2px; padding: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.theme-toggle { display: inline-grid; place-items: center; flex: 0 0 auto; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--paper); transition: border-color .16s ease, transform .16s ease, background .16s ease; }
.theme-toggle:hover { border-color: var(--green); transform: translateY(-1px); }
.theme-toggle:focus-visible { outline: 3px solid rgba(39,107,76,.2); outline-offset: 2px; }
.theme-icon { position: relative; display: block; width: 18px; height: 18px; overflow: hidden; border: 2px solid currentColor; border-radius: 50%; }
.theme-icon::after { content: ""; position: absolute; inset: -1px -1px -1px 50%; background: currentColor; }
html[data-theme="white"] .theme-icon { color: var(--green); background: var(--cream); }
.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; }
.breadcrumbs { display: flex; gap: 10px; align-items: center; padding-top: 28px; color: var(--ink-soft); font-size: .86rem; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--green); text-decoration: underline; }
.breadcrumbs span { color: #9b907f; }
.eyebrow { margin: 0 0 12px; color: var(--green); font-size: .76rem; font-weight: 800; letter-spacing: .16em; line-height: 1.35; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; line-height: 1.07; }
h1 { font-size: clamp(2.8rem, 6vw, 5.75rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.25rem); }
h3 { font-size: 1.35rem; line-height: 1.2; }
p { margin: 0; }
.lede { max-width: 660px; margin-top: 22px; color: var(--ink-soft); font-size: clamp(1.05rem, 2vw, 1.22rem); line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 46px; padding: 11px 18px; border: 1px solid transparent; border-radius: 999px; font-weight: 750; font-size: .92rem; transition: transform .16s ease, background .16s ease, border-color .16s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: var(--green); box-shadow: 0 9px 18px rgba(39,107,76,.2); }
.button.primary:hover { background: var(--green-deep); }
.button.secondary { color: var(--ink); background: transparent; border-color: var(--ink); }
.button.secondary:hover { color: var(--green-deep); border-color: var(--green); }
.button.text { padding-inline: 0; color: var(--green); background: transparent; }
.button.full { width: 100%; }
.text-button, .filter-reset { border: 0; padding: 0; color: var(--green); background: transparent; font-weight: 750; }
.hero { overflow: hidden; border-bottom: 1px solid var(--line); background: linear-gradient(115deg, #f7f1e5 0%, #f7f1e5 54%, #ecdfca 100%); }
html[data-theme="white"] .hero { background: linear-gradient(115deg, #ffffff 0%, #ffffff 58%, #f2f5f1 100%); }
.hero-grid { min-height: 0; display: grid; grid-template-columns: 1.08fr .92fr; align-items: start; gap: clamp(34px, 5vw, 76px); padding-block: clamp(24px, 3.5vh, 34px); }
.hero-copy h1 { max-width: 690px; font-size: clamp(3.45rem, 4.8vw, 4.9rem); }
.hero-copy .lede { max-width: 590px; margin-top: 18px; }
.hero-copy .button-row { margin-top: 22px; }
.hero-copy .trust-row { margin-top: 22px; }
.hero-visual { position: relative; width: 100%; max-width: 560px; justify-self: end; padding: 16px 20px 20px 0; }
.hero-visual::before { content: ""; position: absolute; inset: 0 0 0 14%; border: 1px solid #c9b99b; background: #dce5d4; box-shadow: 0 12px 0 rgba(255,253,248,.75); transform: rotate(1.8deg); }
.hero-visual::after { content: ""; position: absolute; z-index: 3; right: 4%; bottom: -7px; width: 112px; height: 30px; background: #c99332; box-shadow: 0 2px 0 rgba(128,84,20,.16); transform: rotate(-3deg); }
.hero-visual img { position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border: 7px solid rgba(255,253,248,.9); border-radius: 18px; box-shadow: 16px 17px 0 rgba(255,253,248,.82), 0 20px 45px rgba(16,41,70,.18); }
.hero-note { position: absolute; z-index: 2; right: -2px; bottom: 5px; padding: 15px 18px; color: var(--ink); background: var(--gold-soft); font-size: .86rem; line-height: 1.35; box-shadow: 5px 6px 0 rgba(178,123,46,.18); }
.hero-note strong { font-size: 1.18rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; color: var(--ink-soft); font-size: .84rem; }
.trust-row span::first-letter { color: var(--green); }
.section { padding-block: 92px; }
.soft-section { background: var(--cream-deep); border-block: 1px solid var(--line); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 28px; }
.section-head h2 { max-width: 710px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 26px; border-top: 2px solid var(--gold); background: rgba(255,253,248,.62); }
.feature-number { display: block; margin-bottom: 30px; color: var(--gold); font: 700 .9rem/1 Inter, sans-serif; }
.feature p { margin-top: 12px; color: var(--ink-soft); }
.city-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.city-card { min-height: 180px; display: flex; flex-direction: column; justify-content: end; padding: 20px; border: 1px solid var(--line); background: var(--paper); transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.city-card:hover { border-color: var(--green); box-shadow: 0 10px 26px rgba(16,41,70,.08); transform: translateY(-3px); }
.city-card > span { font: 500 1.75rem/1 Georgia, serif; }
.city-card strong { margin-top: 10px; color: var(--green); font-size: .85rem; }
.city-card small { margin-top: 3px; color: var(--ink-soft); font-size: .75rem; }
.school-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.school-card { overflow: hidden; display: flex; flex-direction: column; min-width: 0; border: 1px solid var(--line); background: var(--paper); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.school-card[hidden] { display: none; }
.school-card:hover { border-color: #a7b8a8; box-shadow: 0 15px 30px rgba(16,41,70,.1); transform: translateY(-3px); }
.card-image { position: relative; display: block; overflow: hidden; background: #dfe6d8; }
.card-image img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .28s ease; }
.school-card:hover .card-image img { transform: scale(1.035); }
.image-badge { position: absolute; top: 12px; left: 12px; padding: 5px 9px; color: var(--ink); background: var(--gold-soft); border-radius: 999px; font-size: .72rem; font-weight: 800; }
.card-body { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { display: inline-flex; padding: 4px 8px; color: var(--green-deep); background: #e4eee6; border-radius: 999px; font-size: .72rem; font-weight: 750; line-height: 1.3; }
.card-body h3 { margin-top: 14px; }
.card-body h3 a:hover { color: var(--green); }
.card-body p { display: -webkit-box; overflow: hidden; margin-top: 12px; color: var(--ink-soft); font-size: .9rem; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.card-meta { display: flex; justify-content: space-between; gap: 12px; align-items: end; margin-top: auto; padding-top: 22px; color: var(--ink-soft); font-size: .77rem; }
.card-meta span { max-width: 65%; }
.card-meta strong { color: var(--ink); font-size: .82rem; text-align: right; }
.card-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); font-size: .82rem; font-weight: 750; }
.card-actions > a { color: var(--green); }
.compare-trigger { padding: 0; border: 0; color: var(--ink-soft); background: transparent; font-weight: 700; font-size: .82rem; }
.compare-trigger:hover { color: var(--gold); }
.callout { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 92px; padding: 36px 40px; border: 1px solid #b5c9b7; background: #e1eee4; }
.callout h2 { max-width: 700px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.page-intro { padding-block: 60px 68px; }
.page-intro h1 { max-width: 900px; }
.page-intro.compact { padding-bottom: 42px; }
.archive-layout { display: grid; grid-template-columns: 255px 1fr; gap: 42px; padding-top: 0; }
.archive-sidebar { position: sticky; top: 132px; align-self: start; max-height: calc(100vh - 152px); overflow-y: auto; overscroll-behavior: contain; scrollbar-gutter: stable; background: var(--cream); }
.filters { display: grid; gap: 14px; padding: 20px; border: 1px solid var(--line); background: rgba(255,253,248,.88); }
.filters label, .sort-label { display: grid; gap: 6px; color: var(--ink-soft); font-size: .76rem; font-weight: 750; }
.filters input, .filters select, .sort-label select, .lead-form input, .lead-form select, .lead-form textarea { width: 100%; min-height: 42px; padding: 9px 10px; border: 1px solid #cfc3b0; border-radius: 8px; color: var(--ink); background: var(--paper); outline: none; }
.filters input:focus, .filters select:focus, .lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(39,107,76,.12); }
.filter-search { margin-bottom: 4px; }
.filter-count { margin-block: -15px 22px; color: var(--ink-soft); font-size: .86rem; }
.filter-note { margin-top: 22px; padding: 17px; border-left: 3px solid var(--gold); background: #f0e5d3; font-size: .82rem; }
.filter-note p { margin-top: 8px; color: var(--ink-soft); line-height: 1.5; }
.filter-note a { display: inline-block; margin-top: 10px; color: var(--green); font-weight: 750; }
.archive-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.muted { color: var(--ink-soft); font-size: .88rem; }
.sort-label { display: flex; grid-template-columns: auto auto; align-items: center; gap: 9px; }
.sort-label select { min-height: 36px; }
.empty-state { padding: 55px 25px; border: 1px dashed #bdb09d; text-align: center; }
.empty-state p { margin-top: 10px; color: var(--ink-soft); }
.empty-state a { display: inline-block; margin-top: 18px; color: var(--green); font-weight: 750; }
.school-hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding-block: 52px 68px; }
.school-hero-copy h1 { font-size: clamp(3rem, 5vw, 5.3rem); }
.school-hero-image { position: relative; }
.school-hero-image::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid #b8c7b5; background: #dfe8d9; transform: rotate(2deg); }
.school-hero-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 1.2 / 1; object-fit: cover; border-radius: 15px; box-shadow: 0 20px 40px rgba(16,41,70,.13); }
.verified { margin-top: 18px; color: var(--green-deep); font-size: .82rem; }
.essentials { padding-bottom: 56px; }
.essential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.essential-grid > div { min-height: 96px; display: grid; align-content: center; gap: 6px; padding: 16px 18px; background: var(--paper); }
.essential-grid span { color: var(--ink-soft); font-size: .76rem; }
.essential-grid strong { font-size: .95rem; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 315px; gap: 70px; padding-top: 0; }
.detail-section { padding-block: 30px; border-top: 1px solid var(--line); }
.detail-section:first-child { padding-top: 0; border-top: 0; }
.detail-section h2 { margin-bottom: 17px; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.detail-section p { max-width: 760px; color: var(--ink-soft); }
.check-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 25px; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.detail-section.considerations .check-list li::before { content: "•"; color: var(--gold); }
.sticky-card { position: sticky; top: 132px; padding: 24px; border: 1px solid var(--line); background: var(--paper); box-shadow: 0 12px 28px rgba(16,41,70,.07); }
.sticky-card h2 { margin-top: 8px; font-size: 2rem; }
.sticky-card p { margin-top: 12px; color: var(--ink-soft); font-size: .9rem; }
.external-link { display: block; margin-top: 16px; color: var(--green); font-weight: 750; font-size: .86rem; }
.source-card { margin-top: 18px; padding: 20px; border: 1px solid #d9c79e; background: #f6ecd6; font-size: .84rem; }
.source-card p { margin-top: 7px; color: var(--ink-soft); }
.source-card a { display: inline-block; margin-top: 11px; color: var(--green); font-weight: 750; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; }
.related { padding-top: 56px; }
.destination-hero { padding-block: 60px 45px; }
.destination-hero h1 { max-width: 780px; }
.destination-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-bottom: 20px; background: var(--line); }
.destination-facts > div { display: grid; gap: 8px; padding: 24px; background: var(--paper); }
.destination-facts span { color: var(--ink-soft); font-size: .8rem; }
.destination-facts strong { font-size: .95rem; }
.destination-list { display: grid; gap: 10px; }
.destination-row { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 30px 26px; border: 1px solid var(--line); background: var(--paper); transition: border-color .15s ease, transform .15s ease; }
.destination-row:hover { border-color: var(--green); transform: translateX(4px); }
.destination-row h2 { margin-top: 6px; font-size: 2.4rem; }
.destination-row p { max-width: 620px; margin-top: 8px; color: var(--ink-soft); }
.arrow { color: var(--green); font-size: 2rem; }
.type-grid, .guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 0; }
.type-card, .guide-card { min-height: 250px; display: flex; flex-direction: column; align-items: flex-start; padding: 26px; border: 1px solid var(--line); background: var(--paper); transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.type-card:hover, .guide-card:hover { border-color: #a2b5a4; box-shadow: 0 14px 28px rgba(16,41,70,.08); transform: translateY(-3px); }
.type-icon { display: grid; place-items: center; width: 35px; height: 35px; color: var(--cream); background: var(--green); border-radius: 50%; }
.type-card h2, .guide-card h2 { margin-top: 24px; font-size: 1.85rem; }
.type-card p, .guide-card p { margin-top: 12px; color: var(--ink-soft); font-size: .9rem; }
.text-link { display: block; margin-top: auto; padding-top: 23px; color: var(--green); font-size: .84rem; font-weight: 800; }
.selection-note { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; padding: 15px 18px; border-left: 3px solid var(--gold); background: #f0e5d3; }
.selection-note span { color: var(--ink-soft); font-size: .86rem; }
.article { display: grid; grid-template-columns: minmax(250px, .62fr) minmax(0, 1fr); gap: 90px; padding-block: 48px 100px; }
.article > header { position: sticky; top: 132px; align-self: start; }
.article > header h1 { font-size: clamp(2.8rem, 5vw, 4.65rem); }
.article-body { max-width: 680px; }
.article-body section { padding-block: 5px 30px; }
.article-body h2 { margin-bottom: 13px; font-size: 2rem; }
.article-body p, .simple-article p { color: var(--ink-soft); }
.article-cta { margin-top: 26px; padding: 25px; border: 1px solid #b5c9b7; background: #e1eee4; }
.article-cta h2 { font-size: 1.85rem; }
.article-cta p { margin-top: 10px; }
.article-cta .button { margin-top: 18px; }
.simple-article { display: block; max-width: 790px; padding-top: 0; }
.simple-article h2 { margin: 30px 0 10px; font-size: 2rem; }
.contact-email { margin-top: 20px; color: var(--green) !important; font-weight: 800; }
.compare-empty { padding: 78px 30px; border: 1px dashed #bdb09d; text-align: center; }
.empty-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 18px; color: var(--cream); background: var(--green); border-radius: 50%; font-size: 2rem; }
.compare-empty h2 { font-size: 2.4rem; }
.compare-empty p { max-width: 510px; margin: 12px auto 22px; color: var(--ink-soft); }
.compare-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.compare-head h2 { font-size: 2.7rem; }
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--paper); }
.compare-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 17px 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-table thead th { color: var(--ink); background: #e7eee6; font-family: Georgia, serif; font-size: 1.15rem; }
.compare-table thead th:first-child { width: 170px; }
.compare-table tbody th { color: var(--ink-soft); font-size: .84rem; font-weight: 750; }
.compare-table tbody td { color: var(--ink-soft); font-size: .88rem; }
.compare-table a { color: var(--green); font-weight: 750; }
.compare-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; padding: 22px; background: #f0e5d3; }
.form-hero { padding-block: 58px 32px; }
.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 70px; padding-block: 20px 100px; }
.lead-form { padding: 28px; border: 1px solid var(--line); background: var(--paper); }
.lead-form fieldset { margin: 0; padding: 0 0 27px; border: 0; }
.lead-form fieldset + fieldset { padding-top: 27px; border-top: 1px solid var(--line); }
.lead-form legend { margin-bottom: 17px; font: 500 2rem/1 Georgia, serif; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.form-grid label { display: grid; gap: 6px; color: var(--ink-soft); font-size: .82rem; font-weight: 750; }
.form-grid label span { font-weight: 400; }
.full-field { grid-column: 1 / -1; }
.lead-form textarea { resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 3px 0 22px; color: var(--ink-soft); font-size: .8rem; font-weight: 400; }
.consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--green); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.turnstile-wrap { min-height: 65px; margin: 0 0 22px; }
.form-status { min-height: 24px; margin-top: 14px; color: var(--green-deep); font-size: .88rem; }
.site-footer { padding-top: 55px; color: #e8efe7; background: var(--green-deep); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 45px; }
.footer-brand { color: #f6f0e4; }
.brand-logo-footer { width: min(504px, 100%); }
.footer-grid p { max-width: 320px; margin-top: 15px; color: #bcd1c2; font-size: .9rem; }
.footer-grid h3 { margin-bottom: 13px; color: var(--gold-soft); font: 800 .76rem/1 Inter, sans-serif; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid a:not(.brand) { display: block; margin-top: 8px; color: #d7e5d8; font-size: .9rem; }
.footer-grid a:not(.brand):hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 17px; border-top: 1px solid rgba(226,236,224,.22); color: #bcd1c2; font-size: .76rem; }
.footer-bottom a { color: #e7d39e; }
.toast { position: fixed; z-index: 50; right: 20px; bottom: 20px; max-width: 320px; padding: 13px 16px; color: #fff; background: var(--ink); border: 1px solid rgba(255,255,255,.2); border-radius: 10px; box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .18s ease, transform .18s ease; font-size: .86rem; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1220px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
}
@media (max-width: 980px) {
  .hero-grid, .school-hero { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 52px; }
  .hero-visual { max-width: 650px; margin: 0 auto; width: 100%; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .school-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-layout { grid-template-columns: 1fr; }
  .archive-sidebar { position: static; max-height: none; overflow: visible; background: transparent; }
  .filters { position: static; grid-template-columns: repeat(3, 1fr); align-items: end; }
  .filter-search { grid-column: 1 / -1; }
  .filter-note { display: none; }
  .detail-layout, .form-layout { grid-template-columns: 1fr; gap: 35px; }
  .detail-aside .sticky-card, .form-aside .sticky-card { position: static; max-width: 570px; }
  .type-grid, .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .article { grid-template-columns: 1fr; gap: 30px; }
  .article > header { position: static; }
}
@media (max-width: 700px) {
  .shell { width: min(var(--max), calc(100% - 32px)); }
  .site-header { position: relative; }
  .nav-wrap { min-height: 88px; gap: 10px; }
  .brand-logo-header { width: min(504px, calc(100vw - 166px)); }
  .nav-actions { gap: 9px; }
  .mobile-nav nav { top: 84px; }
  .hero-grid { min-height: auto; padding-block: 50px 65px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-visual { padding-right: 8px; }
  .hero-note { right: -6px; }
  .trust-row { display: grid; gap: 8px; }
  .section { padding-block: 65px; }
  .section-head, .callout, .compare-cta { align-items: flex-start; flex-direction: column; }
  .feature-grid, .school-grid, .type-grid, .guide-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .city-card { min-height: 145px; }
  .filters { grid-template-columns: repeat(2, 1fr); padding: 15px; }
  .archive-top { align-items: flex-start; flex-direction: column; }
  .sort-label { width: 100%; justify-content: space-between; }
  .sort-label select { min-width: 170px; }
  .school-hero { padding-block: 38px 55px; gap: 35px; }
  .school-hero-copy h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .essential-grid, .destination-facts { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .destination-row { padding: 23px 18px; }
  .destination-row h2 { font-size: 2rem; }
  .article { padding-block: 30px 70px; }
  .article > header h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .lead-form { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
