:root {
  --ink: #101216;
  --muted: #5c6572;
  --line: #d9dee5;
  --paper: #ffffff;
  --soft: #f3f5f7;
  --dark: #15181d;
  --chrome: #d8dee7;
  --green: #2fe35a;
  --green-dark: #13852f;
  --red: #c8282f;
  --max: 1180px;
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: .75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

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

.header-inner {
  width: min(100% - 32px, var(--max));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

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

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: .92rem;
  font-weight: 750;
  padding: .65rem .8rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--soft);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  font-weight: 800;
  padding: .8rem 1.05rem;
  text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.button:hover {
  background: #2a3038;
}

.button.secondary {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--ink);
}

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

.button.green:hover {
  background: #0f6d27;
}

.button.pay {
  background: var(--red);
}

.button.pay:hover {
  background: #a91f25;
}

.hero {
  min-height: 600px;
  position: relative;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--dark);
}

.hero.compact {
  min-height: 390px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 10, 12, .88), rgba(8, 10, 12, .48) 46%, rgba(8, 10, 12, .18)),
    linear-gradient(0deg, rgba(8, 10, 12, .76), rgba(8, 10, 12, 0) 46%);
}

.hero-content {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 0 0 72px;
  color: white;
}

.eyebrow {
  margin: 0 0 .7rem;
  color: var(--green);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  max-width: 790px;
  font-size: 4.45rem;
  font-weight: 950;
}

h2 {
  font-size: 2.35rem;
  font-weight: 900;
}

h3 {
  font-size: 1.25rem;
  font-weight: 900;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 650px;
  margin-top: 1.05rem;
  color: rgba(255, 255, 255, .9);
  font-size: 1.18rem;
}

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

.section {
  padding: 86px 0;
}

.section.tight {
  padding: 54px 0;
}

.section.dark {
  background: var(--dark);
  color: white;
}

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

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 460px);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

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

.dark .section-heading p {
  color: rgba(255, 255, 255, .72);
}

.trust-grid,
.card-grid,
.brand-grid,
.steps {
  display: grid;
  gap: 16px;
}

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

.trust-item {
  border-top: 3px solid var(--green);
  background: white;
  padding: 22px;
}

.trust-item strong {
  display: block;
  font-size: 1.42rem;
  line-height: 1.1;
}

.trust-item span {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
}

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

.service-card,
.info-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.card-body,
.info-card,
.step-card {
  padding: 24px;
}

.card-body p,
.info-card p,
.step-card p,
.caption p {
  margin-top: .55rem;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 44px;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 290px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
  min-height: 596px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card .caption {
  position: absolute;
  inset: auto 0 0;
  padding: 44px 18px 18px;
  color: white;
  background: linear-gradient(0deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, 0));
}

.caption p {
  color: rgba(255, 255, 255, .78);
  font-size: .95rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: .45rem .9rem;
}

.filter-button.is-active,
.filter-button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.brand-grid {
  grid-template-columns: repeat(6, 1fr);
}

.brand-item {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 24px 14px;
  text-align: center;
  font-weight: 950;
}

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

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  gap: 24px;
  align-items: stretch;
}

.contact-panel {
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  padding: 34px;
}

.contact-panel dl {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
}

.contact-panel dt {
  color: rgba(255, 255, 255, .62);
  font-weight: 800;
}

.contact-panel dd {
  margin: 3px 0 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.map-card {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 227, 90, .22), rgba(216, 222, 231, .4)),
    var(--soft);
  padding: 34px;
  display: grid;
  align-content: end;
}

.map-card p {
  max-width: 460px;
  color: var(--muted);
}

.site-footer {
  background: #0d0f12;
  color: white;
  padding: 46px 0 96px;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(160px, 1fr));
  gap: 28px;
}

.site-footer img {
  width: 210px;
}

.site-footer h3 {
  font-size: .95rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .72);
}

.site-footer a {
  display: block;
  margin-top: .45rem;
  text-decoration: none;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.35rem;
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    padding: 10px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: .85rem;
  }

  .header-actions .button.secondary {
    display: none;
  }

  .section-heading,
  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .brand img {
    width: 146px;
  }

  .header-actions .button.pay {
    display: none;
  }

  .hero,
  .hero.compact {
    min-height: 520px;
  }

  .hero-content {
    padding-bottom: 42px;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .trust-grid,
  .card-grid,
  .steps,
  .gallery-grid,
  .brand-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: #0d0f12;
  }

  .mobile-cta a {
    min-height: 58px;
    display: grid;
    place-items: center;
    color: white;
    font-size: .88rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-cta a + a {
    border-left: 1px solid rgba(255, 255, 255, .12);
  }
}
