:root {
  --c-primary: #0b3d66;
  --c-primary-dark: #072a47;
  --c-primary-soft: #e8f0f7;
  --c-accent: #c9a227;
  --c-accent-dark: #a5831a;
  --c-bg: #ffffff;
  --c-bg-alt: #f4f7fa;
  --c-text: #1c2530;
  --c-muted: #5b6b7a;
  --c-border: #e0e6ec;
  --c-warn-bg: #fff6e0;
  --c-warn-border: #f0d58c;
  --c-warn-text: #6b5210;
  --c-danger: #b42318;
  --c-ok: #1f7a4d;
  --max: 1180px;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(11, 61, 102, 0.07);
  --shadow-lg: 0 10px 30px rgba(11, 61, 102, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 16px;
}

a { color: var(--c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { line-height: 1.25; color: var(--c-primary-dark); }
h2 { font-size: 1.8rem; margin: 0 0 10px; }
h3 { font-size: 1.15rem; margin: 0 0 6px; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; padding: 8px 12px; z-index: 999; }
.skip-link:focus { left: 10px; }

/* ---------- Alert bar ---------- */
.alert-bar {
  display: none;
  background: var(--c-danger);
  color: #fff;
  font-size: 0.9rem;
  padding: 10px 20px;
  text-align: center;
}
.alert-bar.show { display: block; }
.alert-bar a { color: #fff; text-decoration: underline; font-weight: 600; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--c-primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
}
.brand { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: 0.2px; white-space: nowrap; }
.brand span { color: var(--c-accent); }
.brand:hover { text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.95rem;
  cursor: pointer;
}

.main-nav > ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a,
.main-nav > ul > li > button {
  display: block;
  color: #eaf0f6;
  font-weight: 600;
  font-size: 0.93rem;
  padding: 20px 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > button:hover,
.main-nav > ul > li.open > button { color: var(--c-accent); text-decoration: none; }
.main-nav .caret { font-size: 0.7em; margin-left: 4px; opacity: 0.8; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  list-style: none;
  margin: 0;
}
.main-nav li:hover > .dropdown,
.main-nav li.open > .dropdown,
.main-nav li:focus-within > .dropdown { display: block; }
.dropdown a { display: block; padding: 9px 18px; color: var(--c-text); font-size: 0.93rem; }
.dropdown a:hover { background: var(--c-bg-alt); color: var(--c-primary); text-decoration: none; }
.dropdown small { display: block; color: var(--c-muted); font-size: 0.78rem; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--c-primary-dark);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; align-items: stretch; padding: 8px 0 16px; }
  .main-nav > ul > li > a, .main-nav > ul > li > button { padding: 12px 20px; width: 100%; text-align: left; }
  .dropdown { position: static; box-shadow: none; border-radius: 0; background: rgba(255,255,255,0.05); }
  .main-nav li:hover > .dropdown { display: none; }
  .main-nav li.open > .dropdown { display: block; }
  .dropdown a { color: #dce6ef; padding-left: 34px; }
  .dropdown a:hover { background: rgba(255,255,255,0.08); color: #fff; }
  .dropdown small { color: #9fb3c6; }
}

/* ---------- Disclaimer ---------- */
.disclaimer {
  background: #eef2f6;
  border-bottom: 1px solid var(--c-border);
  padding: 9px 20px;
  font-size: 0.8rem;
  color: var(--c-muted);
  text-align: center;
}

/* ---------- Hero slideshow ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--c-primary-dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  transform: scale(1.04);
}
.hero-slide.active { opacity: 1; animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) {
  .hero-slide.active { animation: none; }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,42,71,0.55) 0%, rgba(7,42,71,0.35) 45%, rgba(7,42,71,0.85) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 80px 20px 110px; text-align: center; }
.hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 16px; text-shadow: 0 2px 14px rgba(0,0,0,0.35); }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #e8eef4; max-width: 720px; margin: 0 auto 30px; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-caption {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 74px;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.hero-credit {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 74px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  max-width: 60%;
  text-align: right;
}
.hero-credit a { color: rgba(255,255,255,0.9); text-decoration: underline; }
.hero-dots { position: absolute; z-index: 2; bottom: 104px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.hero-dots button {
  width: 11px; height: 11px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0;
}
.hero-dots button.active { background: var(--c-accent); border-color: var(--c-accent); }
@media (max-width: 640px) {
  .hero-caption { display: none; }
  .hero-credit { max-width: 90%; }
}

/* ---------- Page header with image ---------- */
.page-hero {
  position: relative;
  color: #fff;
  background: var(--c-primary-dark) center/cover no-repeat;
  padding: 90px 20px 60px;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,42,71,0.45), rgba(7,42,71,0.85));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 12px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.page-hero p { color: #e3ebf3; max-width: 760px; margin: 0; font-size: 1.1rem; }
.page-hero .breadcrumb { color: #c9d7e4; font-size: 0.85rem; margin-bottom: 12px; }
.page-hero .breadcrumb a { color: #fff; }
.page-hero .hero-credit { bottom: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--c-accent); color: #1f1a05; }
.btn-primary:hover { background: #dbb531; }
.btn-outline { border-color: rgba(255,255,255,0.75); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.14); }
.btn-small { padding: 7px 14px; font-size: 0.85rem; border-radius: 6px; }
.btn-blue { background: var(--c-primary); color: #fff; }
.btn-blue:hover { background: var(--c-primary-dark); }
.btn-ghost { border-color: var(--c-border); color: var(--c-primary); background: #fff; }
.btn-ghost:hover { background: var(--c-bg-alt); }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.section-alt { background: var(--c-bg-alt); }
.section-dark { background: var(--c-primary-dark); color: #e3ebf3; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-intro { color: var(--c-muted); max-width: 760px; margin: 0 0 32px; font-size: 1.05rem; }
.prose { max-width: 800px; }
.prose p { margin: 0 0 16px; }
.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent-dark);
  margin-bottom: 8px;
}
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.section-head .section-intro { margin-bottom: 0; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Photo figure + credit ---------- */
.photo { margin: 0; position: relative; overflow: hidden; background: #dde5ec; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo .credit {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.66rem;
  line-height: 1.3;
  background: rgba(0,0,0,0.55);
  color: #eee;
  padding: 3px 7px;
  border-top-left-radius: 6px;
  max-width: 85%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.photo .credit a { color: #fff; }

/* ---------- Place cards ---------- */
.pcard {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pcard .photo { aspect-ratio: 16 / 10; }
.pcard-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex-grow: 1; }
.pcard-body p { color: var(--c-muted); font-size: 0.95rem; margin: 0 0 12px; }
.pcard .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-primary);
  background: var(--c-primary-soft);
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 10px;
  align-self: flex-start;
}
.pcard .tag.warn { background: var(--c-warn-bg); color: var(--c-warn-text); }
.pcard .tag.free { background: #e3f4ea; color: var(--c-ok); }
.meta { list-style: none; padding: 0; margin: 4px 0 16px; font-size: 0.88rem; }
.meta li { padding: 5px 0; border-top: 1px dashed var(--c-border); display: flex; gap: 8px; }
.meta li:first-child { border-top: none; }
.meta b { color: var(--c-primary-dark); min-width: 84px; flex-shrink: 0; font-weight: 700; }
.pcard-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
a.pcard-link { color: inherit; }
a.pcard-link:hover { text-decoration: none; }
a.pcard-link h3 { color: var(--c-primary-dark); }

/* ---------- Feature split ---------- */
.feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 64px;
}
.feature:last-child { margin-bottom: 0; }
.feature.reverse .feature-media { order: 2; }
.feature-media .photo { border-radius: var(--radius); aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg); }
.feature-body p { color: var(--c-text); }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; gap: 22px; }
  .feature.reverse .feature-media { order: 0; }
}

/* ---------- Mosaic gallery ---------- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 12px; }
.mosaic .photo { border-radius: 10px; }
.mosaic .wide { grid-column: span 2; }
.mosaic .tall { grid-row: span 2; }
@media (max-width: 760px) { .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } }

/* ---------- Widgets ---------- */
.widget-strip { margin-top: -60px; position: relative; z-index: 5; }
.widgets { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 16px; }
@media (max-width: 960px) { .widgets { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .widgets { grid-template-columns: 1fr; } }
.widget {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
  border-top: 4px solid var(--c-primary);
}
.widget.accent { border-top-color: var(--c-accent); }
.widget h4 { margin: 0 0 8px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-muted); }
.widget .big { font-size: 2.1rem; font-weight: 800; color: var(--c-primary-dark); line-height: 1.1; }
.widget .sub { font-size: 0.88rem; color: var(--c-muted); }
.widget .src { font-size: 0.7rem; color: #8a99a8; margin-top: 8px; }
.widget .src a { color: #6f8295; }
.gauge { height: 8px; background: #e6edf3; border-radius: 6px; margin: 10px 0 4px; overflow: hidden; }
.gauge span { display: block; height: 100%; background: var(--c-primary); border-radius: 6px; transition: width 0.8s; }
.forecast { display: flex; gap: 6px; margin-top: 10px; }
.forecast div { flex: 1; text-align: center; font-size: 0.75rem; background: var(--c-bg-alt); border-radius: 6px; padding: 5px 2px; }
.forecast b { display: block; font-size: 0.8rem; color: var(--c-primary-dark); }
.aqi-pill { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; color: #fff; background: var(--c-ok); }

/* ---------- Quick links ---------- */
.quick-links { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 960px) { .quick-links { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .quick-links { grid-template-columns: repeat(2, 1fr); } }
.quick-links a {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-primary-dark);
  box-shadow: var(--shadow);
}
.quick-links a:hover { border-color: var(--c-accent); text-decoration: none; transform: translateY(-2px); }
.quick-links svg { width: 30px; height: 30px; margin: 0 auto 8px; stroke: var(--c-primary); fill: none; stroke-width: 1.7; display: block; }

/* ---------- Event list ---------- */
.events { display: flex; flex-direction: column; gap: 18px; }
.event {
  display: grid;
  grid-template-columns: 96px 220px 1fr;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  align-items: stretch;
}
.event.past { opacity: 0.6; }
.event-date {
  background: var(--c-primary);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 6px;
}
.event-date .m { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-accent); }
.event-date .d { font-size: 1.6rem; font-weight: 800; line-height: 1.1; }
.event-date .y { font-size: 0.75rem; opacity: 0.8; }
.event .photo { min-height: 150px; }
.event-body { padding: 16px 20px 16px 0; }
.event-body p { margin: 0 0 8px; color: var(--c-muted); font-size: 0.93rem; }
.event-when { font-weight: 700; color: var(--c-primary-dark); font-size: 0.9rem; margin-bottom: 6px; }
.countdown { display: inline-block; font-size: 0.72rem; font-weight: 800; background: var(--c-accent); color: #1f1a05; border-radius: 20px; padding: 2px 9px; margin-left: 8px; }
@media (max-width: 760px) {
  .event { grid-template-columns: 80px 1fr; }
  .event .photo { display: none; }
  .event-body { padding: 14px 16px 14px 0; }
}

/* ---------- Contact / service cards ---------- */
.svc {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.svc .icon-circle { margin-bottom: 12px; }
.svc p { color: var(--c-muted); font-size: 0.93rem; margin: 0 0 12px; }
.svc .phone { font-size: 1.15rem; font-weight: 800; color: var(--c-primary-dark); display: block; margin-bottom: 4px; }
.svc.emergency { border: 2px solid var(--c-danger); }
.svc.emergency .phone { color: var(--c-danger); font-size: 1.6rem; }
.icon-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--c-primary-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-circle svg { width: 24px; height: 24px; stroke: var(--c-primary); fill: none; stroke-width: 1.8; }

/* ---------- Notices ---------- */
.notice {
  background: var(--c-warn-bg);
  border: 1px solid var(--c-warn-border);
  border-left: 5px solid var(--c-accent);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 0 0 28px;
  color: var(--c-warn-text);
  font-size: 0.95rem;
}
.notice strong { color: #4d3a08; }
.notice.info { background: var(--c-primary-soft); border-color: #c7d9ea; border-left-color: var(--c-primary); color: #1f3d5a; }
.notice.danger { background: #fdecea; border-color: #f5c2bd; border-left-color: var(--c-danger); color: #6e1d16; }

.tip {
  background: #fff;
  border: 1px dashed var(--c-accent);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.93rem;
  margin: 16px 0;
}
.tip b { color: var(--c-accent-dark); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; }
table.data-table { width: 100%; border-collapse: collapse; margin: 12px 0 20px; font-size: 0.93rem; background: #fff; }
table.data-table th, table.data-table td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--c-border); vertical-align: top; }
table.data-table th { background: var(--c-primary); color: #fff; font-weight: 700; }
table.data-table tr:nth-child(even) td { background: #fafcfd; }

/* ---------- Map ---------- */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-border); box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Jump links ---------- */
.jumplinks { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; }
.jumplinks a {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.jumplinks a:hover { background: rgba(255,255,255,0.25); text-decoration: none; }
h2[id], h3[id], section[id], div[id] { scroll-margin-top: 84px; }

/* ---------- Stats ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 760px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); padding: 20px 10px; }
.stat .v { font-size: 1.6rem; font-weight: 800; color: var(--c-primary); }
.stat .l { font-size: 0.76rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- FAQ ---------- */
.faq details {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 0 20px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--c-primary-dark);
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 12px; font-size: 1.4rem; color: var(--c-accent-dark); }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 16px; }
.faq-group { margin: 36px 0 12px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-accent-dark); }

/* ---------- Credits page ---------- */
.credits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.credit-item { display: flex; gap: 12px; background: #fff; border: 1px solid var(--c-border); border-radius: 10px; padding: 10px; font-size: 0.82rem; }
.credit-item img { width: 80px; height: 64px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-primary-dark); color: #cdd9e4; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin: 0 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #cdd9e4; font-size: 0.9rem; }
.footer-col a:hover { color: var(--c-accent); }
.footer-col p { font-size: 0.9rem; margin: 0 0 12px; }
.footer-bottom { text-align: center; font-size: 0.8rem; color: #8ea1b3; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
.footer-bottom a { color: #b5c6d6; }
