:root {
  --ink: #0b0d10;
  --muted: #5b626d;
  --line: #d9dde4;
  --paper: #ffffff;
  --soft: #f3f4f6;
  --maroon: #911636;
  --maroon-dark: #6f0f28;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 5;
}

.brand img {
  display: block;
  width: min(230px, 48vw);
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--maroon);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  min-height: 680px;
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(145, 22, 54, 0.09), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

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

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--maroon);
  border-radius: 6px;
  background: var(--maroon);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
}

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

.button.secondary:hover {
  background: rgba(145, 22, 54, 0.08);
}

.button.light {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--maroon);
  white-space: nowrap;
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.hero-panel div,
.service-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(11, 13, 16, 0.08);
}

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

.hero-panel span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--maroon);
  font-size: 0.8rem;
  font-weight: 900;
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.hero-panel p,
.service-grid p,
.driver-band p,
.site-footer p,
.policy p,
.policy li {
  color: var(--muted);
}

.section {
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 72px);
}

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

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

.service-grid article {
  padding: 28px;
}

.driver-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(20px, 5vw, 72px) clamp(56px, 8vw, 100px);
  padding: clamp(32px, 5vw, 56px);
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
}

.driver-band div {
  max-width: 720px;
}

.driver-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.driver-band .eyebrow {
  color: #f2b8c7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.site-footer p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a,
.policy a {
  color: var(--maroon);
  font-weight: 700;
}

.policy-wrap {
  padding: clamp(44px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(145, 22, 54, 0.07), transparent 34%),
    var(--paper);
}

.policy {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(11, 13, 16, 0.08);
}

.policy h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.policy h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}

.policy ul {
  padding-left: 22px;
}

@media (max-width: 860px) {
  .site-header,
  .hero,
  .driver-band,
  .site-footer {
    align-items: flex-start;
  }

  .site-header,
  .driver-band,
  .site-footer {
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

@media (max-width: 520px) {
  nav {
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .policy {
    padding: 24px 20px;
  }
}
