:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --surface: #ffffff;
  --ink: #1f2a30;
  --muted: #4e5a61;
  --accent: #2f5d62;
  --accent-soft: #e4ecec;
  --line: #d9dfe2;
  --warm: #f0e7dd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 28px 0 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: var(--surface);
}

.section.warm {
  background: var(--warm);
}

.section.bg-flow {
  background-color: #3b4c55;
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section.bg-flow .lead,
.section.bg-flow .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 12px 0 16px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.image-frame {
  background: #dae2e6;
  border-radius: 18px;
  overflow: hidden;
  height: 340px;
}

.image-frame.tall {
  height: 420px;
}

.layered {
  position: relative;
}

.floating-card {
  position: absolute;
  right: 16px;
  bottom: -32px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px 20px;
  width: min(300px, 90%);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(31, 42, 48, 0.08);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.card .image-frame {
  height: 160px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.form-panel {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-top: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 36px 0 80px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.fineprint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(47, 93, 98, 0.98);
  color: #fff;
  padding: 10px 0;
  z-index: 10;
}

.sticky-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sticky-cta .btn {
  background: #fff;
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  width: min(320px, 90%);
  box-shadow: 0 20px 40px rgba(31, 42, 48, 0.12);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.notice {
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 12px;
  border: 1px dashed var(--accent);
}

@media (max-width: 720px) {
  .floating-card {
    position: static;
    margin-top: 16px;
  }

  .sticky-cta {
    position: static;
  }
}
