:root {
  --ink: #1f2a2d;
  --muted: #5e6a70;
  --bg: #f5f2ee;
  --accent: #2c6b6e;
  --accent-soft: #e3efed;
  --warm: #f7efe4;
  --deep: #1b3b3d;
  --border: #d9d2c8;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

.top-bar {
  background: #fffaf4;
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

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

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  padding: 64px 0 40px;
}

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

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

.split-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.btn {
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: var(--accent-soft);
  color: var(--deep);
}

.hero-media {
  border-radius: 24px;
  overflow: hidden;
  background: #d7e4e2;
  border: 1px solid var(--border);
}

.hero-media img {
  width: 100%;
  height: 420px;
}

.section {
  padding: 56px 0;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 24px;
}

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

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

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 600;
  color: var(--deep);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background: #dfe7ef;
}

.story-block {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}

.quote {
  font-style: italic;
  color: var(--deep);
}

.background-band {
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80") center/cover no-repeat;
  color: white;
  position: relative;
}

.background-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 46, 48, 0.7);
}

.background-band .container {
  position: relative;
  z-index: 1;
}

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

.metric {
  flex: 1 1 180px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  padding: 16px;
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
}

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

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  background: #fff;
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: #fffaf4;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: var(--muted);
}

.disclaimer {
  background: #f0f6f5;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  color: var(--deep);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--deep);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.sticky-cta button {
  background: white;
  color: var(--deep);
  border: none;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: none;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

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

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: white;
}

.cookie-actions .reject {
  background: var(--accent-soft);
  color: var(--deep);
}

.image-frame {
  background: #d9e2e4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.image-frame img {
  width: 100%;
  height: 320px;
}

.split-aside {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-page {
  padding: 56px 0;
}

.simple-page h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

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

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

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
