:root {
  color-scheme: dark;
  --bg: #070b15;
  --panel: #0d1525;
  --panel-strong: #101b2f;
  --text: #f6f8fc;
  --muted: #aab7ca;
  --line: #24344f;
  --accent: #5fa8ff;
  --accent-strong: #b7dcff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

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

.wrap {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  width: min(280px, 54vw);
}

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

.nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.hero {
  padding: 88px 0 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #0a1020 0%, #070b15 100%);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  color: var(--text);
  font-size: clamp(2.7rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(1.08rem, 2.5vw, 1.45rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: #05101e;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--text);
}

.section {
  padding: 64px 0;
}

.section.compact {
  padding-top: 0;
}

.muted-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #09101d;
}

.section-title {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.page-title {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
}

.page-title h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.grid {
  display: grid;
  gap: 16px;
}

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

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.service-grid {
  margin-top: 24px;
}

.card,
.content-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card {
  min-height: 180px;
  padding: 24px;
}

.card h2,
.card h3,
.content-panel h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.1rem;
}

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

.content-panel {
  padding: 28px;
}

.content-panel + .content-panel {
  margin-top: 16px;
}

.content-panel p + p,
.content-panel ul {
  margin-top: 14px;
}

.content-panel ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.business-list,
.contact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.business-list strong,
.contact-list strong {
  color: var(--text);
}

.business-list a,
.contact-list a {
  color: var(--accent-strong);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer p {
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .site-header,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .grid.three,
  .grid.two,
  .split {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 44px 0;
  }
}
