* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1f24;
  --muted: #5d6673;
  --paper: #f6f4f0;
  --paper-dark: #efece6;
  --accent: #2f5d50;
  --accent-2: #7c4d3a;
  --line: #d8d3c8;
  --highlight: #f0e7d6;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  background: var(--paper-dark);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--accent);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.sticky-cta:hover {
  background: #24483e;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.magazine-hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 320px;
}

.image-frame {
  background: #d7d7d7;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pill-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: #fff;
}

.pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent-2);
}

.btn:hover {
  filter: brightness(0.95);
}

.link-inline {
  color: var(--accent);
  text-decoration: underline;
}

.link-inline:hover {
  color: #24483e;
}

.magazine-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.col {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.col h3 {
  font-size: 18px;
}

.meta {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--highlight);
  border-radius: 18px;
  padding: 32px;
}

.feature-strip .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-strip .media {
  flex: 1 1 320px;
}

.split-panels {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.panel {
  flex: 1 1 280px;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.panel.dark {
  background: #1f2d28;
  color: #f5f0e7;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item span {
  font-weight: 600;
}

.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-size: 14px;
  color: var(--muted);
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-grid .field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.section-alt {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-insight .panel {
  background: rgba(28, 31, 36, 0.75);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.footer {
  margin-top: auto;
  padding: 32px 24px;
  border-top: 1px solid var(--line);
  background: var(--paper-dark);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.secondary {
  background: #88918d;
}

.cookie-btn:hover {
  filter: brightness(0.95);
}

.page-hero {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero .text {
  flex: 1 1 320px;
}

.page-hero .media {
  flex: 1 1 320px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-card {
  flex: 1 1 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

@media (max-width: 860px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
