:root {
  --teal-50: #f1f5f6;
  --teal-100: #dee8e9;
  --teal-200: #bdd2d3;
  --teal-300: #93b5b7;
  --teal-400: #578b8f;
  --teal-500: #155e63;
  --teal-600: #135357;
  --teal-700: #124549;
  --teal-800: #10383b;
  --teal-900: #0e2b2e;
  --green-500: #2f7d4a;
  --gold-100: #fbf5e4;
  --gold-200: #f8ebc8;
  --gold-400: #eccc72;
  --gold-500: #e5b83b;
  --gold-800: #806926;
  --red-500: #b53838;
  --n-0: #fff;
  --n-50: #f7f8f8;
  --n-100: #eef0f0;
  --n-200: #dde1e1;
  --n-300: #c3c9c9;
  --n-400: #9aa3a4;
  --n-600: #5a6364;
  --n-700: #414849;
  --n-800: #2a2f30;
  --n-900: #171a1b;
  --page: var(--n-50);
  --surface: var(--n-0);
  --surface-soft: #f0f4f4;
  --text: var(--n-800);
  --text-strong: var(--n-900);
  --text-muted: var(--n-600);
  --line: var(--n-200);
  --shadow: 0 24px 70px rgba(14, 43, 46, .12);
  --shadow-soft: 0 12px 35px rgba(14, 43, 46, .08);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1280px;
  --header-h: 88px;
  color-scheme: light;
}

html[data-theme="dark"] {
  --page: #0c1719;
  --surface: #122225;
  --surface-soft: #172a2d;
  --text: #e7eded;
  --text-strong: #fff;
  --text-muted: #adbbbb;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 70px rgba(0,0,0,.32);
  --shadow-soft: 0 12px 35px rgba(0,0,0,.2);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; background: var(--page); color: var(--text); font-family: Inter, "Segoe UI", Arial, sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 3px; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 118px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 20px; top: -70px; z-index: 1000; background: var(--gold-500); color: #1a1d1e; padding: 12px 18px; border-radius: 0 0 10px 10px; font-weight: 800; transition: top .2s ease; }
.skip-link:focus { top: 0; }


.site-header { position: fixed; inset: 0 0 auto; z-index: 100; }
.nav-shell { height: 88px; background: rgba(0,0,0,.3); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: height .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease; }
.site-header.scrolled .nav-shell { height: 78px; background: rgba(255,255,255,.97); backdrop-filter: blur(20px) saturate(150%); -webkit-backdrop-filter: blur(20px) saturate(150%); box-shadow: 0 8px 30px rgba(9,33,35,.12); border-bottom-color: var(--line); }
.nav-container { width: 100%; height: 100%; margin-inline: 0; padding-inline: clamp(24px, 4vw, 72px); display: flex; align-items: center; justify-content: space-between; gap: clamp(24px, 3vw, 52px); }
.brand { display: flex; align-items: center; gap: 13px; min-width: max-content; transition: opacity .2s ease; }
.brand-mark { width: 58px; height: 58px; display: grid; place-items: center; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); transition: filter .25s ease; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.18; }
.brand-kicker { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.68); font-weight: 700; }
.brand-name { color: #fff; font-weight: 750; font-size: 15px; letter-spacing: -.01em; }
.site-header.scrolled .brand-kicker { color: var(--text-muted); }
.site-header.scrolled .brand-name { color: var(--text-strong); }
.site-header.scrolled .brand-mark { width: 50px; height: 50px; }
.site-header.scrolled .brand-mark img { filter: none; }
.primary-nav { display: flex; align-items: center; gap: 22px; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.nav-list > li { position: relative; }
.nav-link { border: 0; background: transparent; padding: 14px 10px; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 650; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; transition: color .2s; }
.nav-link svg { width: 10px; height: 7px; transition: transform .22s ease; }
.nav-link:hover, .nav-link.active { color: #fff; }
.site-header.scrolled .nav-link { color: var(--text-muted); }
.site-header.scrolled .nav-link:hover, .site-header.scrolled .nav-link.active { color: var(--teal-500); }
.dropdown-panel { position: absolute; top: calc(100% + 8px); left: -18px; width: 360px; padding: 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 18px; background: rgba(16,56,59,.82); backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%); box-shadow: 0 20px 60px rgba(0,0,0,.22); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.site-header.scrolled .dropdown-panel { background: color-mix(in srgb, var(--surface) 92%, transparent); border-color: var(--line); }
.compact-panel { width: 330px; }
.dropdown-right { left: auto; right: -15px; }
.dropdown-panel a { display: grid; grid-template-columns: 30px 1fr; column-gap: 8px; padding: 13px 12px; border-radius: 12px; color: #fff; transition: background .2s ease, transform .2s ease; }
.dropdown-panel a:hover { background: rgba(255,255,255,.11); transform: translateX(2px); }
.dropdown-panel a > span { grid-row: 1 / 3; font-size: 10px; color: var(--gold-500); letter-spacing: .12em; padding-top: 3px; }
.dropdown-panel strong { font-size: 13px; line-height: 1.35; }
.dropdown-panel small { font-size: 11px; color: rgba(255,255,255,.58); line-height: 1.4; }
.site-header.scrolled .dropdown-panel a { color: var(--text-strong); }
.site-header.scrolled .dropdown-panel a:hover { background: var(--surface-soft); }
.site-header.scrolled .dropdown-panel small { color: var(--text-muted); }
.has-dropdown:hover > .dropdown-panel, .has-dropdown.open > .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover > .dropdown-trigger svg, .has-dropdown.open > .dropdown-trigger svg { transform: rotate(180deg); }
.menu-toggle { position: relative; display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { position: absolute; left: 11px; width: 22px; height: 2px; margin: 0; background: #fff; transition: top .25s ease, transform .25s ease, opacity .2s ease; }
.menu-toggle > span:nth-child(1) { top: 14px; }
.menu-toggle > span:nth-child(2) { top: 21px; }
.menu-toggle > span:nth-child(3) { top: 28px; }
.site-header.scrolled .menu-toggle > span:not(.sr-only) { background: var(--text-strong); }

.hero { position: relative; min-height: 100vh; min-height: 100svh; color: #fff; display: flex; align-items: center; isolation: isolate; overflow: hidden; padding: 148px 0 188px; }
.hero-bg { position: absolute; inset: 0; z-index: -3; background: linear-gradient(90deg, rgba(8,32,34,.9) 0%, rgba(8,32,34,.69) 46%, rgba(8,32,34,.18) 76%, rgba(8,32,34,.35) 100%), linear-gradient(0deg, rgba(8,32,34,.86) 0%, transparent 48%), url("../images/hero banner v3.webp") center / cover no-repeat; transform: scale(1.015); animation: heroPush 16s ease-out both; }
@keyframes heroPush { from { transform: scale(1.08); } to { transform: scale(1.015); } }
.hero-grid { position: absolute; inset: 0; z-index: -2; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 86px 86px; mask-image: linear-gradient(90deg, black, transparent 70%); }
.hero::after { content: ""; position: absolute; z-index: -1; width: 520px; height: 520px; right: -180px; top: 140px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }
.hero-inner { display: block; }
.hero-copy { max-width: 790px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--teal-500); text-transform: uppercase; font-size: 11px; letter-spacing: .19em; font-weight: 600; margin-bottom: 20px; }
.eyebrow span { width: 34px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--gold-500); }
.hero .eyebrow-light { color: #fff; }
.hero h1 { margin: 0; font-size: clamp(54px, 6.2vw, 92px); line-height: .98; letter-spacing: -.055em; max-width: 900px; font-weight: 760; text-wrap: balance; }
.hero h1 em { color: var(--gold-500); font-style: normal; font-weight: 500; }
.hero-copy > p { max-width: 720px; margin: 28px 0 0; color: #fff; font-size: 18px; line-height: 1.75; }
.button { min-height: 52px; padding: 0 30px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 13px; font-weight: 600; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; }
.button-primary { background: var(--teal-500); color: #fff; box-shadow: 0 12px 30px rgba(21,94,99,.35); }
.button-primary:hover { background: var(--teal-600); }
.button-glass { border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); color: #fff; }
.button-glass:hover { background: rgba(255,255,255,.15); }
.button-outline { border: 1px solid var(--teal-200); color: var(--teal-500); }
.button-outline:hover { background: var(--teal-500); color: #fff; border-color: var(--teal-500); }
.button-gold { background: var(--gold-500); color: #1a1d1e; }
.button-gold:hover { box-shadow: 0 13px 32px rgba(229,184,59,.24); }
.hero-quick-wrap { position: absolute; bottom: clamp(72px, 8.8vh, 92px); left: 50%; transform: translateX(-50%); }
.glass-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); box-shadow: 0 22px 70px rgba(0,0,0,.18); backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%); }
.hero-quick { min-height: 112px; border-radius: 20px; display: grid; grid-template-columns: 1.15fr repeat(4, 1fr) 66px; overflow: hidden; }
.quick-heading { padding: 23px 26px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.14); }
.quick-heading span { color: var(--gold-500); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; }
.quick-heading strong { font-size: 18px; margin-top: 3px; }
.hero-quick > a { padding: 20px 17px; display: flex; flex-direction: column; justify-content: center; gap: 12px; border-right: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.86); font-size: 12px; font-weight: 700; transition: background .2s, color .2s; }
.hero-quick > a:hover { background: rgba(255,255,255,.1); color: #fff; }
.hero-quick > a svg { color: var(--gold-500); width: 24px; height: 24px; }
.hero-quick .quick-all { display: grid; place-items: center; padding: 0; background: var(--gold-500); color: #1a1d1e; border: 0; }
.hero-quick .quick-all svg { color: currentColor; width: 24px; }
.scroll-cue { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 25px; height: 34px; border: 1px solid rgba(255,255,255,.35); border-radius: 20px; display: none; }
.scroll-cue span { width: 3px; height: 6px; background: #fff; border-radius: 4px; position: absolute; top: 7px; left: 10px; animation: scrollCue 1.7s infinite; }
@keyframes scrollCue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }

.section-heading h2, .about-copy h2, .forms-copy h2, .app-copy h2, .contact-intro h2 { margin: 0; color: var(--text-strong); font-size: clamp(39px, 4.3vw, 64px); line-height: 1.04; letter-spacing: -.045em; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 50px; }
.split-heading > p { max-width: 510px; margin: 0 0 5px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.text-link { display: inline-flex; align-items: center; gap: 11px; color: var(--teal-500); font-size: 13px; font-weight: 800; }
.text-link svg { width: 18px; transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }

.services-section { background: var(--page); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 270px; position: relative; display: flex; flex-direction: column; align-items: flex-start; background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px; overflow: hidden; transition: box-shadow .22s ease; }
.service-card:hover { z-index: 2; box-shadow: 0 14px 34px rgba(14,43,46,.1); }
.service-card.featured { grid-row: span 2; min-height: 540px; background: var(--teal-800); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; }
.service-card.featured::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 15%, rgba(229,184,59,.22), transparent 32%), linear-gradient(180deg, transparent 40%, rgba(0,0,0,.15)); }
.service-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--teal-50); color: var(--teal-500); display: grid; place-items: center; margin-bottom: 38px; transition: background .22s ease, color .22s ease; position: relative; z-index: 1; }
.service-icon svg { width: 24px; height: 24px; }
.service-card.featured .service-icon { width: 72px; height: 72px; background: var(--gold-500); color: #1a1d1e; margin-bottom: 36px; }
.service-card h3 { position: relative; z-index: 1; margin: 0 0 12px; color: var(--text-strong); font-size: 23px; line-height: 1.12; letter-spacing: -.025em; }
.service-card.featured h3 { color: #fff; font-size: 38px; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.65; max-width: 240px; }
.service-card.featured p { color: rgba(255,255,255,.64); max-width: 280px; font-size: 14px; }

.announcements-section { background: var(--surface-soft); }
.news-layout { display: grid; grid-template-columns: 1.42fr .85fr; gap: 28px; }
.news-feature, .news-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.news-feature-image { height: 390px; position: relative; overflow: hidden; }
.news-feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.news-feature:hover .news-feature-image img { transform: scale(1.035); }
.news-tag { display: inline-flex; align-items: center; min-height: 29px; padding: 0 12px; border-radius: 999px; background: var(--gold-500); color: #1a1d1e; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.news-feature-image .news-tag { position: absolute; top: 22px; left: 22px; }
.news-tag.light { background: var(--teal-50); color: var(--teal-500); }
.news-feature-content { padding: 30px 34px 34px; }
.news-meta { display: flex; gap: 12px; align-items: center; color: var(--text-muted); font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.news-meta span + span::before { content: ""; display: inline-block; width: 3px; height: 3px; margin-right: 12px; vertical-align: 2px; background: var(--gold-500); border-radius: 50%; }
.news-feature h3 { margin: 14px 0 13px; color: var(--text-strong); font-size: 29px; line-height: 1.2; letter-spacing: -.028em; }
.news-feature p { color: var(--text-muted); font-size: 14px; max-width: 700px; margin: 0; }
.news-list { display: grid; gap: 28px; }
.news-card { padding: 28px; min-height: 0; position: relative; display: flex; flex-direction: column; }
.news-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.news-index { color: var(--text-muted); font-size: 10px; letter-spacing: .16em; font-weight: 800; }
.news-card h3 { margin: 13px 0 10px; color: var(--text-strong); font-size: 22px; line-height: 1.25; letter-spacing: -.02em; }
.news-card p { margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.65; padding-right: 25px; }
.news-card > a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-500); color: #fff; align-self: flex-end; margin-top: auto; transition: transform .2s, background .2s; }
.news-card > a:hover { background: var(--teal-600); transform: rotate(-45deg); }
.news-card > .news-card-link { width: auto; height: auto; margin-top: auto; padding-top: 22px; border-radius: 0; display: inline-flex; place-items: unset; align-self: flex-start; background: transparent; color: var(--teal-500); }
.news-card > .news-card-link:hover { background: transparent; color: var(--teal-600); transform: none; }

.about-section { padding: 145px 0; }
.about-grid { display: grid; grid-template-columns: 1.05fr .85fr; align-items: center; gap: 100px; }
.about-gallery { position: relative; min-height: 620px; }
.about-image-main { margin: 0; width: 100%; height: 620px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .lead { margin: 30px 0 18px; font-size: 20px; line-height: 1.6; color: var(--text-strong); }
.about-copy > p:not(.lead) { color: var(--text-muted); font-size: 14px; }
.responsibility-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 20px; margin: 30px 0 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.responsibility-list span { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 750; color: var(--text); }
.responsibility-list svg { width: 18px; height: 18px; padding: 4px; border-radius: 50%; background: var(--teal-100); color: var(--teal-500); stroke-width: 2.5; }

.forms-section { position: relative; background: var(--teal-800); color: #fff; overflow: hidden; }
.forms-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 10%, rgba(87,139,143,.35), transparent 34%), linear-gradient(115deg, transparent 55%, rgba(255,255,255,.035) 55%); }
.forms-bg-mark { position: absolute; bottom: -150px; left: -30px; font-size: 430px; line-height: 1; font-weight: 900; color: rgba(255,255,255,.025); letter-spacing: -.1em; user-select: none; }
.forms-grid { position: relative; display: grid; grid-template-columns: .8fr 1.1fr; align-items: center; gap: 100px; }
.forms-copy h2, .app-copy h2 { color: #fff; }
.forms-copy > p { max-width: 520px; margin: 28px 0 25px; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.75; }
.forms-notice { max-width: 520px; display: flex; gap: 14px; align-items: flex-start; padding: 18px 0 18px; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 30px; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.55; }
.forms-notice svg { flex: 0 0 20px; width: 20px; height: 20px; color: var(--gold-500); margin-top: 1px; }
.document-panel { border-radius: var(--radius); background: var(--surface); color: var(--text); box-shadow: 0 35px 90px rgba(0,0,0,.28); overflow: hidden; }
.document-panel-head { padding: 27px 30px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.document-panel-head > div { display: flex; flex-direction: column; }
.document-panel-head span { font-size: 9px; text-transform: uppercase; letter-spacing: .16em; color: var(--text-muted); font-weight: 800; }
.document-panel-head strong { color: var(--text-strong); font-size: 22px; }
.document-count { display: inline-flex; height: 29px; align-items: center; padding: 0 12px; border-radius: 999px; background: var(--gold-100); color: var(--gold-800) !important; }
.document-row { display: grid; grid-template-columns: 48px 1fr 42px; align-items: center; gap: 17px; padding: 22px 28px; border-bottom: 1px solid var(--line); transition: background .2s; }
.document-row:last-child { border-bottom: 0; }
.document-row:hover { background: var(--surface-soft); }
.document-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--teal-50); color: var(--teal-500); font-size: 10px; font-weight: 900; letter-spacing: .05em; }
.document-copy { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.document-copy strong { color: var(--text-strong); font-size: 13px; line-height: 1.35; }
.document-copy small { color: var(--text-muted); font-family: Tahoma, Arial, sans-serif; font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.document-action { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); color: var(--teal-500); display: grid; place-items: center; }
.document-action svg { width: 16px; }

.discover-grid { display: grid; grid-template-columns: 1.18fr .82fr; grid-template-rows: repeat(2, 310px); gap: 22px; }
.place-card { position: relative; overflow: hidden; border-radius: var(--radius); color: #fff; box-shadow: var(--shadow-soft); }
.place-large { grid-row: span 2; }
.place-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.place-card:hover img { transform: scale(1.06); }
.place-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,28,30,.04) 15%, rgba(6,28,30,.84) 100%); }
.place-copy { position: absolute; inset: auto 28px 26px; display: flex; flex-direction: column; align-items: flex-start; }
.place-copy small { color: var(--gold-500); text-transform: uppercase; letter-spacing: .14em; font-size: 9px; font-weight: 850; }
.place-copy strong { font-size: 25px; line-height: 1.05; margin: 7px 0 15px; letter-spacing: -.025em; }
.place-large .place-copy { inset: auto 42px 40px; }
.place-large .place-copy strong { font-size: 45px; }
.place-copy em { display: inline-flex; align-items: center; gap: 10px; font-style: normal; font-size: 11px; font-weight: 800; opacity: .78; }
.place-copy em svg { width: 16px; transition: transform .2s; }
.place-card:hover .place-copy em svg { transform: translateX(4px); }

.app-section { position: relative; min-height: 690px; display: flex; align-items: center; background: var(--teal-900); color: #fff; overflow: hidden; padding: 90px 0; }
.app-section::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(90deg, black, transparent 78%); }
.app-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.app-orb-one { width: 420px; height: 420px; right: 8%; top: 7%; background: rgba(21,94,99,.8); box-shadow: 0 0 0 90px rgba(21,94,99,.12); }
.app-orb-two { width: 180px; height: 180px; right: 34%; bottom: -70px; background: rgba(229,184,59,.12); }
.app-grid { position: relative; display: grid; grid-template-columns: .95fr 1fr; align-items: center; gap: 100px; }
.app-copy { padding-bottom: 0; }
.app-copy > p { max-width: 560px; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.75; margin: 28px 0; }
.app-features { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.app-features span { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.13); padding: 9px 13px; border-radius: 999px; color: rgba(255,255,255,.78); font-size: 11px; }
.app-features svg { width: 15px; color: var(--gold-500); }
.store-buttons { display: flex; gap: 12px; }
.store-button { min-width: 164px; height: 52px; padding: 0 15px; border-radius: 10px; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.07); display: flex; align-items: center; gap: 11px; color: #fff; text-align: left; cursor: pointer; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.store-button:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.4); box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.store-button:focus-visible { outline-color: var(--gold-500); }
.store-button > svg { width: 25px; height: 25px; fill: currentColor; stroke: none; }
.store-button > span { display: flex; flex-direction: column; line-height: 1.15; }
.store-button small { color: rgba(255,255,255,.65); font-size: 8px; font-weight: 500; }
.store-button strong { font-size: 14px; font-weight: 600; }
.app-visual { position: relative; height: 590px; display: flex; align-items: center; justify-content: center; }
.phone-glow { position: absolute; width: 480px; height: 480px; top: 50px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.14), rgba(255,255,255,0) 66%); }
.app-visual > img { position: relative; height: 560px; width: auto; object-fit: contain; filter: drop-shadow(0 35px 55px rgba(0,0,0,.45)); }
.app-floating-card { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.1); backdrop-filter: blur(20px); box-shadow: 0 18px 40px rgba(0,0,0,.2); border-radius: 15px; padding: 15px 17px; display: flex; align-items: center; gap: 11px; }
.app-floating-card strong { display: block; font-size: 11px; }
.app-floating-card small { display: block; color: rgba(255,255,255,.55); font-size: 9px; }
.card-one { top: 135px; right: 2%; }
.card-two { bottom: 105px; left: 11%; }
.card-two > svg { width: 27px; height: 27px; color: var(--gold-500); }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 6px rgba(47,125,74,.2); }

.contact-strip { background: var(--teal-500); color: #fff; padding: 45px 0; }
.contact-strip-grid { display: grid; grid-template-columns: 1.15fr 1fr 1.25fr .65fr; align-items: center; gap: 28px; }
.contact-strip .eyebrow { color: #fff; margin-bottom: 8px; }
.contact-strip .eyebrow span { background: var(--gold-500); }
.contact-intro h2 { color: #fff; font-size: 34px; }
.contact-item { display: flex; align-items: center; gap: 13px; border-left: 1px solid rgba(255,255,255,.22); padding-left: 24px; min-width: 0; }
.contact-icon { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 50%; background: rgba(255,255,255,.12); color: var(--gold-500); display: grid; place-items: center; }
.contact-icon svg { width: 19px; }
.contact-item > span:last-child { min-width: 0; display: flex; flex-direction: column; }
.contact-item small { font-size: 9px; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; opacity: .7; }
.contact-item strong { color: #fff; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.contact-button { height: 50px; padding-inline: 30px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; background: var(--gold-500); color: #1a1d1e; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 12px; font-weight: 600; transition: background .2s ease, box-shadow .2s ease; }
.contact-button:hover { background: var(--gold-400); box-shadow: 0 10px 26px rgba(0,0,0,.16); }
.contact-button svg { width: 17px; }

.site-footer { background: var(--teal-800); color: rgba(255,255,255,.72); }
.footer-main { display: grid; grid-template-columns: .9fr 1.4fr; gap: 110px; padding: 80px 0 60px; }
.footer-logo .brand-mark { width: 64px; height: 64px; }
.footer-brand > p { max-width: 360px; font-size: 13px; line-height: 1.7; margin: 24px 0; }
.footer-emergency { display: flex; flex-wrap: wrap; gap: 8px; max-width: 390px; }
.footer-emergency span { width: 100%; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .15em; font-size: 9px; font-weight: 600; margin-bottom: 3px; }
.footer-emergency a { border: 1px solid rgba(255,255,255,.18); padding: 6px 9px; border-radius: 999px; font-size: 10px; transition: color .2s, border-color .2s, background .2s; }
.footer-emergency a:hover { color: #fff; border-color: var(--gold-500); background: rgba(229,184,59,.08); }
.footer-socials { display: flex; align-items: center; gap: 9px; margin-top: 22px; }
.footer-socials-label { margin-right: 3px; color: rgba(255,255,255,.6); font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.footer-social-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: rgba(255,255,255,.82); }
.footer-social-icon svg { width: 16px; height: 16px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-links h3 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 10px; }
.footer-links a, .footer-links span { font-size: 12px; line-height: 1.55; }
.footer-links a:hover { color: var(--gold-500); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); min-height: 72px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 10px; }
.footer-bottom > div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: #fff; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in-view,
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }

@media (max-width: 1180px) {
  .primary-nav { gap: 10px; }
  .nav-list { gap: 0; }
  .nav-link { padding-inline: 7px; font-size: 12px; }
  .hero-inner { grid-template-columns: 1fr 230px; gap: 30px; }
  .hero-quick { grid-template-columns: 1.1fr repeat(4, 1fr) 55px; }
  .quick-heading { padding-inline: 18px; }
  .hero-quick > a { padding-inline: 12px; }
  .about-grid { gap: 60px; }
  .forms-grid { gap: 60px; }
  .contact-strip-grid { grid-template-columns: 1fr 1fr 1.2fr; }
  .contact-button { grid-column: 3; }
}

@media (max-width: 1024px) {
  :root { --header-h: 74px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .nav-container { width: 100%; margin-inline: 0; padding-inline: clamp(18px, 3vw, 28px); }
  .utility-desktop { display: none; }
  .nav-shell { height: 74px; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-name { font-size: 14px; }
  .menu-toggle { display: block; z-index: 4; }
  .primary-nav { position: fixed; inset: 0 0 0 auto; width: 85vw; min-height: 100dvh; padding: 105px 28px 40px; background: var(--teal-900); display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 25px; transform: translateX(105%); transition: transform .3s ease; box-shadow: -20px 0 70px rgba(0,0,0,.32); overflow-y: auto; }
  .primary-nav.open { transform: translateX(0); }
  .site-header.scrolled .primary-nav { background: var(--surface); }
  .menu-toggle.open > span:nth-child(1) { top: 21px; transform: rotate(45deg); }
  .menu-toggle.open > span:nth-child(2) { opacity: 0; }
  .menu-toggle.open > span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list > li { border-bottom: 1px solid rgba(255,255,255,.1); }
  .site-header.scrolled .nav-list > li { border-color: var(--line); }
  .nav-link { width: 100%; justify-content: space-between; padding: 16px 2px; color: #fff; font-size: 15px; }
  .dropdown-panel, .compact-panel, .dropdown-right { position: static; width: 100%; padding: 0 0 10px; border: 0; border-radius: 0; background: transparent !important; box-shadow: none; backdrop-filter: none; opacity: 1; visibility: visible; transform: none; display: none; }
  .has-dropdown.open .dropdown-panel { display: block; }
  .dropdown-panel a { padding: 12px 8px; }
  body::before { content: ""; position: fixed; inset: 0; z-index: 90; background: rgba(3,15,17,.62); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s ease, visibility .3s ease; }
  body.menu-open { overflow: hidden; }
  body.menu-open::before { opacity: 1; visibility: visible; pointer-events: auto; }
  body.menu-open .nav-shell { background: transparent; border-color: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  body.menu-open .brand { opacity: 0; }
  .hero { min-height: 850px; padding-top: 155px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-quick { grid-template-columns: repeat(4, 1fr) 56px; }
  .quick-heading { display: none; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card.featured { grid-row: auto; min-height: 270px; }
  .service-card.featured h3 { font-size: 28px; }
  .service-card.featured .service-icon { width: 52px; height: 52px; margin-bottom: 38px; }
  .news-layout { grid-template-columns: 1fr; }
  .news-list { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-gallery { max-width: 760px; width: 100%; margin-inline: auto; }
  .about-copy { max-width: 760px; }
  .forms-grid { grid-template-columns: 1fr; }
  .forms-copy { max-width: 720px; }
  .forms-bg-mark { font-size: 330px; }
  .app-grid { grid-template-columns: .9fr 1fr; gap: 30px; }
  .app-floating-card.card-one { right: -3%; }
  .app-floating-card.card-two { left: 7%; }
  .contact-strip-grid { grid-template-columns: 1fr 1fr; }
  .contact-button { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 760px) {
  :root { --header-h: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .utility-right > a, .utility-right .utility-divider { display: none; }
  .utility-left { gap: 8px; }
  .utility-label { display: none; }
  .nav-shell { height: 68px; }
  .nav-container { width: 100%; padding-inline: 16px; }
  .brand-mark, .site-header.scrolled .brand-mark { width: 44px; height: 44px; }
  .nav-container { gap: 12px; }
  .brand { gap: 9px; }
  .brand-copy { display: flex; }
  .brand-kicker { font-size: 7px; letter-spacing: .14em; }
  .brand-name { font-size: 12px; }
  .site-header.scrolled .nav-shell { height: 68px; }
  .primary-nav { width: 85vw; padding: 88px 20px 32px; }
  .nav-link { padding: 15px 2px; font-size: 15px; }
  .dropdown-panel a { padding: 11px 8px; }
  .hero { height: 100vh; height: 100svh; min-height: 680px; padding: 86px 0 202px; align-items: flex-end; }
  .hero-bg { background: linear-gradient(0deg, rgba(8,32,34,.96) 0%, rgba(8,32,34,.78) 32%, rgba(8,32,34,.2) 66%, rgba(8,32,34,.08) 100%), url("../images/hero mobile image v2.webp") center top / cover no-repeat; }
  .hero-grid { background-size: 58px 58px; }
  .hero .eyebrow { margin-bottom: 16px; font-size: 10px; letter-spacing: .14em; }
  .hero h1 { font-size: clamp(38px, 11.2vw, 48px); line-height: 1; }
  .hero-copy > p { max-width: 560px; font-size: 15px; line-height: 1.65; margin: 20px 0 0; }
  .hero-copy > p br { display: none; }
  .hero-quick-wrap { bottom: 28px; }
  .hero-quick { grid-template-columns: repeat(2, 1fr); min-height: 0; gap: 8px; overflow: visible; border: 0; background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .hero-quick > a { min-height: 68px; padding: 12px 13px; flex-direction: row; align-items: center; justify-content: center; text-align: center; border: 1px solid rgba(255,255,255,.2) !important; border-radius: 14px; background: rgba(16,56,59,.62); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); font-size: 10px; }
  .hero-quick > a:hover { background: rgba(16,56,59,.78); }
  .hero-quick > a svg { width: 19px; height: 19px; flex: 0 0 auto; }
  .hero-quick .quick-all { display: none; }
  .split-heading { display: block; margin-bottom: 34px; }
  .split-heading > p { margin-top: 20px; }
  .split-heading > .text-link { margin-top: 22px; }
  .section-heading h2, .about-copy h2, .forms-copy h2, .app-copy h2 { font-size: clamp(32px, 8.8vw, 38px); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card.featured { min-height: 205px; padding: 20px; }
  .service-card.featured { grid-column: 1 / -1; min-height: 230px; }
  .service-icon, .service-card.featured .service-icon { width: 44px; height: 44px; margin-bottom: 27px; }
  .service-card h3, .service-card.featured h3 { font-size: 19px; }
  .service-card p { display: none; }
  .service-card.featured p { display: block; padding-right: 45px; }
  .news-feature-image { height: 260px; }
  .news-feature-content { padding: 23px; }
  .news-feature h3 { font-size: 24px; }
  .news-list { grid-template-columns: 1fr; }
  .news-card { min-height: 270px; padding: 24px; }
  .news-card-top { margin-bottom: 24px; }
  .about-section { padding: 72px 0; }
  .about-grid { gap: 46px; }
  .about-gallery { min-height: 340px; }
  .about-image-main { width: 100%; height: 340px; border-radius: 22px; }
  .about-copy .lead { font-size: 17px; }
  .responsibility-list { grid-template-columns: 1fr; }
  .forms-grid { gap: 42px; }
  .forms-bg-mark { bottom: -70px; left: -15px; font-size: 210px; }
  .document-panel { border-radius: 18px; }
  .document-panel-head { padding: 20px; }
  .document-row { grid-template-columns: 40px 1fr 40px; gap: 11px; padding: 16px; }
  .document-icon { width: 40px; height: 40px; }
  .document-action { width: 40px; height: 40px; }
  .discover-grid { grid-template-columns: 1fr; grid-template-rows: 360px 230px 230px; gap: 16px; }
  .place-large { grid-row: auto; }
  .place-large .place-copy { inset: auto 27px 28px; }
  .place-large .place-copy strong { font-size: 32px; }
  .place-copy { inset: auto 22px 22px; }
  .place-copy strong { font-size: 22px; }
  .app-section { padding: 72px 0; }
  .app-grid { grid-template-columns: 1fr; gap: 42px; }
  .app-copy { padding-bottom: 0; }
  .store-buttons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .store-button { width: 100%; min-width: 0; padding-inline: 12px; }
  .app-visual { height: 470px; }
  .phone-glow { width: 360px; height: 360px; top: 50px; }
  .app-visual > img { height: 440px; }
  .app-floating-card { padding: 12px 14px; }
  .app-floating-card.card-one { right: 2%; top: 105px; }
  .app-floating-card.card-two { left: 8%; bottom: 78px; }
  .contact-strip { padding: 40px 0; }
  .contact-strip-grid { grid-template-columns: 1fr; gap: 22px; }
  .contact-item { padding: 17px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .contact-button { width: 100%; margin-top: 5px; }
  .footer-main { gap: 46px; padding: 56px 0 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 38px 28px; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 22px 0; }
  .footer-bottom > div { flex-wrap: wrap; gap: 10px 18px; }
}

@media (max-width: 440px) {
  .hero { min-height: 680px; }
  .hero h1 { font-size: clamp(38px, 11.2vw, 46px); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card, .service-card.featured { min-height: 195px; padding: 18px; }
  .service-card.featured { min-height: 220px; }
  .service-card h3, .service-card.featured h3 { font-size: 18px; }
  .app-visual { height: 455px; }
  .app-visual > img { height: 425px; }
  .app-floating-card { transform: scale(.8); }
  .card-one { transform-origin: right top; }
  .card-two { transform-origin: left bottom; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-links > div:last-child { grid-column: auto; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 36px; }
  .hero-quick > a { padding-inline: 10px; font-size: 9px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: auto; }
  .store-buttons { grid-template-columns: 1fr; }
  .app-visual { height: 430px; }
  .app-visual > img { height: 405px; }
}

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

/* Interior municipality pages */
.page-hero {
  position: relative;
  min-height: clamp(500px, 64vh, 650px);
  padding: 180px 0 86px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../images/sub-pages-hero.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.015);
}
.about-municipality-hero::before { background-position: center; }
.leadership-hero::before { background-position: center; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(8,32,34,.93) 0%, rgba(8,32,34,.76) 50%, rgba(8,32,34,.3) 100%), linear-gradient(0deg, rgba(8,32,34,.72), transparent 68%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
}
.page-hero-content { max-width: var(--container); }
.page-hero .eyebrow { color: #fff; margin-bottom: 18px; }
.page-hero h1 { margin: 0; max-width: 900px; font-size: clamp(48px, 6vw, 78px); line-height: 1.01; letter-spacing: -.05em; color: #fff; text-wrap: balance; }
.page-hero p { max-width: 720px; margin: 24px 0 0; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.75; }
.mobile-title-break { display: none; }

.page-intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.page-intro-media { margin: 0; height: 570px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.page-intro-media img { width: 100%; height: 100%; object-fit: cover; }
.page-copy h2,
.section-title { margin: 0; color: var(--text-strong); font-size: clamp(39px, 4.3vw, 62px); line-height: 1.04; letter-spacing: -.045em; }
.page-copy .lead { margin: 28px 0 18px; color: var(--text-strong); font-size: 20px; line-height: 1.6; }
.page-copy > p:not(.lead) { margin: 0; color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.municipality-summary { margin: 32px 0 0; padding: 25px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px 24px; }
.municipality-summary span { display: flex; align-items: flex-start; gap: 11px; color: var(--text); font-size: 13px; font-weight: 650; }
.municipality-summary svg { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 1px; padding: 4px; border-radius: 50%; background: var(--teal-100); color: var(--teal-500); stroke-width: 2.5; }

.role-section { background: var(--surface-soft); }
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.role-card { min-height: 210px; padding: 30px; background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.role-icon { width: 46px; height: 46px; margin-bottom: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-50); color: var(--teal-500); }
.role-icon svg { width: 22px; height: 22px; }
.role-card h3 { margin: 0 0 9px; color: var(--text-strong); font-size: 18px; line-height: 1.25; letter-spacing: -.02em; }
.role-card p { margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.65; }

.vision-section { position: relative; overflow: hidden; background: var(--teal-800); color: #fff; }
.vision-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 20%, rgba(87,139,143,.32), transparent 32%), linear-gradient(120deg, transparent 58%, rgba(255,255,255,.025) 58%); }
.vision-section .container { position: relative; }
.vision-section .eyebrow { color: var(--gold-500); }
.vision-section .section-title { max-width: 700px; color: #fff; }
.vision-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 50px; }
.vision-card { min-height: 250px; padding: 36px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.vision-card span { color: var(--gold-500); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; font-weight: 600; }
.vision-card h3 { margin: 18px 0 14px; color: #fff; font-size: 28px; letter-spacing: -.025em; }
.vision-card p { margin: 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.8; }
.priorities-heading { margin: 64px 0 24px; color: #fff; font-size: 22px; letter-spacing: -.02em; }
.priority-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.priority-item { min-height: 165px; padding: 25px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.priority-item strong { display: block; margin-bottom: 9px; color: #fff; font-size: 15px; }
.priority-item p { margin: 0; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.7; }

.message-section { background: var(--page); }
.message-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: stretch; gap: 42px; }
.president-portrait { position: relative; margin: 0; min-height: 690px; overflow: hidden; border-radius: var(--radius-lg); background: var(--surface-soft); box-shadow: var(--shadow-soft); }
.president-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.president-portrait figcaption { position: absolute; inset: auto 24px 24px; padding: 18px 20px; border-radius: 16px; background: rgba(14,43,46,.9); color: #fff; backdrop-filter: blur(14px); }
.president-portrait figcaption strong { display: block; font-size: 17px; }
.president-portrait figcaption span { display: block; margin-top: 3px; color: rgba(255,255,255,.66); font-size: 12px; }
.message-copy { position: relative; padding: clamp(36px, 5vw, 68px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-soft); }
.message-copy::before { content: "“"; position: absolute; right: 40px; top: 10px; color: var(--teal-50); font-family: Georgia, serif; font-size: 180px; line-height: 1; }
.message-copy > * { position: relative; }
.message-copy h2 { margin: 0 0 30px; color: var(--text-strong); font-size: clamp(38px, 4vw, 58px); line-height: 1.05; letter-spacing: -.045em; }
.message-copy p { margin: 0 0 19px; color: var(--text-muted); font-size: 15px; line-height: 1.85; }
.message-copy .message-opening { color: var(--text-strong); font-size: 17px; }
.message-signature { margin-top: 32px; padding-top: 25px; border-top: 1px solid var(--line); }
.message-signature strong { display: block; color: var(--text-strong); font-size: 16px; }
.message-signature span { display: block; color: var(--text-muted); font-size: 13px; line-height: 1.6; }

.council-section { background: var(--surface-soft); }
.council-heading { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 60px; margin-bottom: 48px; }
.council-heading p { margin: 0 0 5px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.council-term { display: flex; align-items: center; gap: 13px; margin-top: 23px; color: var(--teal-500); font-size: 13px; font-weight: 650; }
.council-term svg { width: 20px; height: 20px; }
.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.member-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); }
.member-image { height: 390px; overflow: hidden; background: var(--teal-50); }
.member-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .45s ease; }
.member-card:hover .member-image img { transform: scale(1.018); }
.member-card-body { padding: 23px 24px 25px; }
.member-role { display: block; margin-bottom: 8px; color: var(--teal-500); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .11em; }
.member-card h3 { margin: 0; color: var(--text-strong); font-size: 20px; line-height: 1.25; letter-spacing: -.02em; }
.member-card.is-leadership { border-top: 4px solid var(--gold-500); }

@media (max-width: 1024px) {
  .page-hero { min-height: 560px; padding-top: 150px; }
  .page-intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .page-intro-media { height: 500px; }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .priority-grid { grid-template-columns: repeat(2, 1fr); }
  .message-layout { grid-template-columns: .8fr 1.2fr; gap: 26px; }
  .president-portrait { min-height: 650px; }
  .council-heading { grid-template-columns: 1fr; gap: 22px; }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .page-hero { min-height: 500px; padding: 138px 0 62px; }
  .page-hero::after { background: linear-gradient(0deg, rgba(8,32,34,.95) 0%, rgba(8,32,34,.68) 60%, rgba(8,32,34,.3) 100%); }
  .about-municipality-hero::before { background-position: center; }
  .leadership-hero::before { background-position: center; }
  .page-hero .eyebrow { margin-bottom: 14px; }
  .page-hero h1 { font-size: clamp(39px, 11vw, 50px); }
  .page-hero p { margin-top: 18px; font-size: 15px; line-height: 1.65; }
  .mobile-title-break { display: initial; }
  .leadership-hero h1 { max-width: 100%; font-size: clamp(38px, 10.5vw, 46px); }
  .page-intro-media { height: 360px; border-radius: 22px; }
  .page-copy .lead { font-size: 17px; }
  .municipality-summary { grid-template-columns: 1fr; }
  .role-grid { margin-top: 34px; }
  .role-card { min-height: 190px; padding: 22px; }
  .role-icon { margin-bottom: 22px; }
  .vision-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .vision-card { min-height: 0; padding: 28px; }
  .vision-card h3 { font-size: 24px; }
  .vision-card p { font-size: 14px; }
  .priorities-heading { margin-top: 50px; }
  .priority-item { min-height: 150px; padding: 21px; }
  .message-layout { grid-template-columns: 1fr; gap: 22px; }
  .president-portrait { min-height: 520px; }
  .message-copy { padding: 30px 24px; }
  .message-copy::before { right: 16px; font-size: 120px; }
  .message-copy p { font-size: 14px; line-height: 1.8; }
  .member-image { height: 340px; }
}

@media (max-width: 560px) {
  .page-hero { min-height: 480px; }
  .role-grid, .priority-grid { grid-template-columns: 1fr; }
  .role-card { min-height: 0; }
  .priority-item { min-height: 0; }
  .president-portrait { min-height: 490px; }
  .member-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .member-card { border-radius: 16px; }
  .member-image { height: auto; aspect-ratio: 1 / 1.08; }
  .member-card-body { padding: 16px 14px 18px; }
  .member-role { min-height: 27px; margin-bottom: 7px; font-size: 8px; line-height: 1.45; letter-spacing: .08em; }
  .member-card h3 { font-size: 16px; line-height: 1.25; }
  .member-card h3 small { font-size: 12px; }
}

/* News and announcements archive */
.news-page-hero::before { background-position: center; }
.updates-section { background: var(--page); }
.updates-intro { display: grid; grid-template-columns: 1.1fr .75fr; align-items: end; gap: 70px; margin-bottom: 42px; }
.updates-intro > p { max-width: 520px; margin: 0 0 5px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.updates-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 22px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow-soft); }
.update-filters { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.update-filter { min-height: 42px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--text-muted); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 12px; font-weight: 600; cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.update-filter:hover { color: var(--teal-500); border-color: var(--teal-300); }
.update-filter.active { border-color: var(--teal-500); background: var(--teal-500); color: #fff; }
.updates-search { position: relative; display: block; flex: 0 1 330px; }
.updates-search svg { position: absolute; left: 16px; top: 50%; width: 18px; height: 18px; color: var(--text-muted); transform: translateY(-50%); pointer-events: none; }
.updates-search input { width: 100%; height: 46px; padding: 0 18px 0 46px; border: 1px solid var(--line); border-radius: 999px; outline: 0; background: var(--surface-soft); color: var(--text-strong); font-size: 13px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.updates-search input::placeholder { color: var(--n-400); }
.updates-search input:focus { border-color: var(--teal-400); background: var(--surface); box-shadow: 0 0 0 3px rgba(21,94,99,.1); }
.updates-status { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; font-weight: 600; }
.updates-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.updates-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); transition: box-shadow .22s ease, border-color .22s ease; }
.updates-card:hover { border-color: var(--teal-200); box-shadow: 0 18px 42px rgba(14,43,46,.11); }
.updates-card[hidden] { display: none; }
.updates-card-image { display: block; height: 265px; overflow: hidden; background: var(--surface-soft); }
.updates-card-image img { width: 100%; height: 100%; object-fit: cover; }
.updates-card-body { flex: 1; display: flex; flex-direction: column; align-items: flex-start; padding: 26px; }
.updates-card-top { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 21px; }
.updates-card-top time { color: var(--text-muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; white-space: nowrap; }
.update-type-badge { display: inline-flex; align-items: center; min-height: 28px; padding: 0 11px; border-radius: 999px; background: var(--teal-50); color: var(--teal-500); font-size: 9px; text-transform: uppercase; letter-spacing: .09em; font-weight: 600; }
.update-type-badge.event { background: var(--gold-100); color: var(--gold-800); }
.updates-category { display: block; margin-bottom: 10px; color: var(--teal-500); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.updates-card h3 { margin: 0 0 13px; color: var(--text-strong); font-size: 23px; line-height: 1.24; letter-spacing: -.025em; }
.updates-card h3 a { transition: color .2s ease; }
.updates-card h3 a:hover { color: var(--teal-500); }
.updates-card p { margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.7; }
.updates-read { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--teal-500); font-size: 12px; font-weight: 700; }
.updates-read svg { width: 16px; height: 16px; transition: transform .2s ease; }
.updates-read:hover svg { transform: translateX(3px); }
.updates-empty { padding: 70px 24px; border: 1px dashed var(--teal-300); border-radius: var(--radius); background: var(--surface); text-align: center; }
.updates-empty[hidden] { display: none; }
.updates-empty > svg { width: 34px; height: 34px; color: var(--teal-500); }
.updates-empty h3 { margin: 14px 0 5px; color: var(--text-strong); font-size: 22px; }
.updates-empty p { margin: 0; color: var(--text-muted); font-size: 13px; }

@media (max-width: 1024px) {
  .updates-intro { grid-template-columns: 1fr; gap: 20px; }
  .updates-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .news-page-hero::before { background-position: center; }
  .news-page-hero h1 { max-width: 100%; font-size: clamp(38px, 10.5vw, 46px); }
  .updates-intro { margin-bottom: 30px; }
  .updates-toolbar { align-items: stretch; flex-direction: column; padding: 14px; }
  .updates-search { flex-basis: auto; width: 100%; }
  .updates-grid { grid-template-columns: 1fr; gap: 18px; }
  .updates-card-image { height: 245px; }
  .updates-card-body { padding: 23px; }
}

@media (max-width: 440px) {
  .update-filters { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .update-filter { width: 100%; padding-inline: 12px; }
  .update-filter:first-child { grid-column: 1 / -1; }
  .updates-card-top { align-items: flex-start; }
  .updates-card h3 { font-size: 21px; }
}

/* Municipal forms library */
.forms-page-hero::before { background-position: center; }
.forms-library-section { background: var(--surface-soft); }
.forms-library-intro { display: grid; grid-template-columns: 1.1fr .7fr; align-items: end; gap: 70px; margin-bottom: 42px; }
.forms-library-tools { width: 100%; max-width: 500px; justify-self: end; }
.forms-notice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 30px; }
.forms-notice-grid .forms-notice { min-height: 132px; display: flex; align-items: flex-start; gap: 17px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.forms-notice-grid .forms-notice.language-notice { border-color: var(--teal-200); background: color-mix(in srgb, var(--teal-50) 72%, var(--surface)); }
.forms-notice-grid .forms-notice.application-notice { border-color: var(--gold-200); background: color-mix(in srgb, var(--gold-100) 70%, var(--surface)); }
.forms-notice-icon { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-500); color: #fff; }
.application-notice .forms-notice-icon { background: var(--gold-500); color: #1a1d1e; }
.forms-notice-icon svg { width: 20px; height: 20px; }
.forms-notice-grid .forms-notice strong { display: block; margin: 1px 0 6px; color: var(--text-strong); font-size: 15px; }
.forms-notice-grid .forms-notice p { margin: 0; color: var(--text-muted); font-size: 12px; line-height: 1.7; }
.forms-search { position: relative; display: block; width: min(100%, 380px); margin: 0 0 4px auto; }
.forms-search svg { position: absolute; left: 15px; top: 50%; width: 18px; height: 18px; color: var(--text-muted); transform: translateY(-50%); pointer-events: none; }
.forms-search input { width: 100%; height: 48px; padding: 0 17px 0 44px; border: 1px solid var(--teal-200); border-radius: 999px; outline: 0; background: var(--surface); color: var(--text-strong); font-size: 13px; box-shadow: var(--shadow-soft); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.forms-search input::placeholder { color: var(--n-400); }
.forms-search input:focus { border-color: var(--teal-400); background: var(--surface); box-shadow: 0 0 0 3px rgba(21,94,99,.1); }
.form-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; column-gap: 24px; row-gap: 54px; }
.form-group[hidden], .form-entry[hidden] { display: none; }
.form-group-heading { margin-bottom: 16px; }
.form-group-heading h3 { margin: 0; color: var(--text-strong); font-size: 25px; line-height: 1.2; letter-spacing: -.025em; }
.form-list { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); }
.form-entry { display: grid; grid-template-columns: 52px minmax(0, 1fr) auto; align-items: center; gap: 20px; min-height: 112px; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.form-entry:last-child { border-bottom: 0; }
.form-file-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 13px; background: var(--teal-50); color: var(--teal-500); font-size: 10px; letter-spacing: .07em; font-weight: 750; }
.form-entry-main { min-width: 0; }
.form-entry h4 { margin: 0 0 10px; color: var(--text-strong); font-size: 16px; line-height: 1.4; letter-spacing: -.012em; }
.form-metadata { display: flex; align-items: center; flex-wrap: wrap; gap: 7px 16px; color: var(--text-muted); font-size: 10px; text-transform: uppercase; letter-spacing: .055em; font-weight: 600; }
.form-metadata span + span::before { content: ""; display: inline-block; width: 3px; height: 3px; margin-right: 16px; vertical-align: 2px; border-radius: 50%; background: var(--gold-500); }
.form-download { min-height: 44px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--teal-200); border-radius: 999px; color: var(--teal-500); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 11px; font-weight: 600; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.form-download svg { width: 16px; height: 16px; }
.form-download:hover { border-color: var(--teal-500); background: var(--teal-500); color: #fff; }
.forms-empty { padding: 70px 24px; border: 1px dashed var(--teal-300); border-radius: var(--radius); background: var(--surface); text-align: center; }
.forms-empty[hidden] { display: none; }
.forms-empty > svg { width: 34px; height: 34px; color: var(--teal-500); }
.forms-empty h3 { margin: 14px 0 5px; color: var(--text-strong); font-size: 22px; }
.forms-empty p { margin: 0; color: var(--text-muted); font-size: 13px; }

@media (max-width: 1024px) {
  .forms-library-intro { grid-template-columns: 1fr; gap: 20px; }
  .forms-library-tools { max-width: 620px; justify-self: start; }
  .forms-search { margin-left: 0; }
  .form-groups { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .forms-page-hero::before { background-position: center; }
  .forms-notice-grid { grid-template-columns: 1fr; }
  .forms-notice-grid .forms-notice { min-height: 0; padding: 21px; }
  .forms-search { width: 100%; }
  .form-groups { gap: 42px; }
  .form-group-heading h3 { font-size: 22px; }
  .form-entry { grid-template-columns: 48px minmax(0, 1fr); gap: 15px; padding: 18px; }
  .form-file-icon { width: 48px; height: 48px; }
  .form-download { grid-column: 2; justify-self: start; margin-top: 1px; }
}

@media (max-width: 440px) {
  .forms-notice-grid .forms-notice { gap: 13px; }
  .forms-notice-icon { width: 38px; height: 38px; }
  .form-entry { grid-template-columns: 42px minmax(0, 1fr); gap: 12px; padding: 16px; }
  .form-file-icon { width: 42px; height: 42px; border-radius: 11px; font-size: 9px; }
  .form-entry h4 { font-size: 15px; }
  .form-metadata { gap: 5px 11px; }
  .form-metadata span + span::before { margin-right: 11px; }
  .form-download { grid-column: 1 / -1; width: 100%; margin-top: 3px; }
}

/* Discover Nahr Ibrahim pages */
.discover-about-hero::before { background-position: center; }
.landmarks-page-hero::before { background-position: center; }

.town-overview-section { background: var(--page); }
.town-overview-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 88px; }
.town-overview-image { height: 590px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--surface-soft); box-shadow: var(--shadow); }
.town-overview-image img { width: 100%; height: 100%; object-fit: cover; }
.town-overview-copy .lead { margin: 27px 0 17px; color: var(--text-strong); font-size: 19px; line-height: 1.65; }
.town-overview-copy > p:not(.lead) { margin: 0; color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.town-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 32px 0 0; }
.town-facts > div { min-height: 105px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.town-facts dt { margin-bottom: 8px; color: var(--teal-500); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.town-facts dd { margin: 0; color: var(--text-strong); font-size: 15px; font-weight: 650; line-height: 1.45; }
.town-overview-copy .town-source { margin-top: 15px; font-size: 11px; line-height: 1.6; }
.town-source a { color: var(--teal-500); text-decoration: underline; text-decoration-color: var(--teal-200); text-underline-offset: 3px; }

.town-story-section { position: relative; overflow: hidden; background: var(--teal-800); color: #fff; }
.town-story-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 12%, rgba(87,139,143,.25), transparent 32%), linear-gradient(120deg, transparent 58%, rgba(255,255,255,.025) 58%); }
.town-story-grid { position: relative; display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: 82px; }
.town-story-copy .eyebrow { color: var(--gold-500); }
.town-story-copy h2 { margin: 0 0 26px; color: #fff; font-size: clamp(39px, 4.3vw, 62px); line-height: 1.04; letter-spacing: -.045em; }
.town-story-copy p { margin: 0 0 18px; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.82; }
.town-story-copy .button { margin-top: 18px; }
.town-story-image { height: 560px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.town-story-image img { width: 100%; height: 100%; object-fit: cover; }

.landmarks-intro-section { background: var(--page); }
.landmarks-intro-grid { display: grid; grid-template-columns: 1.08fr .72fr; align-items: end; gap: 80px; }
.landmarks-intro-copy { padding-bottom: 7px; }
.landmarks-intro-copy p { margin: 0 0 14px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.landmarks-intro-copy p:last-child { margin-bottom: 0; }
.landmarks-list-section { padding-top: 0; background: var(--page); }
.landmark-list { display: grid; gap: 30px; }
.landmark-feature { display: grid; grid-template-columns: 1.03fr .97fr; min-height: 540px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-soft); scroll-margin-top: 110px; }
.landmark-feature-image { min-height: 540px; margin: 0; overflow: hidden; background: var(--teal-50); }
.landmark-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.landmark-feature-reverse .landmark-feature-image { order: 2; }
.landmark-feature-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 4.4vw, 66px); }
.landmark-type { margin-bottom: 20px; color: var(--teal-500); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.landmark-feature h2 { margin: 0 0 24px; color: var(--text-strong); font-size: clamp(35px, 3.6vw, 52px); line-height: 1.05; letter-spacing: -.04em; }
.landmark-feature p { margin: 0 0 17px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.landmark-feature .landmark-lead { color: var(--text-strong); font-size: 18px; line-height: 1.65; }
.landmark-guidance { margin-top: 14px; padding-top: 24px; border-top: 1px solid var(--line); }
.landmark-guidance h3 { margin: 0 0 14px; color: var(--text-strong); font-size: 16px; }
.landmark-guidance ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; margin: 0; padding: 0; list-style: none; }
.landmark-guidance li { position: relative; padding-left: 17px; color: var(--text-muted); font-size: 12px; line-height: 1.55; }
.landmark-guidance li::before { content: ""; position: absolute; top: .55em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }

@media (max-width: 1024px) {
  .town-overview-grid,
  .town-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .town-overview-image,
  .town-story-image { height: 500px; }
  .town-story-image { grid-row: 1; }
  .landmarks-intro-grid { grid-template-columns: 1fr; gap: 25px; }
  .landmarks-intro-copy { max-width: 720px; padding-bottom: 0; }
  .landmark-feature { grid-template-columns: 1fr; }
  .landmark-feature-image { min-height: 480px; }
  .landmark-feature-reverse .landmark-feature-image { order: initial; }
}

@media (max-width: 760px) {
  .discover-about-hero::before { background-position: center; }
  .landmarks-page-hero::before { background-position: center; }
  .discover-about-hero h1 { font-size: clamp(38px, 10.5vw, 46px); }
  .town-overview-grid,
  .town-story-grid { gap: 34px; }
  .town-overview-image,
  .town-story-image { height: 360px; border-radius: 22px; }
  .town-overview-copy .lead { font-size: 17px; }
  .town-facts { gap: 10px; }
  .town-facts > div { min-height: 96px; padding: 17px; }
  .landmarks-list-section { padding-bottom: 74px; }
  .landmark-list { gap: 22px; }
  .landmark-feature { min-height: 0; border-radius: 22px; }
  .landmark-feature-image { min-height: 0; height: 350px; }
  .landmark-feature-content { padding: 30px 24px 34px; }
  .landmark-feature h2 { margin-bottom: 19px; font-size: 34px; }
  .landmark-feature .landmark-lead { font-size: 16px; }
}

@media (max-width: 520px) {
  .town-facts { grid-template-columns: 1fr; }
  .town-facts > div { min-height: 0; }
  .landmark-feature-image { height: 300px; }
  .landmark-guidance ul { grid-template-columns: 1fr; }
}

/* Contact page */
.contact-page-hero::before { background-position: center; }
.emergency-section { background: var(--page); }
.contact-section-heading { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 60px; margin-bottom: 42px; }
.contact-section-heading > p { max-width: 440px; margin: 0 0 5px; color: var(--text-muted); font-size: 14px; line-height: 1.75; }
.emergency-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.emergency-card { position: relative; min-height: 122px; padding: 25px 27px; display: grid; grid-template-columns: 19px minmax(0, 1fr); grid-template-rows: auto auto; align-content: start; column-gap: 11px; row-gap: 10px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); color: var(--text-strong); }
.emergency-card span { grid-column: 1 / -1; max-width: 140px; color: var(--text-muted); font-size: 12px; line-height: 1.5; }
.emergency-card strong { grid-column: 2; grid-row: 2; margin: 0; align-self: center; font-size: 25px; line-height: 1.1; letter-spacing: -.025em; }
.emergency-card svg { position: static; grid-column: 1; grid-row: 2; align-self: center; width: 19px; height: 19px; color: var(--teal-500); }
.emergency-card:hover { background: var(--teal-50); }
.emergency-card.municipal-emergency { background: var(--teal-500); color: #fff; }
.emergency-card.municipal-emergency span { color: rgba(255,255,255,.72); }
.emergency-card.municipal-emergency svg { color: var(--gold-500); }
.emergency-card.municipal-emergency:hover { background: var(--teal-500); }

.municipal-contact-section { background: var(--surface-soft); }
.municipal-contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: stretch; gap: 68px; }
.municipal-contact-copy > p { max-width: 610px; margin: 27px 0 31px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.contact-details-list { display: grid; margin: 0; border-top: 1px solid var(--line); font-style: normal; }
.contact-detail-row { min-height: 92px; display: grid; grid-template-columns: 45px 1fr; align-items: center; gap: 17px; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--text-strong); }
.contact-detail-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; background: var(--surface); color: var(--teal-500); }
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-row small { display: block; margin-bottom: 5px; color: var(--teal-500); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.contact-detail-row strong { display: block; font-size: 14px; font-weight: 650; line-height: 1.55; }
a.contact-detail-row:hover strong { color: var(--teal-500); }
.contact-socials { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.contact-socials > span:first-child { margin-right: 3px; color: var(--text-strong); font-size: 12px; font-weight: 650; }
.contact-socials > small { color: var(--text-muted); font-size: 10px; }
.social-icon { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--teal-500); }
.social-icon svg { width: 17px; height: 17px; }

.municipality-location-card { min-height: 650px; display: grid; grid-template-rows: 1.15fr .85fr; overflow: hidden; border-radius: var(--radius-lg); background: var(--teal-800); box-shadow: var(--shadow); }
.location-visual { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--teal-50), #d8e5e3); }
.location-visual::before { content: ""; position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(rgba(21,94,99,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(21,94,99,.11) 1px, transparent 1px); background-size: 56px 56px; }
.location-visual::after { content: ""; position: absolute; width: 280px; height: 280px; right: -70px; top: -85px; border: 70px solid rgba(255,255,255,.5); border-radius: 50%; }
.location-road { position: absolute; display: block; border-radius: 999px; background: rgba(255,255,255,.85); box-shadow: 0 0 0 1px rgba(21,94,99,.08); }
.road-one { width: 115%; height: 26px; left: -8%; top: 46%; transform: rotate(-13deg); }
.road-two { width: 75%; height: 20px; left: -8%; top: 73%; transform: rotate(21deg); }
.road-three { width: 22px; height: 125%; left: 66%; top: -10%; transform: rotate(8deg); }
.location-pin { position: absolute; left: 56%; top: 43%; width: 68px; height: 68px; display: grid; place-items: center; border: 8px solid rgba(255,255,255,.75); border-radius: 50%; background: var(--gold-500); color: var(--teal-800); box-shadow: 0 16px 35px rgba(8,32,34,.22); transform: translate(-50%, -50%); }
.location-pin svg { width: 29px; height: 29px; }
.location-card-content { padding: 40px 43px 44px; }
.location-label { color: var(--gold-500); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.location-card-content h3 { margin: 15px 0 13px; color: #fff; font-size: clamp(28px, 3vw, 39px); line-height: 1.08; letter-spacing: -.035em; }
.location-card-content p { margin: 0 0 27px; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.7; }

.contact-form-section { position: relative; overflow: hidden; background: var(--teal-800); color: #fff; }
.contact-form-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 5% 12%, rgba(87,139,143,.26), transparent 27%), linear-gradient(120deg, transparent 60%, rgba(255,255,255,.025) 60%); }
.contact-form-layout { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 75px; }
.contact-form-intro { position: sticky; top: 125px; }
.contact-form-intro .eyebrow { color: var(--gold-500); }
.contact-form-intro h2 { margin: 0; color: #fff; font-size: clamp(40px, 4.3vw, 60px); line-height: 1.04; letter-spacing: -.045em; }
.contact-form-intro > p { margin: 25px 0 0; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.8; }
.formal-request-note { display: grid; grid-template-columns: 22px 1fr; gap: 13px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.formal-request-note svg { width: 20px; height: 20px; color: var(--gold-500); }
.formal-request-note p { margin: 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.75; }
.municipal-contact-form { padding: clamp(28px, 4vw, 48px); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); background: var(--surface); color: var(--text-strong); box-shadow: var(--shadow); }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }
.form-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.form-field { display: block; }
.form-field-wide { grid-column: 1 / -1; }
.form-field > span { display: block; margin: 0 0 9px; color: var(--text-strong); font-size: 12px; font-weight: 650; }
.form-field > span em { color: var(--gold-600); font-style: normal; }
.form-field > span small { margin-left: 5px; color: var(--text-muted); font-size: 10px; font-weight: 500; }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 13px; outline: 0; background: var(--surface-soft); color: var(--text-strong); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 13px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-field input,
.form-field select { height: 52px; padding: 0 15px; }
.form-field textarea { min-height: 160px; padding: 14px 15px; line-height: 1.65; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--teal-400); background: var(--surface); box-shadow: 0 0 0 3px rgba(21,94,99,.09); }
.attachment-field { padding: 19px; border: 1px dashed var(--teal-200); border-radius: 15px; background: var(--teal-50); }
.attachment-field input { height: auto; padding: 0; border: 0; border-radius: 0; background: transparent; }
.attachment-field input::file-selector-button { margin-right: 14px; padding: 10px 14px; border: 1px solid var(--teal-200); border-radius: 999px; background: var(--surface); color: var(--teal-500); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 11px; font-weight: 600; cursor: pointer; }
.attachment-field > small { display: block; margin-top: 10px; color: var(--text-muted); font-size: 10px; }
.contact-form-footer { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 30px; }
.recaptcha-note { display: flex; align-items: center; gap: 9px; max-width: 270px; color: var(--text-muted); font-size: 10px; line-height: 1.5; }
.recaptcha-note svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--teal-500); }
.recaptcha-note a { color: var(--teal-500); text-decoration: underline; text-decoration-color: var(--teal-200); text-underline-offset: 2px; }
.contact-submit { border: 0; cursor: pointer; }
.contact-submit:disabled { opacity: .68; cursor: wait; }
.contact-form-status { min-height: 0; margin: 0; color: var(--teal-500); font-size: 12px; line-height: 1.6; }
.contact-form-status:not(:empty) { margin-top: 20px; padding: 14px 16px; border-radius: 12px; background: var(--teal-50); }
.contact-form-status.is-error { color: #8f3428; background: #fff2ef; }

@media (max-width: 1100px) {
  .emergency-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .municipal-contact-grid { gap: 40px; }
  .contact-form-layout { grid-template-columns: .8fr 1.2fr; gap: 45px; }
}

@media (max-width: 900px) {
  .contact-section-heading,
  .municipal-contact-grid,
  .contact-form-layout { grid-template-columns: 1fr; }
  .contact-section-heading { gap: 20px; }
  .municipality-location-card { min-height: 590px; }
  .contact-form-intro { position: static; max-width: 680px; }
}

@media (max-width: 760px) {
  .contact-page-hero h1 { font-size: clamp(39px, 11vw, 50px); }
  .emergency-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 20px; }
  .emergency-card { min-height: 116px; padding: 21px; }
  .emergency-card strong { margin-top: 0; font-size: 21px; }
  .municipal-contact-grid { gap: 34px; }
  .municipality-location-card { min-height: 525px; border-radius: 22px; }
  .location-card-content { padding: 31px 25px 34px; }
  .contact-form-layout { gap: 34px; }
  .municipal-contact-form { border-radius: 22px; }
  .form-field-grid { grid-template-columns: 1fr; gap: 18px; }
  .form-field-wide { grid-column: auto; }
  .contact-form-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  .emergency-grid { grid-template-columns: 1fr; }
  .emergency-card { min-height: 112px; }
  .municipality-location-card { min-height: 490px; }
  .location-pin { width: 60px; height: 60px; }
  .municipal-contact-form { padding: 25px 19px; }
  .contact-submit { width: 100%; }
}

/* Legal pages */
.legal-page-hero::before { background-position: center; }
.legal-content-section { background: var(--surface-soft); }
.legal-layout { display: grid; grid-template-columns: 265px minmax(0, 1fr); align-items: start; gap: 65px; }
.legal-sidebar { position: sticky; top: 115px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); }
.legal-updated { display: block; color: var(--teal-500); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.legal-sidebar > strong { display: block; margin: 7px 0 24px; color: var(--text-strong); font-size: 15px; }
.legal-sidebar nav { display: grid; border-top: 1px solid var(--line); }
.legal-sidebar nav a { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--text-muted); font-size: 12px; line-height: 1.35; }
.legal-sidebar nav a:hover { color: var(--teal-500); }
.legal-document { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-soft); }
.legal-introduction { padding: clamp(30px, 4.2vw, 58px); background: var(--teal-800); }
.legal-introduction p { max-width: 820px; margin: 0 0 15px; color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.8; }
.legal-introduction p:last-child { margin-bottom: 0; }
.legal-introduction strong { color: #fff; }
.legal-document > section { padding: clamp(30px, 4.2vw, 58px); border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.legal-document > section:last-child { border-bottom: 0; }
.legal-document h2 { margin: 0 0 20px; color: var(--text-strong); font-size: clamp(25px, 2.8vw, 36px); line-height: 1.16; letter-spacing: -.03em; }
.legal-document p { margin: 0 0 16px; color: var(--text-muted); font-size: 14px; line-height: 1.85; }
.legal-document p:last-child { margin-bottom: 0; }
.legal-document ul { display: grid; gap: 11px; margin: 18px 0 20px; padding: 0; list-style: none; }
.legal-document li { position: relative; padding-left: 21px; color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.legal-document li::before { content: ""; position: absolute; left: 0; top: .67em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); }
.legal-document a { color: var(--teal-500); text-decoration: underline; text-decoration-color: var(--teal-200); text-underline-offset: 3px; }
.legal-contact-box { background: var(--teal-50); }
.legal-contact-box > span { display: block; margin-bottom: 13px; color: var(--teal-500); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }

/* 404 page */
.not-found-page { position: relative; min-height: 100svh; padding: 150px 0 80px; display: flex; align-items: center; overflow: hidden; isolation: isolate; color: #fff; }
.not-found-page::before { content: ""; position: absolute; inset: 0; z-index: -3; background: url("../images/sub-pages-hero.webp") center / cover no-repeat; transform: scale(1.015); }
.not-found-page::after { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(8,32,34,.96), rgba(8,32,34,.75) 58%, rgba(8,32,34,.42)); }
.not-found-page .page-hero-grid { z-index: -1; }
.not-found-content { position: relative; }
.not-found-code { position: absolute; left: -12px; top: 50%; z-index: -1; color: rgba(255,255,255,.055); font-size: clamp(230px, 31vw, 520px); font-weight: 800; line-height: .65; letter-spacing: -.1em; transform: translateY(-50%); user-select: none; }
.not-found-content h1 { max-width: 810px; margin: 0; color: #fff; font-size: clamp(50px, 6.5vw, 86px); line-height: 1.01; letter-spacing: -.05em; }
.not-found-content > p { max-width: 620px; margin: 25px 0 0; color: rgba(255,255,255,.73); font-size: 16px; line-height: 1.75; }
.not-found-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button-outline-light { min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: #fff; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 12px; font-weight: 600; }
.button-outline-light svg { width: 16px; height: 16px; }
.button-outline-light:hover { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.08); }
.not-found-links { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 48px; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.16); }
.not-found-links a { color: rgba(255,255,255,.72); font-size: 12px; }
.not-found-links a:hover { color: #fff; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-sidebar { position: static; }
  .legal-sidebar nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-sidebar nav a:nth-child(odd) { padding-right: 15px; }
}

@media (max-width: 600px) {
  .legal-sidebar { padding: 22px; }
  .legal-sidebar nav { grid-template-columns: 1fr; }
  .legal-sidebar nav a:nth-child(odd) { padding-right: 0; }
  .legal-document { border-radius: 22px; }
  .legal-introduction p { font-size: 14px; }
  .legal-document li { font-size: 13px; }
  .not-found-page { padding: 135px 0 65px; }
  .not-found-content h1 { font-size: 46px; }
  .not-found-content > p { font-size: 14px; }
  .not-found-actions { align-items: stretch; flex-direction: column; }
  .not-found-actions .button,
  .not-found-actions .button-outline-light { width: 100%; }
  .not-found-links { display: grid; }
}

/* Municipality admin */
.admin-page { min-height: 100svh; background: var(--surface-soft); }
.admin-page [hidden] { display: none !important; }
.admin-auth-view { min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr); background: var(--surface); }
.admin-auth-visual { position: relative; min-height: 100svh; padding: clamp(34px, 5vw, 72px); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; isolation: isolate; color: #fff; }
.admin-auth-visual::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("../images/sub-pages-hero.webp") center / cover no-repeat; }
.admin-auth-visual::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(145deg, rgba(8,32,34,.97) 4%, rgba(8,32,34,.77) 56%, rgba(8,32,34,.5)); }
.admin-auth-brand { display: flex; align-items: center; gap: 14px; }
.admin-auth-brand img { width: 64px; height: 64px; object-fit: contain; filter: brightness(0) invert(1); }
.admin-auth-brand span { display: flex; flex-direction: column; line-height: 1.2; }
.admin-auth-brand small { color: rgba(255,255,255,.67); font-size: 9px; font-weight: 650; letter-spacing: .17em; text-transform: uppercase; }
.admin-auth-brand strong { color: #fff; font-size: 16px; }
.admin-auth-message { max-width: 690px; padding: 80px 0 4vh; }
.admin-auth-message h1 { max-width: 660px; margin: 0; font-size: clamp(54px, 5.5vw, 82px); line-height: 1.01; letter-spacing: -.052em; }
.admin-auth-message p { max-width: 520px; margin: 24px 0 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.75; }
.admin-auth-panel { min-height: 100svh; padding: clamp(34px, 6vw, 88px); display: grid; place-items: center; background: var(--surface); }
.admin-login-card { width: min(100%, 470px); }
.admin-back-link { display: inline-flex; align-items: center; gap: 9px; margin-bottom: clamp(60px, 10vh, 105px); color: var(--text-muted); font-size: 12px; font-weight: 600; }
.admin-back-link svg { width: 17px; height: 17px; }
.admin-back-link:hover { color: var(--teal-500); }
.admin-panel-label,
.admin-list-header span,
.admin-editor-header span { display: block; color: var(--teal-500); font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.admin-login-card h2 { margin: 10px 0 12px; color: var(--text-strong); font-size: clamp(38px, 4vw, 52px); line-height: 1.05; letter-spacing: -.045em; }
.admin-login-card > p { margin: 0; color: var(--text-muted); font-size: 14px; }
.admin-login-form { display: grid; gap: 21px; margin-top: 36px; }
.admin-field { display: block; }
.admin-field > span { display: block; margin-bottom: 8px; color: var(--text-strong); font-size: 12px; font-weight: 650; }
.admin-field > span em { color: var(--gold-800); font-style: normal; }
.admin-field input,
.admin-field select,
.admin-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 13px; outline: 0; background: var(--surface-soft); color: var(--text-strong); font-size: 13px; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.admin-field input,
.admin-field select { height: 54px; padding: 0 15px; }
.admin-field textarea { min-height: 185px; padding: 14px 15px; resize: vertical; line-height: 1.7; }
.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus { border-color: var(--teal-400); background: var(--surface); box-shadow: 0 0 0 3px rgba(21,94,99,.1); }
.admin-primary-button,
.admin-secondary-button { min-height: 52px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; font-size: 12px; font-weight: 600; cursor: pointer; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.admin-primary-button { border: 1px solid var(--teal-500); background: var(--teal-500); color: #fff; box-shadow: 0 12px 28px rgba(21,94,99,.2); }
.admin-primary-button:hover { background: var(--teal-600); border-color: var(--teal-600); box-shadow: 0 15px 32px rgba(21,94,99,.27); }
.admin-primary-button svg { width: 17px; height: 17px; }
.admin-secondary-button { border: 1px solid var(--line); background: var(--surface); color: var(--text-muted); }
.admin-secondary-button:hover { border-color: var(--teal-300); color: var(--teal-500); }
.admin-login-form .admin-primary-button { width: 100%; margin-top: 5px; }
.admin-form-status { min-height: 0; margin: 0; color: var(--teal-600); font-size: 11px; line-height: 1.6; }
.admin-form-status:not(:empty) { margin-top: 17px; padding: 13px 15px; border-radius: 11px; background: var(--teal-50); }
.admin-preview-link { margin: 18px 0 0; padding: 0; border: 0; border-bottom: 1px solid var(--teal-300); background: transparent; color: var(--teal-500); font-size: 11px; font-weight: 600; cursor: pointer; }
.admin-login-form .admin-forgot-password { justify-self: start; margin: -4px 0 0; }
.admin-auth-footnote { margin-top: 34px !important; padding-top: 24px; border-top: 1px solid var(--line); font-size: 11px !important; line-height: 1.65; }

.admin-dashboard { min-height: 100svh; background: var(--surface-soft); }
.admin-topbar { min-height: 82px; padding: 13px clamp(24px, 4vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: 25px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); }
.admin-topbar-brand { display: flex; align-items: center; gap: 11px; }
.admin-topbar-brand img { width: 52px; height: 52px; object-fit: contain; }
.admin-topbar-brand span { display: flex; flex-direction: column; line-height: 1.2; }
.admin-topbar-brand small { color: var(--teal-500); font-size: 8px; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; }
.admin-topbar-brand strong { color: var(--text-strong); font-size: 14px; }
.admin-topbar-actions { display: flex; align-items: center; gap: 13px; }
.admin-topbar-actions a,
.admin-topbar-actions button { min-height: 40px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text-muted); font-size: 11px; font-weight: 600; cursor: pointer; }
.admin-topbar-actions a { display: inline-flex; align-items: center; }
.admin-topbar-actions a:hover,
.admin-topbar-actions button:hover { border-color: var(--teal-300); color: var(--teal-500); }
.admin-dashboard-shell { width: min(calc(100% - 48px), 1450px); margin-inline: auto; padding: 72px 0 90px; }
.admin-dashboard-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; margin-bottom: 33px; }
.admin-dashboard-heading .eyebrow { margin-bottom: 14px; }
.admin-dashboard-heading h1 { margin: 0; color: var(--text-strong); font-size: clamp(46px, 5vw, 70px); line-height: 1; letter-spacing: -.05em; }
.admin-dashboard-heading p { margin: 18px 0 0; color: var(--text-muted); font-size: 14px; }
.admin-add-button { flex: 0 0 auto; }
.admin-preview-notice { display: grid; grid-template-columns: 22px 1fr; gap: 12px; margin-bottom: 26px; padding: 15px 18px; border: 1px solid var(--gold-200); border-radius: 14px; background: var(--gold-100); color: var(--gold-800); }
.admin-preview-notice svg { width: 21px; height: 21px; margin-top: 1px; }
.admin-preview-notice p { margin: 0; font-size: 11px; line-height: 1.65; }
.admin-preview-notice.is-error { border-color: rgba(181,56,56,.25); background: #fbefef; color: var(--red-500); }
.admin-primary-button:disabled { opacity: .58; cursor: wait; box-shadow: none; }
.admin-workspace { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); align-items: start; gap: 25px; }
.admin-list-panel,
.admin-editor-panel { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); }
.admin-list-panel { overflow: hidden; }
.admin-list-header,
.admin-editor-header { min-height: 94px; padding: 24px 27px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.admin-list-header h2,
.admin-editor-header h2 { margin: 5px 0 0; color: var(--text-strong); font-size: 22px; line-height: 1.2; letter-spacing: -.025em; }
.admin-list-header > strong { min-width: 34px; height: 34px; padding: 0 10px; display: grid; place-items: center; border-radius: 999px; background: var(--teal-50); color: var(--teal-500); font-size: 11px; }
.admin-list-search { position: relative; display: block; margin: 19px 24px; }
.admin-list-search svg { position: absolute; left: 15px; top: 50%; width: 17px; height: 17px; color: var(--text-muted); transform: translateY(-50%); pointer-events: none; }
.admin-list-search input { width: 100%; height: 48px; padding: 0 15px 0 43px; border: 1px solid var(--line); border-radius: 999px; outline: 0; background: var(--surface-soft); color: var(--text-strong); font-size: 12px; }
.admin-list-search input:focus { border-color: var(--teal-400); background: var(--surface); box-shadow: 0 0 0 3px rgba(21,94,99,.09); }
.admin-announcement-list { border-top: 1px solid var(--line); }
.admin-announcement-row { min-height: 116px; padding: 18px 24px; display: grid; grid-template-columns: 92px minmax(0, 1fr) auto; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); transition: background .2s ease; }
.admin-announcement-row:last-child { border-bottom: 0; }
.admin-announcement-row:hover,
.admin-announcement-row.is-selected { background: var(--teal-50); }
.admin-announcement-row > img { width: 92px; height: 76px; border-radius: 11px; object-fit: cover; background: var(--surface-soft); }
.admin-announcement-row-copy span { display: block; color: var(--teal-500); font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.admin-announcement-row-copy h3 { margin: 7px 0 0; color: var(--text-strong); font-size: 15px; line-height: 1.35; }
.admin-row-actions { display: flex; align-items: center; gap: 8px; }
.admin-row-actions button { min-height: 36px; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--teal-500); font-size: 10px; font-weight: 600; cursor: pointer; }
.admin-row-actions button:hover { border-color: var(--teal-300); }
.admin-row-actions .admin-delete-action { color: var(--red-500); }
.admin-list-empty { padding: 48px 24px; border-top: 1px solid var(--line); color: var(--text-muted); font-size: 12px; text-align: center; }
.admin-editor-panel { position: sticky; top: 24px; overflow: hidden; }
.admin-icon-button { width: 38px; height: 38px; padding: 0; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--text-muted); cursor: pointer; }
.admin-icon-button:hover { color: var(--teal-500); border-color: var(--teal-300); }
.admin-icon-button svg { width: 16px; height: 16px; }
.admin-announcement-form { display: grid; gap: 20px; padding: 27px; }
.admin-upload-field { position: relative; display: block; cursor: pointer; }
.admin-upload-field > input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.admin-upload-field:focus-within .admin-upload-preview { outline: 2px solid var(--teal-500); outline-offset: 3px; }
.admin-upload-preview { min-height: 190px; padding: 25px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px dashed var(--teal-300); border-radius: 16px; background: var(--teal-50); color: var(--teal-500); text-align: center; background-position: center; background-size: cover; }
.admin-upload-preview svg { width: 34px; height: 34px; margin-bottom: 13px; }
.admin-upload-preview strong { font-size: 13px; }
.admin-upload-preview small { margin-top: 5px; color: var(--text-muted); font-size: 10px; }
.admin-upload-preview.has-image { align-items: flex-start; justify-content: flex-end; border-style: solid; color: #fff; text-align: left; }
.admin-upload-preview.has-image strong { padding: 7px 10px; border-radius: 8px; background: rgba(8,32,34,.84); }
.admin-upload-preview.has-image small { color: rgba(255,255,255,.82); text-shadow: 0 1px 3px rgba(0,0,0,.65); }
.admin-character-count { display: block; margin-top: 7px; color: var(--text-muted); font-size: 9px; text-align: right; }
.admin-date-note { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 12px; padding: 14px; border-radius: 12px; background: var(--surface-soft); }
.admin-date-note > svg { width: 21px; height: 21px; color: var(--teal-500); }
.admin-date-note span { display: flex; flex-direction: column; }
.admin-date-note small { color: var(--text-muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.admin-date-note strong { margin-top: 2px; color: var(--text-strong); font-size: 11px; }
.admin-form-actions { display: flex; justify-content: flex-end; gap: 10px; padding-top: 5px; }

@media (max-width: 1100px) {
  .admin-auth-view { grid-template-columns: 1fr 440px; }
  .admin-auth-visual { padding: 38px; }
  .admin-auth-panel { padding: 45px; }
  .admin-workspace { grid-template-columns: 1fr; }
  .admin-editor-panel { position: static; }
}

@media (max-width: 820px) {
  .admin-auth-view { display: block; position: relative; min-height: 100svh; padding: 105px 24px 35px; background: url("../images/sub-pages-hero.webp") center / cover no-repeat; isolation: isolate; }
  .admin-auth-view::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(8,32,34,.86); }
  .admin-auth-visual { min-height: 0; padding: 0; overflow: visible; background: transparent; }
  .admin-auth-visual::before,
  .admin-auth-visual::after { display: none; }
  .admin-auth-brand { position: absolute; top: 24px; left: 24px; }
  .admin-auth-brand img { width: 52px; height: 52px; }
  .admin-auth-message { padding: 0 0 28px; }
  .admin-auth-message .eyebrow { margin-bottom: 14px; }
  .admin-auth-message h1 { max-width: 520px; font-size: clamp(42px, 10vw, 62px); }
  .admin-auth-message p { margin-top: 15px; font-size: 14px; }
  .admin-auth-panel { min-height: 0; padding: 28px 24px; border-radius: 24px; }
  .admin-login-card { max-width: none; }
  .admin-back-link { margin-bottom: 36px; }
  .admin-topbar { align-items: flex-start; }
  .admin-topbar-actions { align-items: stretch; flex-direction: column; }
  .admin-topbar-actions a,
  .admin-topbar-actions button { min-height: 34px; }
  .admin-dashboard-shell { padding-top: 52px; }
  .admin-dashboard-heading { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .admin-auth-view { padding-inline: 16px; }
  .admin-auth-brand { left: 16px; }
  .admin-auth-brand small { font-size: 7px; }
  .admin-auth-brand strong { font-size: 13px; }
  .admin-auth-panel { padding: 25px 19px; border-radius: 20px; }
  .admin-login-card h2 { font-size: 38px; }
  .admin-topbar { min-height: 74px; padding-inline: 16px; }
  .admin-topbar-brand img { width: 44px; height: 44px; }
  .admin-topbar-brand small { display: none; }
  .admin-topbar-brand strong { max-width: 130px; font-size: 11px; line-height: 1.2; }
  .admin-topbar-actions a { display: none; }
  .admin-topbar-actions button { padding-inline: 13px; }
  .admin-dashboard-shell { width: min(calc(100% - 28px), 1450px); padding: 40px 0 60px; }
  .admin-dashboard-heading h1 { font-size: 43px; }
  .admin-add-button { width: 100%; }
  .admin-list-header,
  .admin-editor-header { padding: 21px 19px; }
  .admin-list-search { margin: 16px; }
  .admin-announcement-row { padding: 16px; grid-template-columns: 72px minmax(0, 1fr); gap: 13px; }
  .admin-announcement-row > img { width: 72px; height: 66px; }
  .admin-announcement-row-copy h3 { font-size: 13px; }
  .admin-row-actions { grid-column: 2; }
  .admin-row-actions button { min-height: 33px; }
  .admin-announcement-form { padding: 21px 18px; }
  .admin-upload-preview { min-height: 165px; }
  .admin-form-actions { align-items: stretch; flex-direction: column-reverse; }
  .admin-form-actions button { width: 100%; }
}

/* Privacy choice panel */
.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2200;
  width: min(520px, calc(100% - 48px));
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: #10383b;
  box-shadow: 0 18px 50px rgba(8, 32, 34, .3);
  color: #fff;
}
.cookie-consent-copy { flex: 1; }
.cookie-consent-copy strong { display: block; font-family: Inter, Arial, sans-serif; font-size: 15px; font-weight: 650; }
.cookie-consent-copy p { margin: 7px 0 8px; color: rgba(255, 255, 255, .76); font-size: 12px; line-height: 1.55; }
.cookie-consent-copy a { color: #f0bd35; font-size: 11px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-consent-actions button { min-height: 40px; padding: 0 17px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 999px; background: transparent; color: #fff; font: 500 12px/1 Inter, Arial, sans-serif; cursor: pointer; }
.cookie-consent-actions button:hover,
.cookie-consent-actions button:focus-visible { border-color: #f0bd35; }
.cookie-consent-actions .cookie-consent-accept { border-color: #f0bd35; background: #f0bd35; color: #102b2d; }

@media (max-width: 620px) {
  .cookie-consent { right: 14px; bottom: 14px; width: calc(100% - 28px); padding: 18px; align-items: stretch; flex-direction: column; gap: 16px; }
  .cookie-consent-actions { width: 100%; }
  .cookie-consent-actions button { flex: 1; }
}
