:root {
  --blue-900: #0d2b4c;
  --blue-700: #1766a6;
  --blue-100: #e9f4ff;
  --orange-500: #f28a3d;
  --orange-100: #fff0e4;
  --ink: #17202a;
  --muted: #5f6f7f;
  --line: #d8e5ef;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(13, 43, 76, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--blue-900);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--orange-500);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 43, 76, 0.9) 0%, rgba(13, 43, 76, 0.72) 42%, rgba(13, 43, 76, 0.2) 100%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 112px;
  max-width: 760px;
  justify-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-900);
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-900);
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
}

.hero-actions,
.btn {
  display: inline-flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 48px;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--blue-900);
  background: var(--orange-500);
  box-shadow: 0 14px 32px rgba(242, 138, 61, 0.28);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.section-pad {
  padding: 92px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.split,
.media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.copy-stack p,
.community p,
.cta p {
  color: var(--muted);
  font-size: 1.04rem;
}

.features {
  background: var(--blue-100);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.feature-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.story-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 265px;
  padding: 28px;
}

.feature-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--orange-500);
  font-weight: 800;
}

.feature-card p,
.story-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.media-split img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card {
  overflow: hidden;
}

.story-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.story-card h3,
.story-card p {
  padding-inline: 22px;
}

.story-card h3 {
  padding-top: 22px;
}

.story-card p {
  padding-bottom: 24px;
}

.local {
  background: var(--orange-100);
}

.city-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.city-links a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(242, 138, 61, 0.32);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-900);
  font-weight: 800;
}

.city-links a:hover {
  border-color: var(--orange-500);
}

.cta {
  padding: 86px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.cta-inner {
  max-width: 780px;
  text-align: center;
}

.cta h2,
.cta p {
  color: var(--white);
}

.cta .btn {
  margin-top: 14px;
}

.footer {
  padding: 54px 0;
  background: #071b30;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.7fr;
  gap: 36px;
}

.footer-brand,
.footer h2 {
  color: var(--white);
}

.footer h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer p {
  max-width: 330px;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .feature-grid,
  .city-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .media-split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav {
    min-height: 66px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
    gap: 8px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 740px;
  }

  .hero-overlay {
    background: rgba(13, 43, 76, 0.78);
  }

  .hero-content {
    padding: 76px 0 88px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .btn,
  .hero-actions {
    width: 100%;
  }

  .section-pad {
    padding: 64px 0;
  }

  .feature-grid,
  .city-links {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }
}
