:root {
  --ink: #1f2926;
  --text: #34413d;
  --muted: #687770;
  --paper: #fbfcf9;
  --panel: #ffffff;
  --sage: #5f7863;
  --sage-soft: #e2ebe2;
  --blue: #355f78;
  --clay: #b56b54;
  --line: #d9e0d8;
  --shadow: 0 22px 50px rgba(31, 41, 38, 0.12);
  --radius: 8px;
  --container: min(1140px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 252, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

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

.brand strong {
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
}

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

.hero {
  padding: 64px 0 58px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 48px;
  align-items: center;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.1;
}

h1 {
  max-width: 620px;
  font-size: clamp(44px, 7vw, 82px);
}

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

h3 {
  font-size: 20px;
}

.lead {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 20px;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  font: inherit;
  line-height: 1.2;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #111815;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #fff;
}

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

.trust-list li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sage-soft);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.section {
  padding: 76px 0;
}

.section-head {
  max-width: 720px;
  text-align: center;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.align-left {
  text-align: left;
  margin: 0;
}

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

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

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

.service-card span {
  color: var(--blue);
  font-weight: 800;
}

.band {
  background: #eef4ee;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standards-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.standards-grid > div:first-child p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.standard-list {
  display: grid;
  gap: 14px;
}

.standard-list article {
  padding: 22px;
  border-left: 4px solid var(--sage);
  background: rgba(255, 255, 255, 0.72);
}

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

.steps-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 96px;
  padding: 22px 24px 22px 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 6px;
  color: var(--muted);
}

.booking-band {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.booking-band h2,
.booking-band .eyebrow {
  color: #fff;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.contact-stack a {
  color: #fff;
  font-weight: 800;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.booking-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.booking-form .btn {
  grid-column: 1 / -1;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

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

.site-footer {
  padding: 52px 0 28px;
  background: #101614;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.8fr));
  gap: 30px;
}

.footer-brand {
  color: #fff;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.footer-bottom span {
  margin: 0;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.legal-page {
  padding: 62px 0 78px;
}

.legal-content {
  max-width: 820px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.legal-content h1 {
  font-size: clamp(38px, 6vw, 58px);
  margin-bottom: 22px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 22px;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .standards-grid,
  .steps-layout,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

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

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1140px);
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 310px;
  }

  .section {
    padding: 56px 0;
  }

  .service-grid,
  .faq-grid,
  .booking-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps li {
    padding-right: 18px;
  }

  .legal-content {
    padding: 26px 20px;
  }

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