* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #55565b;
  --accent: #2c6e49;
  --accent-strong: #1f4a32;
  --accent-soft: #dcefe3;
  --sand: #f7f3ee;
  --mist: #eef1f4;
  --sun: #f4c35a;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

header {
  padding: 28px 8vw 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero {
  padding: 12px 8vw 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.5vw, 3.6rem);
  margin: 0;
  line-height: 1.1;
}

.hero p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
}

.hero-card {
  background: var(--sand);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
}

.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.section {
  padding: 50px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.sand {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text {
  max-width: 520px;
}

.offset-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(27, 27, 27, 0.12);
}

.stacked-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-strong);
}

.button.sun {
  background: var(--sun);
  color: #3b2b03;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e4e6eb;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
  font-size: 1.1rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.form-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfd5dd;
  font-size: 1rem;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-strip img {
  border-radius: 18px;
}

.banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 40px 8vw 60px;
  background: #0f2218;
  color: #e8f2ec;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e8f2ec;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-main {
  padding: 40px 8vw 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-main h1 {
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--mist);
  padding: 20px;
  border-radius: 16px;
}

@media (min-width: 900px) {
  header {
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-top {
    flex: 1;
  }

  .hero-card {
    flex: 0 0 42%;
    align-self: flex-end;
  }

  .split {
    flex-direction: row;
    justify-content: space-between;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .image-strip {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    gap: 18px;
  }
}
