:root {
  --ink: #1f2528;
  --muted: #5a646b;
  --surface: #ffffff;
  --soft: #f5f7f8;
  --line: #dce3e6;
  --accent: #e08524;
  --accent-dark: #9f551b;
  --teal: #3e747d;
  --teal-dark: #28545b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--teal-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(224, 133, 36, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-160%);
  background: var(--surface);
  color: var(--ink);
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.page-header {
  background: var(--ink);
  color: var(--surface);
}

.site-header {
  min-height: 78vh;
}

.site-nav {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 132px;
  height: auto;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent);
}

.hero,
.page-title {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 5.5rem 0 6.25rem;
}

.page-title {
  padding: 4rem 0 4.75rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header .eyebrow,
.page-header .eyebrow {
  color: var(--accent);
}

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

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  max-width: 900px;
  margin-bottom: 1.1rem;
  font-size: 3.25rem;
}

.page-title h1 {
  margin-bottom: 0.75rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

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

.hero-copy,
.section-intro p,
.page-title p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.section-intro p {
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.05rem;
  border: 2px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.button:hover {
  background: #f0a14c;
  border-color: #f0a14c;
  color: var(--ink);
}

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

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--surface);
}

main {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

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

.section-heading {
  max-width: 680px;
  margin-bottom: 1.6rem;
}

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

.service-card {
  min-height: 230px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(31, 37, 40, 0.08);
}

.service-card p,
.split-section p,
.policy p,
.policy li {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent-dark);
  content: "";
}

.contact-band {
  margin: 1.5rem 0 4.5rem;
  padding: 2rem;
  border-radius: 8px;
  background: var(--teal);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.contact-band h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.contact-band .eyebrow {
  color: #ffd39a;
}

.policy {
  max-width: 860px;
  padding: 4rem 0;
}

.policy section + section {
  margin-top: 2.4rem;
}

.policy h2 {
  font-size: 1.45rem;
}

.policy ul {
  margin: 0;
  padding-left: 1.25rem;
}

.policy li + li {
  margin-top: 0.45rem;
}

.site-footer {
  padding: 1.25rem max(1rem, calc((100% - 1120px) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

@media (max-width: 820px) {
  .site-header {
    min-height: auto;
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    padding: 4rem 0 4.75rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .card-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 1rem;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 116px;
  }

  .nav-links {
    gap: 0.55rem 0.9rem;
  }

  .hero,
  .page-title {
    width: min(100% - 1.25rem, 1120px);
  }

  main {
    width: min(100% - 1.25rem, 1120px);
  }

  .hero {
    padding: 3rem 0 3.75rem;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-copy,
  .section-intro p,
  .page-title p {
    font-size: 1.02rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .contact-band {
    padding: 1.35rem;
  }

  .button {
    width: 100%;
  }
}
