:root {
  --primary: #174A7C;
  --primary-dark: #0f3358;
  --accent: #F97316;
  --teal: #22A6A1;
  --text: #1F2937;
  --muted: #5e6b7a;
  --subtle: #E8EEF3;
  --surface: #F7F9FB;
  --white: #FFFFFF;
  --radius: 8px;
}

html {
  background: var(--surface);
}

body {
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--primary);
}

a:hover,
a:focus {
  color: var(--accent);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--teal);
  color: var(--white);
  padding: .6rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  max-width: 1180px;
}

.title,
.content h1,
.content h2,
.content h3,
.content h4,
.footer-brand,
.site-brand {
  font-family: "Merriweather", Georgia, serif;
  letter-spacing: 0;
}

.top-strip {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, .86);
  font-size: .82rem;
  font-weight: 600;
}

.top-strip__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 34px;
}

.top-strip a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(249, 115, 22, .75);
  text-underline-offset: 4px;
}

.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 30;
}

.navbar.is-primary {
  background: var(--primary);
  box-shadow: 0 6px 20px rgba(15, 51, 88, .14);
}

.navbar.is-primary .navbar-brand > .navbar-item,
.navbar.is-primary .navbar-end > .navbar-item,
.navbar.is-primary .navbar-link {
  color: #fff;
  font-weight: 700;
}

.navbar.is-primary .navbar-item:hover,
.navbar.is-primary .navbar-link:hover,
.navbar.is-primary .navbar-item:focus,
.navbar.is-primary .navbar-link:focus {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.site-brand {
  font-size: 1.18rem;
}

.navbar-link:not(.is-arrowless)::after {
  border-color: var(--accent);
}

.navbar-dropdown {
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
}

.hero.is-primary.city-hero {
  background-color: var(--primary);
  background-image:
    linear-gradient(90deg, rgba(23, 74, 124, .92), rgba(23, 74, 124, .72)),
    url("/assets/images/img_2db65db713f9.png");
  background-position: center;
  background-size: cover;
}

.hero.is-primary.city-hero .title,
.hero.is-primary.city-hero .subtitle {
  color: #fff;
}

.city-hero__inner {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 280px;
}

.city-hero .title {
  max-width: 780px;
}

.quick-panel {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--radius);
  display: grid;
  gap: .75rem;
  padding: 1rem;
}

.button {
  border-radius: 6px;
  font-weight: 700;
}

.button.is-warning {
  background: var(--accent);
  color: #fff;
}

.page-section {
  background: var(--surface);
}

.narrow-container {
  max-width: 860px;
}

.section-heading,
.article-header {
  margin-bottom: 1.5rem;
}

.article-header--compact {
  border-bottom: 1px solid var(--subtle);
  padding-bottom: 1rem;
}

.eyebrow,
.city-chip,
.menu-label,
.footer-heading {
  color: var(--teal);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.city-chip {
  background: rgba(34, 166, 161, .13);
  border-radius: 999px;
  display: inline-flex;
  margin-bottom: .75rem;
  padding: .28rem .6rem;
}

.city-chip--light {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 780px;
}

.article-shell {
  background: var(--white);
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(31, 41, 55, .05);
  padding: 2rem;
}

.article-shell--media {
  max-width: 980px;
  margin: 0 auto;
}

.content.is-large {
  font-size: 1.02rem;
}

.content h1,
.content h2 {
  color: var(--primary);
}

.content h3,
.content h4 {
  color: var(--text);
}

.content blockquote {
  border-left: 4px solid var(--accent);
  color: var(--text);
  background: #fff8f2;
}

.site-figure {
  margin: 1.5rem 0;
}

.site-figure img,
.site-gallery img,
.card img,
.article-main-image img {
  border-radius: var(--radius);
  display: block;
  height: auto;
  max-width: 100%;
}

.site-figure figcaption,
.site-gallery figcaption {
  color: var(--muted);
  font-size: .85rem;
  margin-top: .45rem;
}

.site-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 1.5rem 0;
}

.site-gallery__item {
  margin: 0;
}

.site-gallery__item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.city-card {
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(31, 41, 55, .05);
  height: 100%;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.card-grid {
  border-color: var(--subtle);
}

.city-card:hover,
.city-card:focus-within {
  box-shadow: 0 14px 28px rgba(23, 74, 124, .14);
  transform: translateY(-3px);
}

.city-card .title {
  line-height: 1.25;
}

.city-card .card-content {
  display: flex;
  flex-direction: column;
  min-height: 230px;
}

.city-card .city-link {
  font-weight: 700;
  margin-top: auto;
}

.city-card--feature {
  border-color: var(--subtle);
  box-shadow: inset 0 4px 0 var(--accent), 0 8px 20px rgba(31, 41, 55, .05);
}

.city-link {
  color: var(--primary);
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: rgba(249, 115, 22, .6);
  text-underline-offset: 4px;
}

.city-sidebar {
  background: var(--white);
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: sticky;
  top: 104px;
}

.city-sidebar .menu-list a {
  border-radius: 6px;
}

.city-sidebar .menu-list a:hover,
.city-sidebar .menu-list a:focus {
  background: rgba(34, 166, 161, .12);
  color: var(--primary);
}

.site-breadcrumb {
  margin-bottom: 1rem;
}

.directory-tile {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--subtle);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  color: var(--text);
  display: flex;
  font-weight: 700;
  min-height: 78px;
  padding: 1rem;
}

.directory-tile:hover,
.directory-tile:focus {
  border-left-color: var(--accent);
  box-shadow: 0 8px 18px rgba(31, 41, 55, .08);
}

.table-container {
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.table.is-striped tbody tr:not(.is-selected):nth-child(even) {
  background: #f8fbfd;
}

.article-main-image {
  float: right;
  margin: 0 0 1rem 1.5rem;
  max-width: 33%;
}

.toc-box {
  background: var(--white);
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  padding: 1rem;
  position: sticky;
  top: 104px;
}

.toc-mobile {
  display: none;
}

.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, .84);
  padding-top: 2rem;
}

.site-footer a {
  color: rgba(255, 255, 255, .88);
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fff;
}

.footer-rule {
  background: var(--accent);
  height: 4px;
  margin-bottom: 1.5rem;
  width: 88px;
}

.footer-brand {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
}

.footer-note {
  max-width: 34rem;
}

.footer-heading {
  color: #fff;
}

.footer-links {
  list-style: none;
  margin: .5rem 0 0;
}

.footer-links li + li {
  margin-top: .35rem;
}

@media (max-width: 1023px) {
  .navbar-menu {
    display: block;
    box-shadow: none;
  }

  .navbar-end {
    background: var(--primary);
    padding-bottom: .75rem;
  }

  .navbar-item.has-dropdown .navbar-dropdown {
    display: block;
    padding-left: 1rem;
    position: static;
  }

  .city-hero__inner {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    max-width: 420px;
  }

  .city-sidebar {
    position: static;
  }

  .article-shell {
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .top-strip__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .city-hero .title {
    font-size: 2rem;
  }

  .article-main-image {
    float: none;
    margin: 0 0 1rem;
    max-width: 100%;
  }

  .toc-desktop {
    display: none;
  }

  .toc-mobile {
    display: block;
  }
}

@media print {
  .site-header,
  .site-footer,
  .city-sidebar,
  .quick-panel {
    display: none;
  }

  body,
  .page-section,
  .article-shell {
    background: #fff;
    box-shadow: none;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
