:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --accent: #2b6d5b;
  --accent-soft: #e7f2ee;
  --sun: #f5e4a4;
  --sky: #e9f0f8;
  --stone: #f3f1ec;
  --rose: #f7e7ea;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.navbar {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

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

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--sky);
}

.section.sun {
  background: var(--sun);
}

.section.stone {
  background: var(--stone);
}

.section.rose {
  background: var(--rose);
}

.magazine {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.magazine .col {
  flex: 1;
  min-width: 0;
}

.magazine .col.wide {
  flex: 1.3;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero .copy {
  flex: 1.1;
}

.hero .visual {
  flex: 0.9;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 10px 0 20px;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin: 0 0 16px;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

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

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: white;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.quote {
  font-style: italic;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

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

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow);
  gap: 20px;
}

.price-row span {
  font-weight: 600;
}

.inline-cta {
  font-weight: 600;
}

.form-panel {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

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

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 0 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer .foot-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: var(--accent);
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: white;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

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

.hidden {
  display: none;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-row {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mt-16 {
  margin-top: 16px;
}

.badge {
  background: white;
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 600;
}

.banner {
  background: url("assets/pattern.svg") no-repeat center / cover;
  border-radius: var(--radius);
  padding: 32px;
  color: #1f2a2d;
}

.split-stack {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split-stack .panel {
  flex: 1;
  min-width: 240px;
}

@media (max-width: 860px) {
  .navbar .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    flex-direction: column;
  }

  .magazine {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
