* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4ef;
  --ink: #1f1c18;
  --muted: #6d6259;
  --accent: #b25f2d;
  --accent-dark: #8f4a23;
  --light: #ffffff;
  --panel: #efe7de;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--light);
  border-bottom: 1px solid #e2d7cc;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 6px;
}

.nav a:hover {
  background: #f2ece5;
  color: var(--ink);
}

.ad-label {
  font-size: 12px;
  color: var(--accent-dark);
  background: #f6e6d8;
  padding: 4px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 24px;
  padding: 32px 0 16px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.15;
}

.hero-text p {
  color: var(--muted);
  font-size: 17px;
}

.hero-media {
  flex: 0.9;
  background: #e9dfd3;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: #f6e6d8;
}

.magazine-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin: 32px 0;
}

.column {
  flex: 1;
  background: var(--light);
  border-radius: 16px;
  padding: 20px;
}

.column.slim {
  flex: 0.7;
}

.column.wide {
  flex: 1.3;
}

.image-frame {
  background: #eaded1;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.section-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

.cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 18px;
}

.card .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-dark);
}

.divider {
  height: 1px;
  background: #e1d5c9;
  margin: 24px 0;
}

.testimonial {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--light);
  border-radius: 16px;
  padding: 16px;
}

.testimonial p {
  font-style: italic;
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #f3e7db;
  border-radius: 18px;
  padding: 20px;
}

.form-panel {
  background: var(--light);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  padding: 10px 12px;
  border: 1px solid #d8cabb;
  border-radius: 8px;
  font-size: 15px;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 32px 24px 60px;
  background: #efe5da;
  margin-top: 40px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  font-weight: 600;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.legal-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--light);
  border-radius: 16px;
  padding: 20px;
  margin: 24px 0;
}

.legal-hero .image-frame {
  margin: 0;
  flex: 0.6;
}

.legal-hero .legal-text {
  flex: 1.4;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: var(--light);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

@media (max-width: 960px) {
  .hero,
  .magazine-row,
  .cta-strip,
  .testimonial,
  .legal-hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
