* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --accent: #c45b2c;
  --accent-dark: #8f3e1f;
  --soft: #f6f1eb;
  --paper: #ffffff;
  --sand: #f0e7dc;
  --olive: #415247;
  --line: rgba(27, 27, 27, 0.15);
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.magazine-shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px 80px;
  width: 100%;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 0 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 0 30px;
}

.hero .hero-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-tag {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.95rem;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
}

.hero-columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-columns .column-block {
  padding: 18px;
  background: var(--sand);
  border-radius: 14px;
}

.section {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 1.6rem;
}

.section-intro {
  color: var(--muted);
  max-width: 720px;
}

.mag-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mag-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.mag-card strong {
  font-size: 1.1rem;
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.story-rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--olive);
  color: #fff;
  border-radius: 18px;
}

.story-rail p {
  color: rgba(255, 255, 255, 0.82);
}

.double-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.double-column .note {
  padding: 20px;
  background: var(--soft);
  border-radius: 16px;
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-shell {
  background: var(--soft);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.button.alt {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  padding: 12px 16px;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  margin-top: 60px;
  padding: 32px 0 60px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-band {
  background: var(--sand);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-note {
  padding: 12px;
  border-left: 3px solid var(--accent);
  background: #fff4ee;
  font-size: 0.95rem;
}

.micro-cta {
  font-weight: 600;
  color: var(--accent-dark);
}

.section-cta {
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  color: var(--accent-dark);
  font-size: 0.95rem;
}

.contact-panel {
  padding: 24px;
  border-radius: 18px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 36px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

@media (min-width: 800px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-layout {
    flex-direction: row;
  }

  .hero-columns {
    flex-direction: row;
  }

  .mag-grid {
    flex-direction: row;
  }

  .mag-card {
    flex: 1;
  }

  .double-column {
    flex-direction: row;
  }

  .double-column .note {
    flex: 1;
  }

  .trust-grid {
    flex-direction: row;
  }

  .trust-item {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .form-actions {
    flex-direction: row;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .split-row {
    flex-direction: row;
  }

  .split-row > div {
    flex: 1;
  }
}
