:root {
  --ink: #17211d;
  --muted: #5f6a63;
  --paper: #fbfbf6;
  --soft: #eef2ea;
  --line: #dbe3d8;
  --field: #37472e;
  --field-dark: #23301f;
  --clay: #9a5d32;
  --gold: #c99b3b;
  --white: #ffffff;
  --shadow: 0 18px 58px rgba(35, 48, 31, 0.16);
}

* {
  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.55;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(219, 227, 216, 0.9);
  background: rgba(251, 251, 246, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0;
  color: var(--ink);
  text-decoration: none;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 26px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--field);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.9) 0%, rgba(23, 33, 29, 0.76) 42%, rgba(23, 33, 29, 0.14) 82%),
    linear-gradient(0deg, rgba(23, 33, 29, 0.2), rgba(23, 33, 29, 0.04));
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 78px 0 90px;
  color: var(--white);
}

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

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

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.35rem, 5.8vw, 5.05rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
  font-weight: 550;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--field);
  border: 1px solid var(--field);
}

.button.primary:hover {
  background: var(--field-dark);
  border-color: var(--field-dark);
}

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

.button.dark-secondary {
  color: var(--field);
  background: transparent;
  border: 1px solid rgba(55, 71, 46, 0.32);
}

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

.trust-band {
  color: var(--white);
  background: var(--field-dark);
}

.trust-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 0;
}

.trust-inner span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 750;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 32px;
}

.section-heading h2,
.page-header h1,
.form-copy h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.page-header p,
.form-copy p,
.contact-panel p,
.service-card p,
.info-block p,
.faq-item p,
.step p,
.area-list p {
  color: var(--muted);
}

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

.service-card,
.info-block,
.faq-item,
.step,
.area-list,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 33, 29, 0.05);
}

.service-card,
.info-block,
.faq-item,
.step,
.area-list {
  padding: 24px;
}

.service-card h3,
.info-block h3,
.faq-item h3,
.step h3,
.area-list h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.service-card p,
.info-block p,
.faq-item p,
.step p,
.area-list p {
  margin: 0;
}

.service-card a,
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--field);
  font-weight: 900;
  text-decoration: none;
}

.service-card a:hover,
.text-link:hover {
  text-decoration: underline;
}

.split-section {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  background: var(--soft);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.check-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid rgba(55, 71, 46, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.quote-panel,
.contact-panel {
  padding: 28px;
  border: 1px solid rgba(55, 71, 46, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-panel strong {
  display: block;
  color: var(--field);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.quote-panel span {
  color: var(--muted);
  font-weight: 750;
}

.quote-panel ul {
  display: grid;
  gap: 11px;
  padding-left: 18px;
  margin: 22px 0 0;
  color: var(--muted);
}

.page-header {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0 clamp(34px, 5vw, 58px);
}

.page-header p {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: 1.07rem;
}

.content-section {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 clamp(58px, 8vw, 96px);
}

.content-section h2 {
  margin: 36px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.content-section p,
.content-section li {
  color: var(--muted);
  font-size: 1.03rem;
}

.content-section ul,
.content-section ol {
  display: grid;
  gap: 10px;
}

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

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--field);
  font-weight: 900;
}

.form-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto clamp(34px, 7vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 8px;
  color: var(--white);
  background: var(--field-dark);
}

.form-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.full-span {
  grid-column: 1 / -1;
}

.fine-print {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 640px;
  }

  .hero-overlay {
    background: rgba(23, 33, 29, 0.76);
  }

  .hero-content {
    margin: 0 auto;
    padding: 58px 0 76px;
  }

  .trust-inner,
  .service-grid,
  .info-grid,
  .split-layout,
  .steps,
  .form-section {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

  .hero-actions,
  .page-actions,
  .contact-actions,
  .button {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-section {
    width: 100%;
    border-radius: 0;
  }
}
