* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1c18;
  --muted: #6b635a;
  --paper: #faf6ef;
  --accent: #c95a3d;
  --accent-dark: #933b27;
  --leaf: #2f5d50;
  --sand: #f1e3d0;
  --mist: #f8efe2;
}

body {
  font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  border-bottom: 1px solid rgba(30, 28, 24, 0.12);
  background: rgba(250, 246, 239, 0.92);
}

.brand {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw 32px;
}

.hero-banner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background: var(--mist);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(201, 90, 61, 0.08), transparent);
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--accent);
  color: var(--accent);
}

.section {
  padding: 48px 6vw;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.magazine-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.magazine-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 20px 40px rgba(30, 28, 24, 0.08);
}

.magazine-card img {
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-feature {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--sand);
  border-radius: 28px;
  padding: 28px;
}

.split-feature .columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split-feature .column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-strip {
  background: var(--leaf);
  color: #fff;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-strip strong {
  font-size: 1.2rem;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(30, 28, 24, 0.08);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 32px rgba(30, 28, 24, 0.08);
}

.form-shell label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(30, 28, 24, 0.16);
  font-size: 1rem;
}

.form-shell button {
  align-self: flex-start;
}

.footer {
  margin-top: auto;
  padding: 28px 6vw;
  background: #fff;
  border-top: 1px solid rgba(30, 28, 24, 0.1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 6vw 24px;
  background: rgba(30, 28, 24, 0.88);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta a {
  color: #fff;
  border: 1px solid #fff;
  padding: 6px 14px;
  border-radius: 999px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(30, 28, 24, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid rgba(30, 28, 24, 0.2);
  padding: 8px 16px;
  background: #fff;
}

.cookie-actions button.accept {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.media-overlay {
  position: relative;
}

.media-overlay img {
  border-radius: 24px;
}

.media-overlay span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(30, 28, 24, 0.72);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 260px;
}

.info-panel {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(30, 28, 24, 0.1);
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
