* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --paper: #f7f4ef;
  --accent: #7a4b2a;
  --accent-soft: #efe3d6;
  --night: #111316;
  --mist: #d9d2c9;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--mist);
}

.nav-left,
.nav-right {
  display: flex;
  gap: 18px;
  align-items: center;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--mist);
  padding: 6px 10px;
}

.main {
  flex: 1;
}

.hero {
  background-color: #2b2f33;
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 90px 6vw 70px;
  color: #ffffff;
}

.hero-inner {
  max-width: 700px;
  background: rgba(17, 19, 22, 0.7);
  padding: 32px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  color: #f1efe9;
  margin-bottom: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 24px;
  font-weight: 600;
}

.button-secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 70px 6vw;
}

.section-dark {
  background: var(--night);
  color: #ffffff;
}

.section-soft {
  background: var(--accent-soft);
}

.columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.col {
  flex: 1;
  min-width: 240px;
}

.magazine-slab {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-frame {
  background: #d3c8be;
  padding: 12px;
}

.inline-image {
  max-width: 360px;
}

.card-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 250px;
  background: #ffffff;
  border: 1px solid var(--mist);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.split {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.sidebar-note {
  background: #ffffff;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.quote {
  font-style: italic;
}

.form-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--mist);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--mist);
  border-radius: 10px;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 24px;
  font-weight: 600;
  z-index: 10;
}

.footer {
  background: #ffffff;
  border-top: 1px solid var(--mist);
  padding: 40px 6vw;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--mist);
  padding: 18px;
  border-radius: 14px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: var(--mist);
  color: var(--ink);
}

.legal-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.muted {
  color: var(--muted);
}

.meta-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 32px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
