* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a22;
  --soft-ink: #3f4a41;
  --accent: #2e6b4f;
  --accent-dark: #1d4a36;
  --mist: #eef3ef;
  --warm: #f7f3ee;
  --leaf: #dce8df;
  --stone: #c7cec9;
  --sun: #f2e4c8;
  --shadow: 0 24px 40px rgba(15, 26, 19, 0.12);
  --radius: 24px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  background: var(--mist);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  background: #f9fbf8;
  border-right: 1px solid #dde6de;
  padding: 32px 24px;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  font-size: 20px;
}

.nav-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  align-self: flex-start;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.side-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.side-nav a:hover {
  background: var(--leaf);
}

.side-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button.ghost {
  background: #fff;
  border-color: #d8e2da;
  color: var(--ink);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 72px 7vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.cream {
  background: var(--warm);
}

.section.leaf {
  background: var(--leaf);
}

.section.sun {
  background: var(--sun);
}

.section.hero {
  background: linear-gradient(135deg, rgba(238, 243, 239, 0.9), rgba(255, 255, 255, 0.95)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  max-width: 640px;
}

.hero p {
  max-width: 560px;
  font-size: 18px;
  color: var(--soft-ink);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split .media,
.split .copy {
  flex: 1;
}

.split .media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--soft-ink);
}

.meta-pill {
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #dfe8df;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 16px 30px rgba(16, 26, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  border-radius: 16px;
}

.price {
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-dark);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.quote {
  font-size: 20px;
  font-style: italic;
  max-width: 560px;
}

.service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-option {
  border: 1px solid #cad6cd;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
}

.service-option.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--soft-ink);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd8d0;
  font-size: 15px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  padding: 32px 7vw;
  background: #16211b;
  color: #f2f6f1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-header {
  font-size: clamp(2rem, 4vw, 3rem);
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.simple-grid .panel {
  flex: 1 1 260px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid #e1e8e1;
}

.note {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 12px;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .section.hero {
    padding: 96px 9vw;
  }
}

@media (max-width: 900px) {
  .site-shell {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    border-right: none;
    border-bottom: 1px solid #dde6de;
  }

  .side-nav {
    width: 100%;
    display: none;
  }

  body.nav-open .side-nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}
