*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2a24;
  --muted: #4f5d55;
  --soft: #f5f2ee;
  --accent: #406f61;
  --accent-dark: #2e5046;
  --sun: #f6d48b;
  --mist: #e8eef0;
  --line: #d7d3cc;
  --shadow: 0 14px 30px rgba(31, 42, 36, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #faf9f7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 28px 22px;
  width: 240px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: none;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom: 1px solid var(--accent);
}

.sidebar-cta {
  margin-top: auto;
  padding: 14px;
  background: var(--soft);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-cta .button {
  text-align: center;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.section.soft {
  background: var(--soft);
}

.section.mist {
  background: var(--mist);
}

.section.sun {
  background: #fff7e0;
}

.section.overlap {
  position: relative;
}

.section.overlap::after {
  content: "";
  position: absolute;
  inset: 20px 8vw auto auto;
  width: 140px;
  height: 140px;
  background: var(--sun);
  opacity: 0.5;
  border-radius: 50%;
  z-index: 0;
}

.section > * {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-visual {
  flex: 1 1 280px;
  display: flex;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.button.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button:hover {
  transform: translateY(-2px);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.split .panel {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 160px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.service .price {
  margin-left: auto;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  align-self: flex-start;
  position: sticky;
  top: 18px;
  padding: 12px 18px;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 14px;
  font-size: 0.9rem;
}

.footer {
  padding: 40px 8vw;
  background: #1f2723;
  color: #e9eee9;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #d1e2dc;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 8px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.two-column > div {
  flex: 1 1 260px;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.image-strip img {
  flex: 1 1 160px;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .sidebar-cta {
    width: 100%;
  }

  .sticky-cta {
    position: static;
  }
}
