:root {
  --bg: #f7f5f2;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --accent: #1f6f6d;
  --accent-2: #c9783b;
  --card: #ffffff;
  --soft: #ece6df;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e7e1d8;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.top-nav a:hover {
  color: var(--accent);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--accent-2);
  font-weight: 600;
}

main {
  flex: 1;
}

.section {
  padding: 70px 0;
}

.section--tight {
  padding: 40px 0;
}

.split {
  display: flex;
  gap: 42px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1 1 0;
}

.media-box {
  background: #e2d9cf;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-box--soft {
  background: #d8e4e1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff3e7;
  color: #6e3c14;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  margin: 12px 0 18px;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(31, 111, 109, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.inline-link:hover {
  text-decoration: underline;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stack-gap {
  margin-top: 24px;
}

.cards-gap {
  margin-top: 26px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card__price {
  font-weight: 700;
  color: var(--accent-2);
}

.media-band {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
}

.media-band__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
}

.media-band__content {
  position: relative;
  z-index: 2;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ded6cc;
  font-size: 1rem;
}

.footer {
  background: #111110;
  color: #e8e3dd;
  padding: 36px 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer small {
  color: #b9b0a6;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
}

.legal-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight {
  background: #fff8f0;
  border-left: 4px solid var(--accent-2);
  padding: 12px 16px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .media-band__content {
    padding: 28px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
