@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f7f4f0;
  --ink: #1c1b1a;
  --muted: #6c6761;
  --accent: #c45a2e;
  --accent-dark: #9e461f;
  --panel: #ffffff;
  --tone-1: #e9e1d6;
  --tone-2: #d9e3e8;
  --tone-3: #efe6dd;
  --tone-4: #dde2d4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 6vw 16px;
  background: var(--panel);
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--tone-1);
  padding: 6px 10px;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 6vw 30px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-visual {
  flex: 1 1 320px;
  min-height: 320px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-visual {
  flex: 1 1 320px;
  min-height: 260px;
}

.panel {
  background: var(--panel);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.section-bg {
  position: relative;
  overflow: hidden;
}

.section-bg .bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.25;
}

.section-bg .bg-image img {
  width: 100%;
  height: 100%;
}

.section-bg .content {
  position: relative;
  z-index: 1;
}

.img-wrap {
  background: var(--tone-1);
  border-radius: 16px;
  overflow: hidden;
}

.tone-1 {
  background: var(--tone-1);
}

.tone-2 {
  background: var(--tone-2);
}

.tone-3 {
  background: var(--tone-3);
}

.tone-4 {
  background: var(--tone-4);
}

.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1cbc3;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid #e1dad1;
  padding-top: 16px;
}

.site-footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sticky-cta button {
  background: #fff;
  color: var(--accent-dark);
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 30;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent-dark);
  color: #fff;
}

@media (max-width: 860px) {
  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
