*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1e1f23;
  --muted: #5d646f;
  --wash: #f4f1ec;
  --sand: #e6dccf;
  --leaf: #375b4a;
  --ocean: #2b4f68;
  --sun: #e3a857;
  --accent: #b86d52;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(25, 24, 24, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--wash);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: var(--card);
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--leaf);
  font-size: 0.9rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
}

.nav a:hover,
.nav a:focus {
  color: var(--leaf);
}

.sidebar-cta {
  background: var(--leaf);
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  text-align: center;
  font-weight: 600;
}

.sidebar-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.main {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 24px 18px 80px;
}

.section {
  background: var(--card);
  padding: 28px 22px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section--bare {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.section--tone {
  background: var(--sand);
}

.section--ocean {
  background: #d6e6ef;
}

.section--leaf {
  background: #dfe8e2;
}

.section-title {
  font-size: 1.4rem;
  margin: 0;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 2.2rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  padding: 12px 22px;
  font-weight: 600;
  background: var(--leaf);
  color: #fff;
  border: none;
  cursor: pointer;
}

.btn.btn-light {
  background: #fff;
  color: var(--leaf);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn.btn-outline {
  background: transparent;
  border: 1px solid var(--leaf);
  color: var(--leaf);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-card {
  background: #fff;
  padding: 18px;
  border-radius: 20px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step span {
  background: var(--leaf);
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: italic;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form label {
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font: inherit;
  background: #fff;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
}

.footer {
  background: #1f2b27;
  color: #e6e6e6;
  padding: 30px 24px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e6e6e6;
  opacity: 0.85;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.is-hidden {
  display: none;
}

.bg-meadow {
  background-image: url("https://images.unsplash.com/photo-1450778869180-41d0601e046e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-meadow .section-lead,
.bg-meadow h2,
.bg-meadow h1,
.bg-meadow p {
  color: #fefefe;
}

.bg-quiet {
  background-image: url("https://images.unsplash.com/photo-1508672019048-805c876b67e2?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-quiet h2,
.bg-quiet p {
  color: #fefefe;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-strip img {
  border-radius: 22px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.address-card {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 8px;
}

.table-row span:last-child {
  font-weight: 600;
  color: var(--leaf);
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: none;
    position: relative;
  }

  .main {
    padding: 32px 48px 100px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1.1;
  }

  .hero-media {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
  }

  .split-card,
  .split img {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 16px);
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .image-strip {
    flex-direction: row;
  }

  .image-strip img {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .address-card {
    flex: 1;
  }
}
