:root {
  --bg: #f6f3ee;
  --ink: #1f1f1c;
  --muted: #5c5a53;
  --accent: #2f6c4f;
  --accent-dark: #214b36;
  --cream: #fff8f1;
  --sand: #e8e1d5;
  --rose: #f2d7c9;
  --sun: #f7d77b;
  --shadow: rgba(31, 31, 28, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  padding: 28px 20px;
  background: #f0ebe2;
  border-right: 1px solid #e0d8cb;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 8px;
  border-radius: 18px;
}

.nav a:hover {
  background: var(--sand);
}

.nav-secondary {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main {
  flex: 1;
  padding: 30px clamp(20px, 4vw, 70px) 80px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: var(--cream);
  border-radius: 28px;
  box-shadow: 0 20px 40px var(--shadow);
}

.hero h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin: 0;
}

.hero .hero-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero .hero-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero .hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.15), transparent 60%);
}

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: var(--sand);
  color: var(--ink);
}

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

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.section {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 1.5rem;
  margin: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 14px 30px var(--shadow);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metric-card {
  flex: 1 1 150px;
  background: var(--sand);
  padding: 16px;
  border-radius: 16px;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.layered {
  background: var(--rose);
  padding: 26px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  top: -60px;
  right: -40px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px var(--shadow);
}

.service-item .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 16px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d0c4;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.testimonial {
  background: var(--cream);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ribbon {
  background: #1f1f1c;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px var(--shadow);
  z-index: 10;
}

.footer {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #d8d0c4;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px var(--shadow);
  padding: 16px;
  width: min(320px, 80vw);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--sun);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.simple-section {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 14px 26px var(--shadow);
}

@media (min-width: 900px) {
  .hero .hero-row {
    flex-direction: row;
    align-items: stretch;
  }

  .hero .hero-copy {
    flex: 1.1;
  }

  .hero .hero-image {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .section {
    margin-top: 60px;
  }
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-secondary {
    margin-top: 0;
  }
}
