:root {
  --ink: #172228;
  --muted: #59686f;
  --line: #d8e0e3;
  --panel: #f5f7f4;
  --paper: #fbfcfa;
  --brand: #295a63;
  --brand-dark: #183a43;
  --accent: #b46f38;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(23, 34, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-size-adjust: 100%;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 224, 227, 0.86);
  background: rgba(251, 252, 250, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  max-width: 1120px;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--brand);
  color: var(--brand);
  font-size: 14px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

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

.hero {
  min-height: min(690px, calc(100svh - 72px));
  display: flex;
  align-items: end;
  background:
    linear-gradient(
      90deg,
      rgba(18, 31, 38, 0.88),
      rgba(18, 31, 38, 0.52) 52%,
      rgba(18, 31, 38, 0.2)
    ),
    url("./hero.png") center / cover no-repeat;
  color: var(--white);
}

.hero-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 24px 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d6b08d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(42px, 6vw, 76px);
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

.lead {
  max-width: 630px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 18px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
    background 160ms ease;
}

.button:hover {
  background: #9f5f2c;
}

.button:active {
  transform: scale(0.97);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

.section {
  padding: 76px 24px;
}

.section.alt {
  background: var(--panel);
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head p,
.body-copy p {
  color: var(--muted);
  font-size: 17px;
}

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

.service {
  min-height: 210px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 26px;
}

.service .number {
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.service p {
  margin-top: 12px;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.image-panel {
  min-height: 390px;
  box-shadow: var(--shadow);
  background: url("./process.png") center / cover no-repeat;
}

.body-copy {
  display: grid;
  gap: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  color: var(--muted);
}

.page-title {
  padding: 82px 24px 56px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.page-title .wrap {
  display: grid;
  gap: 18px;
}

.page-title p {
  max-width: 740px;
  color: var(--muted);
  font-size: 19px;
}

.content {
  padding: 62px 24px 86px;
}

.narrow {
  max-width: 820px;
  margin: 0 auto;
}

.narrow h2 {
  margin-top: 34px;
  font-size: 25px;
}

.narrow h2:first-child {
  margin-top: 0;
}

.narrow p,
.narrow li {
  color: var(--muted);
  font-size: 16px;
}

.narrow p {
  margin-top: 12px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
  gap: 42px;
  align-items: start;
}

.contact-detail {
  border-top: 4px solid var(--brand);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 28px;
}

.contact-detail a {
  color: var(--brand);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #16252c;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  max-width: 1120px;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 24px;
  font-size: 14px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

@media (max-width: 820px) {
  .nav {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-inner {
    padding: 74px 20px 62px;
  }

  .section,
  .content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-head,
  .two-col,
  .contact-band {
    grid-template-columns: 1fr;
  }

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

  .image-panel {
    min-height: 280px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
