:root {
  --ink: #162235;
  --deep: #27436f;
  --deep-2: #142840;
  --accent: #d85a70;
  --accent-2: #2fa79c;
  --soft: #f5f7fc;
  --wash: #e8eef8;
  --white: #ffffff;
  --muted: #5c6966;
  --line: rgba(23, 37, 34, 0.14);
  --shadow: 0 20px 60px rgba(12, 24, 22, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 12px;
  background: var(--white);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

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

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.topnav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.topnav a,
.text-link {
  text-decoration: none;
}

.topnav a:hover,
.text-link:hover {
  color: var(--accent);
}

.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--accent);
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(30, 30, 30, 0.18);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

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

.call-button.big {
  min-height: 54px;
  padding-inline: 24px;
}

.hero {
  min-height: min(720px, calc(100svh - 74px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 7vw, 92px) clamp(16px, 5vw, 64px);
  background:
    radial-gradient(circle at 11% 14%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(125deg, var(--wash) 0%, #ffffff 43%, var(--soft) 100%);
}

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

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  color: var(--deep-2);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 830px;
  font-size: clamp(2.45rem, 5.2vw, 5.45rem);
}

h2 {
  font-size: clamp(2rem, 4.1vw, 4rem);
}

h3 {
  margin: 0 0 8px;
  color: var(--deep-2);
  font-size: 1.02rem;
}

.lede {
  max-width: 690px;
  margin: 22px 0 0;
  color: #384844;
  font-size: clamp(1.03rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.text-link {
  color: var(--deep);
  font-weight: 800;
}

.micro-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.micro-proof span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--deep-2);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: min(550px, 62vh);
  object-fit: cover;
}

.hero-photo figcaption {
  padding: 14px 16px;
  color: var(--deep-2);
  font-size: 0.92rem;
  font-weight: 800;
}

.call-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(16px, 5vw, 64px);
  color: var(--white);
  background: var(--deep-2);
}

.call-strip strong,
.call-strip span {
  display: block;
}

.call-strip span {
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(16px, 5vw, 64px);
}

.intro,
.areas,
.process {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
}

.section-copy p,
.section-heading p,
.areas p {
  max-width: 720px;
  color: var(--muted);
}

.trust-list,
.service-grid,
.faq-list {
  display: grid;
  gap: 12px;
}

.trust-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-list article,
.service-grid article,
.faq details,
.process-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 35, 34, 0.08);
}

.trust-list article {
  padding: 20px;
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.image-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: var(--soft);
}

.image-band article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.image-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-band h3,
.image-band p {
  margin-inline: 18px;
}

.image-band h3 {
  margin-top: 18px;
}

.image-band p {
  margin-bottom: 20px;
  color: var(--muted);
}

.services {
  background: linear-gradient(180deg, #ffffff 0%, var(--wash) 100%);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 28px;
}

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

.service-grid article {
  padding: 22px;
}

.service-grid p,
.faq p {
  color: var(--muted);
}

.process {
  background: var(--deep-2);
}

.process-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
}

.process-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card li {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 4px solid var(--accent-2);
}

.process-card span {
  color: var(--muted);
}

.areas {
  align-items: center;
  background: var(--soft);
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--deep-2);
  font-weight: 900;
}

.faq p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(16px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--deep-2);
}

.site-footer strong {
  display: block;
  color: var(--white);
}

.site-footer p {
  max-width: 760px;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .hero,
  .intro,
  .areas {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    max-width: 640px;
  }

  .micro-proof,
  .trust-list,
  .image-band,
  .service-grid,
  .faq-list,
  .process-card {
    grid-template-columns: 1fr;
  }

  .process-card {
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 52px;
    padding: 4px 10px;
  }

  .site-header .brand,
  .site-header .topnav {
    display: none;
  }

  .header-call {
    width: 100%;
    min-height: 44px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-photo img {
    height: auto;
    object-fit: contain;
  }

  .call-strip,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .call-strip .call-button,
  .site-footer .call-button,
  .hero-actions .call-button {
    width: 100%;
  }
}
