*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #5a6a7a;
  --accent: #3c7f6b;
  --accent-dark: #2b5a4b;
  --sand: #f5f1ea;
  --sky: #e5eff3;
  --sun: #f6d06c;
  --line: #d6dde2;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(19, 31, 36, 0.12);
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 18px;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cta-button,
.cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
}

.cta-button {
  background: var(--accent);
  color: var(--white);
}

.cta-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.section {
  padding: 56px 18px;
}

.bg-sand {
  background: var(--sand);
}

.bg-sky {
  background: var(--sky);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-panel {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.75rem;
  color: var(--muted);
}

.headline {
  font-size: 2rem;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.lede {
  font-size: 1.05rem;
  color: var(--muted);
}

.panel-card {
  background: var(--sand);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.panel-card.alt {
  background: var(--sky);
}

.panel-card.dark {
  background: var(--ink);
  color: var(--white);
}

.panel-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--accent-dark);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer {
  padding: 40px 18px 60px;
  border-top: 1px solid var(--line);
  background: var(--sand);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: var(--accent-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--ink);
  color: var(--white);
  padding: 16px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--sun);
  color: var(--ink);
}

.cookie-actions .reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.two-col-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inline-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 12px;
  background: var(--sky);
  border-radius: 999px;
  font-size: 0.8rem;
}

.address-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

@media (min-width: 780px) {
  header {
    padding: 28px 60px;
  }

  .section {
    padding: 70px 60px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .headline {
    font-size: 2.6rem;
  }

  .panel-grid {
    flex-direction: row;
  }

  .service-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .form-row {
    flex-direction: row;
    gap: 16px;
  }

  .form-row .form-col {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .two-col-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
