:root {
  --bg: #f6f4f1;
  --ink: #1a1a1a;
  --muted: #5f676f;
  --accent: #1f6d5c;
  --accent-2: #c49a3a;
  --card: #ffffff;
  --soft: #e8edf0;
  --warm: #f0e6d8;
  --cool: #e2e9f0;
}

* {
  box-sizing: border-box;
}

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

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

a:focus,
a:hover {
  color: #144c40;
}

header {
  padding: 28px 5vw 10px;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: var(--warm);
  border-radius: 999px;
  font-size: 0.85rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 5vw 80px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 5vw 56px;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(246, 244, 241, 0.9), rgba(246, 244, 241, 0.95)),
    url("https://images.unsplash.com/photo-1608947325823-976b1c65d14c?w=1400&q=80") center/cover;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin: 0;
}

.hero p {
  max-width: 640px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--accent-2);
  color: #1c1402;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
}

.image-wrap {
  background-color: var(--soft);
  border-radius: 20px;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.card .image-wrap {
  height: 180px;
  border-radius: 14px;
}

.card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.banner-section {
  padding: 36px;
  border-radius: 24px;
  background: var(--cool);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.banner-image {
  background: linear-gradient(120deg, rgba(240, 230, 216, 0.85), rgba(240, 230, 216, 0.95)),
    url("https://images.unsplash.com/photo-1648657850347-81445c3978ae?w=1400&q=80") center/cover;
}

.banner-section strong {
  font-size: 1.2rem;
}

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

.price-item {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

form {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd3da;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 50px 5vw 70px;
  background: #101314;
  color: #e9ecef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f0d28c;
}

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

.disclaimer {
  font-size: 0.9rem;
  color: #c8d0d6;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 30;
}

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

.cookie-actions button {
  border-radius: 999px;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e2e2e2;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

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

  .hero {
    flex-direction: row;
    align-items: flex-end;
  }

  .hero .hero-copy {
    flex: 1.1;
  }

  .hero .hero-side {
    flex: 0.9;
  }
}
