* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1d1a;
  --muted: #5c5349;
  --cream: #f6f1ea;
  --stone: #e7e0d7;
  --clay: #c47a4d;
  --olive: #667050;
  --white: #ffffff;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: var(--olive);
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}

.hero {
  display: flex;
  gap: 32px;
  margin: 24px 0 32px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1;
  background: var(--stone);
  padding: 8px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--clay);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background: var(--olive);
}

.magazine-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.magazine-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  padding: 18px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background: var(--stone);
  padding: 6px;
}

.section {
  margin: 32px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.two-col {
  display: flex;
  gap: 24px;
}

.two-col .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-banner {
  display: flex;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--stone);
}

.split-banner .text {
  flex: 1;
  padding: 24px;
}

.split-banner .image {
  flex: 1;
  background: #d8cdbf;
}

.background-panel {
  min-height: 260px;
  background-color: #7b6b58;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
}

.bg-brda {
  background-image: url("https://images.unsplash.com/photo-1756219833872-c91af1a43b92?w=1400&q=80");
}

.bg-cellar {
  background-image: url("https://images.unsplash.com/photo-1776191707458-d6cd07bd82c8?w=1400&q=80");
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 10px;
}

.inline-cta {
  color: var(--clay);
  font-weight: 700;
}

.form-wrap {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--stone);
  font-size: 14px;
  background: var(--cream);
}

.footer {
  border-top: 1px solid var(--stone);
  padding: 24px;
  margin-top: 40px;
  background: var(--white);
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--olive);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 16px;
  max-width: 320px;
  z-index: 30;
  display: none;
  gap: 10px;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-wrap {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 960px) {
  .hero,
  .magazine-grid,
  .two-col,
  .split-banner,
  .footer-columns {
    flex-direction: column;
  }

  .ad-label {
    text-align: left;
  }
}
