:root {
  color-scheme: light;
  --ink: #14211f;
  --muted: #60706d;
  --line: #dce5e2;
  --paper: #f7faf8;
  --white: #ffffff;
  --pine: #173f36;
  --teal: #0f766e;
  --river: #d8edf0;
  --amber: #d99a32;
  --steel: #334155;
  --shadow: 0 20px 60px rgba(13, 35, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--amber);
  color: #1c160c;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  opacity: 0.76;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 8px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: #eef5f3;
}

.site-nav .nav-cta {
  color: #15201e;
  background: var(--amber);
  padding-inline: 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--pine);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 31, 28, 0.9), rgba(11, 31, 28, 0.56) 43%, rgba(11, 31, 28, 0.08) 76%),
    linear-gradient(0deg, rgba(11, 31, 28, 0.38), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 160px 0 58px;
  color: var(--white);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  text-decoration: none;
  font-weight: 850;
}

.button.primary {
  color: #191407;
  background: var(--amber);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.button.dark {
  background: #132320;
  color: var(--white);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  margin: 58px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  padding: 18px;
}

.hero-facts dt {
  font-weight: 900;
  font-size: 1.35rem;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-band span {
  padding: 18px clamp(16px, 3vw, 34px);
  background: var(--white);
  font-weight: 800;
  text-align: center;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  line-height: 1.2;
  font-size: 1.15rem;
}

.section-heading p:last-child,
.location-content p,
.cta-strip p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--teal);
  font-weight: 900;
}

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

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: stretch;
}

.location-content {
  padding: 44px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.location-content p {
  margin-top: 20px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.area-list li {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f4f8f7;
  font-weight: 750;
}

.location-panel {
  padding: 34px;
  border-radius: 8px;
  background: var(--pine);
  color: var(--white);
  box-shadow: var(--shadow);
}

.location-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.location-panel a {
  display: inline-flex;
  margin-top: 28px;
  color: var(--amber);
  font-weight: 850;
}

.map-pin {
  display: block;
  width: 84px;
  height: 84px;
  margin-bottom: 52px;
  border-radius: 50% 50% 50% 8px;
  background: linear-gradient(135deg, var(--amber), #f0c46f);
  transform: rotate(-45deg);
  position: relative;
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 25px;
  border-radius: 50%;
  background: var(--pine);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.steps li {
  padding: 28px;
  border-left: 4px solid var(--amber);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.steps p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border-radius: 8px;
  background: var(--river);
}

.faq {
  padding-top: 42px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 44px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: #101b19;
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  font-weight: 800;
}

.legal-section {
  padding: 76px clamp(18px, 4vw, 56px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.legal-section-alt {
  background: #f1f6f4;
}

.legal-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.legal-grid article,
.legal-copy {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-grid p,
.legal-copy p {
  margin: 10px 0 0;
  color: var(--muted);
}

.legal-copy {
  margin-top: 30px;
  max-width: 920px;
}

.legal-copy h3 {
  margin-top: 26px;
}

.legal-copy h3:first-child {
  margin-top: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 31, 28, 0.92), rgba(11, 31, 28, 0.54)),
      linear-gradient(0deg, rgba(11, 31, 28, 0.5), transparent 52%);
  }

  .hero-facts,
  .trust-band,
  .section-heading,
  .service-grid,
  .location,
  .steps,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .location-content {
    padding: 28px;
  }

  .cta-strip,
  .site-footer {
    display: grid;
  }

  .footer-links {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand strong {
    max-width: 190px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

  .hero-actions .button,
  .cta-strip .button {
    width: 100%;
  }

  .hero-facts div,
  .service-card,
  .steps li,
  .cta-strip {
    padding: 20px;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 64px 0;
  }
}
