* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #123047;
  background: #f5f7fb;
  line-height: 1.6;
}

a {
  color: #0b7285;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: #0b4f6c;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #e9f5ff;
  font-size: 0.9rem;
  font-weight: 500;
}

nav a.active {
  border-bottom: 2px solid #ffd166;
  padding-bottom: 0.15rem;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.hero {
  background: linear-gradient(135deg, #0b4f6c, #1b6b93);
  color: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
  gap: 2.5rem;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
}

.hero p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.chip {
  font-size: 0.75rem;
  background: rgba(255,255,255,0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: #ffd166;
  color: #2b2b2b;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}

.hero-side {
  background: rgba(5, 24, 36, 0.22);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.hero-side h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.stat-pill {
  background: rgba(6, 41, 63, 0.85);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
}

.section {
  margin-top: 2.25rem;
}

.section h2 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.section p.lead {
  font-size: 0.95rem;
  max-width: 680px;
  margin-top: 0;
  color: #44566a;
}

.tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6c7a89;
  margin-bottom: 0.25rem;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.card {
  background: #fff;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.card h3 {
  margin: 0;
  font-size: 1rem;
}

.card .category {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8894a4;
}

.card p {
  margin: 0.1rem 0 0.25rem;
  font-size: 0.9rem;
}

.card .meta {
  font-size: 0.78rem;
  color: #6c7a89;
}

.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.4rem;
}

.card-links a {
  font-size: 0.78rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: #e7f5ff;
}

.highlight-strip {
  margin-top: 2rem;
  padding: 1.1rem 1.25rem;
  border-radius: 0.9rem;
  background: #e7f5ff;
  font-size: 0.88rem;
}

.highlight-strip strong {
  display: block;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: #24567a;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.callout {
  background: #fff;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
  font-size: 0.9rem;
}

.callout h3 {
  margin-top: 0;
  font-size: 1rem;
}

ul.simple {
  padding-left: 1.1rem;
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
}

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.photo-grid figure {
  margin: 0;
}

.photo-grid img {
  width: 100%;
  display: block;
  border-radius: 0.9rem;
  max-height: 260px;
  object-fit: cover;
}

.photo-grid figcaption {
  font-size: 0.75rem;
  color: #6c7a89;
  margin-top: 0.3rem;
}

footer {
  border-top: 1px solid #d0d8e5;
  margin-top: 3rem;
  padding: 1rem 1.25rem 2rem;
  font-size: 0.8rem;
  color: #6c7a89;
}

footer .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.75rem 1.4rem;
  }
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
  .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
