:root {
  --color-bg: #f7f9fb;
  --color-surface: #ffffff;
  --color-text: #152033;
  --color-muted: #5d6878;
  --color-border: #d9e0e8;
  --color-navy: #0e3157;
  --color-blue: #1f6fb2;
  --color-steel: #eef3f7;
  --color-accent: #c7952b;
  --shadow-soft: 0 18px 45px rgba(15, 35, 60, 0.09);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-navy);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  background: var(--color-navy);
  color: #ffffff;
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--color-muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--color-steel);
  color: var(--color-navy);
  outline: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(14, 49, 87, 0.95), rgba(23, 76, 122, 0.88)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px,
      transparent 76px
    );
  color: #ffffff;
}

.hero::after {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: -32px;
  width: 280px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 0;
  content: "";
  opacity: 0.45;
  transform: skewX(-10deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 56px;
  align-items: center;
  min-height: 500px;
  padding: 72px 0;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.15;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 4.9rem);
}

.hero-subheadline {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.hero-panel dl,
.business-list {
  margin: 0;
}

.hero-panel div {
  padding: 24px;
}

.hero-panel div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

dt {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-panel dt {
  color: rgba(255, 255, 255, 0.7);
}

dd {
  margin: 6px 0 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
}

.hero-panel dd {
  color: #ffffff;
}

.section {
  padding: 76px 0;
  background: var(--color-surface);
}

.section + .section {
  border-top: 1px solid var(--color-border);
}

.content-narrow {
  max-width: 840px;
}

.section h2 {
  color: var(--color-navy);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.section p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.business-section {
  background: var(--color-bg);
}

.section-heading {
  margin-bottom: 28px;
}

.business-list {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.business-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  padding: 24px 28px;
}

.business-row + .business-row {
  border-top: 1px solid var(--color-border);
}

.business-row dd {
  color: var(--color-text);
  font-size: 1.04rem;
}

.site-footer {
  background: #101a27;
  color: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 0;
}

.footer-name {
  margin: 0 0 8px;
  font-weight: 700;
}

address {
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
}

.copyright {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
  }

  .brand {
    white-space: normal;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 2px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 8px 10px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-subheadline {
    font-size: 1.08rem;
  }

  .section {
    padding: 56px 0;
  }

  .business-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .copyright {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 2.15rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-panel div {
    padding: 20px;
  }
}
