:root {
  --bg: #f7f4ef;
  --ink: #1f1b16;
  --muted: #5e564c;
  --accent: #c4472d;
  --accent-dark: #9f3620;
  --paper: #ffffff;
  --sand: #efe7dc;
  --olive: #3b4a3f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 24px 6vw 8px;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
}

.sticky-cta {
  position: sticky;
  top: 0;
  background: var(--paper);
  padding: 12px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e3d9cc;
  z-index: 2;
}

.sticky-cta p {
  margin: 0;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: var(--olive);
}

.btn.light {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

main {
  padding: 0 6vw 64px;
}

.section {
  margin: 48px 0;
}

.magazine-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-image {
  flex: 1 1 52%;
  min-height: 320px;
  background-color: #d9cbbd;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
}

.hero-panel {
  flex: 1 1 38%;
  background: var(--paper);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.col {
  flex: 1 1 220px;
  min-width: 200px;
}

.editorial-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--sand);
  border-radius: 18px;
  padding: 24px;
  align-items: center;
}

.editorial-image {
  flex: 1 1 260px;
  min-height: 240px;
  background-color: #d9cbbd;
  background-image: url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

.about-editorial-image {
  flex: 1 1 260px;
  min-height: 240px;
  background-color: #d9cbbd;
  background-image: url("https://images.unsplash.com/photo-1529042410759-befb1204b468?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

.editorial-text {
  flex: 1 1 320px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--paper);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.img-frame {
  background-color: #e6ddd2;
  border-radius: 12px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.highlight {
  background: #1f1b16;
  color: #fff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.highlight .col {
  flex: 1 1 260px;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-step {
  background: var(--paper);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.process-step span {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: var(--paper);
  border-radius: 18px;
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7c9ba;
  font-size: 1rem;
  background: #fff;
}

footer {
  padding: 32px 6vw 40px;
  background: #f1e7dc;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.9rem;
}

footer .col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 340px;
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.notice {
  background: #fff7ea;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #f0dfc9;
}

.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats div {
  flex: 1 1 120px;
  background: #f6efe6;
  border-radius: 12px;
  padding: 12px;
}

.media-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.media-row .media {
  flex: 1 1 260px;
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
}

.media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.top-split {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.top-split .info {
  flex: 1 1 360px;
}

.top-split .visual {
  flex: 1 1 300px;
  background-color: #d9cbbd;
  background-image: url("https://images.unsplash.com/photo-1498837167922-ddd27525d352?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  min-height: 220px;
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero .text {
  flex: 1 1 320px;
}

.page-hero .image {
  flex: 1 1 320px;
  background-color: #d9cbbd;
  border-radius: 16px;
  min-height: 220px;
}

.about-image {
  background-image: url("https://images.unsplash.com/photo-1481931098730-318b6f776db0?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.services-image {
  background-image: url("https://images.unsplash.com/photo-1512058564366-18510be2db19?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.contact-image {
  background-image: url("https://images.unsplash.com/photo-1478145046317-39f10e56b5e9?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.thanks-image {
  background-image: url("https://images.unsplash.com/photo-1499028344343-cd173ffc68a9?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.privacy-image {
  background-image: url("https://images.unsplash.com/photo-1632660762307-c21828dd5196?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw1fHxDb25zZWduZSUyMGNhbGRlJTIwZSUyMHB1bnR1YWxpJTIwaW4lMjB0dXR0YSUyMGxhJTIwY2l0dCVDMyVBMC58aXR8MHwwfHx8MTc4NDA1Njg1NXww&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
}

.gdpr-image {
  background-image: url("https://images.unsplash.com/photo-1470337458703-46ad1756a187?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.cookies-image {
  background-image: url("https://images.unsplash.com/photo-1506368249639-73a05d6f6488?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.terms-image {
  background-image: url("https://images.unsplash.com/photo-1484723091739-30a097e8f929?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.listing {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.listing-item {
  background: var(--paper);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.listing-item span {
  font-weight: 700;
}

.legal {
  background: var(--paper);
  border-radius: 16px;
  padding: 20px;
}

.reference-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 860px) {
  .sticky-cta {
    position: static;
  }
}
