* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1e1c;
  --muted: #5f5c55;
  --sand: #f5f1ea;
  --stone: #e6ddd0;
  --clay: #c77c4a;
  --moss: #2f4b3a;
  --sky: #d7e4ea;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: var(--clay);
  color: var(--white);
  font-size: 0.8rem;
  border-radius: 20px;
}

.hero {
  padding: 40px 6vw 70px;
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-visual {
  flex: 1.2;
  min-height: 420px;
  background: var(--sky);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
}

.hero-content {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1.1;
}

.hero-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.primary-btn {
  background: var(--moss);
  color: var(--white);
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
}

.inline-link {
  color: var(--moss);
  font-weight: 600;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.section-offset {
  background: var(--white);
  margin: 0 4vw;
  border-radius: 36px;
  padding: 60px 6vw;
  box-shadow: 0 20px 40px rgba(30, 30, 28, 0.08);
}

.split {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  min-width: 260px;
}

.panel-note {
  background: var(--stone);
  padding: 24px;
  border-radius: 24px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 30px rgba(30, 30, 28, 0.08);
}

.card-media {
  background: #efe5d6;
}

.card-media.alt-one {
  background: #e9e0d3;
}

.card-media.alt-two {
  background: #f1e6d8;
}

.card-media.alt-three {
  background: #e9dfd2;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--moss);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.badge {
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--clay);
  margin-top: 6px;
}

.form-wrap {
  background: var(--white);
  padding: 32px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 16px 30px rgba(30, 30, 28, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1c6b8;
  font-size: 0.95rem;
  background: #fffaf3;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--clay);
  color: var(--white);
  border: none;
  padding: 14px 20px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 14px 22px rgba(30, 30, 28, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  color: #d5d0c8;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 18px 32px rgba(30, 30, 28, 0.2);
  z-index: 30;
}

.cookie-banner button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.cookie-accept {
  background: var(--moss);
  color: var(--white);
}

.cookie-reject {
  background: #efe5d6;
  color: var(--ink);
}

.page-hero {
  padding: 60px 6vw 40px;
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero .media {
  flex: 1;
  min-width: 280px;
  background: var(--stone);
  border-radius: 24px;
  overflow: hidden;
}

.page-hero .copy {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-hero h1 {
  font-size: clamp(2rem, 2.6vw, 3rem);
}

.legal {
  padding: 40px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal h2 {
  font-size: 1.2rem;
}

.note-box {
  background: var(--sky);
  padding: 18px;
  border-radius: 18px;
}

.thanks {
  padding: 80px 6vw 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.thanks span {
  font-weight: 700;
  color: var(--moss);
}

.bg-layer {
  background: var(--stone);
  border-radius: 30px;
  padding: 40px;
}

.bg-stage {
  background-image: url("https://images.pexels.com/photos/6180674/pexels-photo-6180674.jpeg");
  background-size: cover;
  background-position: center;
  background-color: var(--stone);
}

.bg-stage .bg-layer {
  background: rgba(255, 255, 255, 0.9);
}

.muted {
  color: var(--muted);
}

.hidden {
  display: none;
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
