* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f3ee;
  --ink: #1f1d1a;
  --muted: #5f5a52;
  --accent: #2f6a4a;
  --accent-dark: #1e4732;
  --sand: #efe6da;
  --stone: #e0d8cc;
  --peach: #f2d7c3;
  --sky: #dbe7ef;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background: var(--stone);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0 10px;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e4dcd1;
}

.hero {
  position: relative;
  padding: 120px 0 90px;
  color: #fff;
  background-color: #35302a;
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 29, 26, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  margin: 0;
}

.hero p {
  max-width: 560px;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-spaced {
  margin-top: 24px;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.section {
  padding: 70px 0;
}

.section-muted {
  background: var(--sand);
}

.section-sky {
  background: var(--sky);
}

.section-peach {
  background: var(--peach);
}

.section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-top: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  background: var(--stone);
  border-radius: 22px;
  overflow: hidden;
}

.story-block {
  max-width: 720px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background: var(--stone);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.highlight {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.timeline-step {
  flex: 1 1 200px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.form-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d6cfc5;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

.footer {
  padding: 40px 0 60px;
  background: #151513;
  color: #f6f1eb;
}

.footer a {
  color: #f6f1eb;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer small {
  color: #c8bfb5;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  padding: 16px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1507149833265-60c372daea22?w=1400&q=80");
}

.bg-context {
  background-image: url("https://images.unsplash.com/photo-1517849845537-4d257902454a?w=1400&q=80");
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1742343902443-97811f531b53?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw0M3x8S3VyJUMzJUExdG9yc2slQzMlQTklMjBwcm9kdWt0eSUyMHBybyUyMHp2JUMzJUFEJUM1JTk5YXRhJTJDJTIwa3RlciVDMyVBOSUyMGQlQzMlQTF2YWolQzMlQUQlMjBzbXlzbCUyMHYlMjBiJUM0JTlCJUM1JUJFbiVDMyVBOW0lMjBwcm92b3p1Lnxjc3wwfDB8fHwxNzg0MTAyNzE3fDA&ixlib=rb-4.1.0&q=80&w=1080");
}

.bg-reveal {
  background-image: url("https://images.unsplash.com/photo-1489440543286-a69330151c0b?w=1400&q=80");
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1525253086316-d0c936c814f8?w=1400&q=80");
}

.section.bg-overlay {
  color: #fff;
  position: relative;
  background-color: #3a332c;
  background-size: cover;
  background-position: center;
}

.section.bg-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 19, 0.65);
}

.section.bg-overlay .container {
  position: relative;
  z-index: 2;
}
