:root {
  --ink: #17211b;
  --text: #34433b;
  --muted: #68786f;
  --line: #dce6df;
  --surface: #ffffff;
  --soft: #f2f6f1;
  --accent: #77b255;
  --accent-dark: #2f6f43;
  --gold: #c4953c;
  --shadow: 0 20px 60px rgba(23, 33, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

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

.brand-logo {
  display: block;
  width: clamp(180px, 20vw, 250px);
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.96rem;
}

.nav a,
.header-cta {
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  color: white;
  background: var(--accent-dark);
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 28, 18, 0.78), rgba(12, 28, 18, 0.36), rgba(12, 28, 18, 0.1)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=80") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(64px, 12vh, 120px) clamp(18px, 6vw, 86px);
}

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

.hero .eyebrow {
  color: #f0c66d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  color: white;
  font-size: clamp(2.35rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 14ch;
}

h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
  margin-bottom: 0;
}

h3 {
  color: var(--ink);
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  color: white;
  background: var(--accent-dark);
}

.btn.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.btn.outline {
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  background: transparent;
}

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

.trust-strip div {
  padding: 28px clamp(18px, 4vw, 48px);
  background: var(--surface);
}

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

.trust-strip strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 72px);
}

.logo-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-copy p {
  max-width: 650px;
}

.kiwi-logo-frame {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 38px rgba(23, 33, 27, 0.1);
}

.kiwi-logo-frame img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  display: block;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 42px;
}

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

.service-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--accent-dark);
}

.icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.2;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 680px;
  background: var(--ink);
}

.split-image {
  min-height: 420px;
  background: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.split-content {
  align-self: center;
  padding: clamp(48px, 7vw, 92px);
}

.split-content h2 {
  color: white;
}

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

.steps li {
  position: relative;
  padding-left: 58px;
  color: rgba(255, 255, 255, 0.78);
  counter-increment: steps;
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--ink);
  background: #f0c66d;
  font-weight: 800;
}

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

.steps strong {
  color: white;
  font-size: 1.08rem;
}

.local-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 72px);
  background: #fbfcfb;
  border-top: 1px solid var(--line);
}

.local-copy p {
  max-width: 780px;
}

.local-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.keyword-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 38px rgba(23, 33, 27, 0.08);
}

.keyword-panel h3 {
  margin-bottom: 18px;
}

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

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 72px);
  background: white;
}

.about-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 38%;
}

.about-copy p {
  max-width: 660px;
}

.authority-note {
  display: inline-flex;
  margin-top: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--accent-dark);
  background: var(--soft);
  font-weight: 800;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

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

.benefit-grid div {
  padding: 28px;
  border-left: 4px solid var(--accent);
  background: white;
  border-radius: 0 8px 8px 0;
}

.benefit-grid strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 72px);
}

.contact-copy p {
  max-width: 620px;
}

.contact-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.rate-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 8px;
  color: white;
  background: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.map-frame {
  overflow: hidden;
  height: 280px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 400;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--accent-dark);
}

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

textarea {
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.contact-form small,
.legal {
  color: var(--muted);
  font-size: 0.86rem;
}

.form-response-note {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(47, 111, 67, 0.28);
  border-radius: 8px;
  color: var(--accent-dark);
  background: #f0f8ed;
  font-weight: 700;
}

.form-response-note[hidden] {
  display: none;
}

.form-response-note svg {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  stroke-width: 2.5;
}

.thanks-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(12, 28, 18, 0.82), rgba(12, 28, 18, 0.58)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.thanks-card {
  width: min(680px, 100%);
  padding: clamp(28px, 6vw, 54px);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  max-width: none;
  margin-top: 38px;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.thanks-card p {
  color: var(--text);
  font-size: 1.1rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 760px;
  }

  .trust-strip,
  .section-heading,
  .logo-band,
  .split-section,
  .local-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .split-section {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: auto;
    gap: 12px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 154px;
  }

  .nav {
    gap: 18px;
    font-size: 0.92rem;
    flex-wrap: wrap;
    overflow-x: visible;
    row-gap: 8px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(12, 28, 18, 0.3), rgba(12, 28, 18, 0.85)),
      url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=900&q=80") center / cover;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 58px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .about-actions {
    display: grid;
    width: 100%;
  }

  .btn,
  .rate-link {
    width: 100%;
    text-align: center;
  }

  .service-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .kiwi-logo-frame {
    min-height: 130px;
    padding: 16px;
  }

  .kiwi-logo-frame img {
    max-height: 115px;
  }

  .map-frame {
    height: 230px;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }
}

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

  .brand-logo {
    width: 138px;
  }

  .trust-strip div,
  .service-card,
  .keyword-panel,
  .benefit-grid div {
    padding: 22px;
  }
}
