* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1a17;
  --muted: #5a564f;
  --accent: #c45b2c;
  --accent-dark: #9a4120;
  --sand: #f6f1ea;
  --mist: #f0e7dc;
  --leaf: #4b6b4b;
  --white: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100vh;
}

header {
  background: var(--white);
  border-bottom: 1px solid #e2d7c8;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mist);
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 20px 36px;
  background: linear-gradient(145deg, #f9f3ea, #efe3d6);
}

.hero-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(27, 26, 23, 0.12);
}

.hero-content h1 {
  font-size: 2.4rem;
  line-height: 1.1;
}

.hero-content p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.magazine-section {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.magazine-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.magazine-card {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(27, 26, 23, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.magazine-card h3 {
  font-size: 1.2rem;
}

.section-title {
  font-size: 1.8rem;
  line-height: 1.2;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--leaf);
  font-weight: 700;
}

.section-contrast {
  background: var(--mist);
}

.pull-quote {
  font-size: 1.4rem;
  font-style: italic;
  background: #fff6eb;
  border-left: 6px solid var(--accent);
  padding: 20px;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-grid li {
  list-style: none;
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(27, 26, 23, 0.07);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #efe1d0;
}

.testimonial span {
  font-weight: 700;
  color: var(--accent-dark);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  border-radius: 20px;
  background: var(--white);
  padding: 24px;
  border: 2px solid #f0e2d2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card strong {
  font-size: 1.6rem;
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 18px;
}

.cta-banner {
  background: #2f2a24;
  color: var(--white);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 14px 32px rgba(27, 26, 23, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9cbb9;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(27, 26, 23, 0.2);
  z-index: 20;
}

.page-footer {
  background: #1e1c19;
  color: #f0e7dc;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(27, 26, 23, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--leaf);
  color: var(--white);
}

.cookie-reject {
  background: #d9c7b6;
}

.page-shell {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-shell h1 {
  font-size: 2rem;
}

.info-block {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(27, 26, 23, 0.08);
}

@media (min-width: 768px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1.1;
  }

  .hero-media {
    flex: 1;
  }

  .magazine-row {
    flex-direction: row;
  }

  .magazine-row.reverse {
    flex-direction: row-reverse;
  }

  .magazine-card {
    flex: 1;
  }

  .list-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .list-grid li {
    flex: 1 1 250px;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .form-panel form {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-panel form > * {
    flex: 1 1 220px;
  }

  .form-panel textarea {
    flex: 1 1 100%;
  }

  .cta-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner {
    max-width: 480px;
    left: auto;
  }
}
