* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1b19;
  --muted: #5c544f;
  --sand: #f4efe9;
  --cream: #fbf7f2;
  --accent: #c07a39;
  --deep: #2a2422;
  --shadow: 0 18px 40px rgba(31, 27, 25, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px 14px;
  background: var(--cream);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  border: 1px solid var(--ink);
  background: transparent;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 14px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--ink);
}

.ad-label {
  font-size: 12px;
  color: var(--deep);
  background: #f2e6da;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 28px 24px;
}

body.nav-open .nav-panel {
  display: flex;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 40px 0 24px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 10px 0 24px;
}

.hero-text h1 {
  font-size: 38px;
  margin: 0;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn:hover {
  opacity: 0.88;
}

.hero-media {
  flex: 1 1 380px;
  min-height: 320px;
  border-radius: 28px;
  background-color: #d7c7b8;
  background-image: url("https://images.unsplash.com/photo-1769117522789-4cc595d9ec43?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: var(--shadow);
  transform: translateY(14px);
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: 18px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 14px;
}

.section {
  margin-top: 70px;
}

.section-title {
  font-size: 26px;
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .block {
  flex: 1 1 320px;
}

.lifted-card {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transform: translateY(-18px);
}

.media-frame {
  background: #efe4d9;
  padding: 16px;
  border-radius: 22px;
}

.media-frame img {
  border-radius: 18px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.card img {
  border-radius: 14px;
}

.trust-panel {
  background-color: #1f1b19;
  background-image: url("https://images.unsplash.com/photo-1759654260787-64e295b5f062?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 42px 34px;
  border-radius: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.trust-panel .note {
  flex: 1 1 280px;
  background: rgba(31, 27, 25, 0.75);
  padding: 18px;
  border-radius: 16px;
}

.testimonial {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 16px;
  flex: 1 1 220px;
}

.reveal {
  background: #f7eee5;
  padding: 34px;
  border-radius: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.reveal img {
  border-radius: 18px;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #cfc3b7;
  border-radius: 12px;
  font-size: 15px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-status {
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  box-shadow: var(--shadow);
}

.footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid #e2d6ca;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.policy-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
}

.policy-hero .policy-text {
  flex: 1 1 300px;
}

.policy-hero .policy-media {
  flex: 1 1 260px;
  background: #ece2d7;
  padding: 14px;
  border-radius: 20px;
}

.policy-hero img {
  border-radius: 16px;
}

.simple-panel {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.image-card {
  background: #e7dbce;
  border-radius: 20px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
}

@media (max-width: 760px) {
  .hero-text h1 {
    font-size: 30px;
  }

  .sticky-cta {
    position: static;
    margin-top: 20px;
    width: 100%;
  }
}
