:root {
  --ink: #1f2733;
  --muted: #5b6675;
  --line: #dde2e8;
  --paper: #ffffff;
  --soft: #f3f5f7;
  --forest: #14304d;
  --deep: #0e2238;
  --copper: #b9722e;
  --copper-dark: #9c5e22;
  --gold: #dcab73;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.site-header::before {
  display: block;
  height: 4px;
  background: var(--copper);
  content: "";
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 0;
}

.brand img {
  width: 208px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--copper-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 12px 20px;
  background: var(--copper);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(185, 114, 46, 0.24);
}

.button:hover {
  background: var(--copper-dark);
  color: #fff;
}

.button-small {
  min-height: 38px;
  padding: 9px 15px;
  font-size: 13px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button-dark {
  background: var(--forest);
  box-shadow: 0 10px 24px rgba(20, 48, 77, 0.2);
}

.button-dark:hover {
  background: var(--deep);
}

.hero {
  padding: 104px 0 108px;
  color: #fff;
  background:
    linear-gradient(rgba(14, 34, 56, 0.82), rgba(14, 34, 56, 0.9)),
    url("assets/hero-banner.jpg") center / cover no-repeat;
}

.hero-grid,
.quote-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.split + .value-grid {
  margin-top: 34px;
}

.hero-copy {
  max-width: 650px;
}

.hero h1,
.hero .lead {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(33px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 16px;
  color: var(--forest);
  font-size: clamp(26px, 2.5vw, 33px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h3 {
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 19px;
  line-height: 1.25;
}

.lead {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #aebccb;
  font-size: 13.5px;
}

.hero-trust b {
  color: #fff;
  font-weight: 700;
}

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

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.route-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.route-card strong {
  display: block;
  margin: 4px 0 6px;
  font-size: 22px;
}

.route-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.route-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.route-arrow {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  padding: 24px 20px;
  border-left: 1px solid var(--line);
}

.proof-grid div:first-child {
  border-left: 0;
  padding-left: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--forest);
  font-size: 21px;
}

.proof-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section,
.page-hero {
  padding: 76px 0;
}

.page-hero {
  color: #fff;
  background: linear-gradient(135deg, var(--deep), var(--forest));
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(30px, 3.4vw, 40px);
}

.page-hero .lead {
  max-width: 720px;
}

.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.photo-section {
  background: #fff;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.photo-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
}

.photo-card-large {
  grid-row: span 2;
  min-height: 540px;
}

.photo-card img,
.inline-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card img {
  position: absolute;
  inset: 0;
}

.photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 34, 56, 0.86));
  content: "";
}

.photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-weight: 800;
}

.inline-photo {
  display: block;
  max-height: 360px;
  margin: 22px 0 18px;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(14, 34, 56, 0.14);
}

.steps,
.value-grid,
.product-grid,
.credential-grid {
  display: grid;
  gap: 20px;
}

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

.value-grid,
.credential-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.step,
.value-card,
.product-card,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.step,
.value-card,
.product-card,
.credential-grid article {
  padding: 24px;
}

.step {
  border-top: 4px solid var(--copper);
}

.step span,
.tag {
  color: var(--copper-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.step p,
.value-card p,
.product-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-list {
  display: grid;
  gap: 10px;
}

.product-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: #fff;
  color: var(--forest);
  font-weight: 800;
}

.product-list a:hover {
  border-color: var(--copper);
}

.product-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

.formula {
  color: var(--copper-dark);
  font-weight: 800;
}

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

.credential-grid article {
  border-radius: 8px;
  background: var(--deep);
}

.credential-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--copper);
  font-size: 24px;
  line-height: 1.15;
}

.credential-grid p {
  margin-bottom: 0;
  color: #aebdcd;
}

.text-link {
  color: var(--copper-dark);
  font-weight: 900;
}

.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  color: var(--ink);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.quote-section {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(14, 34, 56, 0.09);
}

.quote-form label {
  display: grid;
  gap: 5px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
}

.quote-form textarea {
  min-height: 96px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(185, 114, 46, 0.16);
  border-color: var(--copper);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 8px;
  padding: 34px;
  background: var(--deep);
  color: #fff;
}

.cta-band h2 {
  color: #fff;
  font-size: 28px;
}

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

.site-footer {
  padding: 44px 0 24px;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-grid img {
  width: 210px;
  margin-bottom: 14px;
}

.footer-grid h2 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 8px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

@media (max-width: 900px) {
  .hero {
    padding: 80px 0 84px;
  }

  .hero-grid,
  .quote-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .steps,
  .value-grid,
  .product-grid,
  .credential-grid,
  .photo-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    gap: 16px;
  }
}

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

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

  .brand img {
    width: 190px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero,
  .section,
  .page-hero {
    padding: 56px 0;
  }

  .proof-grid,
  .steps,
  .value-grid,
  .product-grid,
  .credential-grid,
  .photo-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card-large {
    grid-row: auto;
    min-height: 260px;
  }

  .proof-grid div,
  .proof-grid div:first-child {
    border-left: 0;
    padding-left: 20px;
  }

  .product-list a,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-list span {
    text-align: left;
  }
}
