* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1b16;
  --muted: #5d564c;
  --accent: #b74d2d;
  --accent-dark: #8f3c23;
  --soft: #f6f1ea;
  --soft-2: #efe6da;
  --sand: #e2d4c1;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 16, 10, 0.16);
  --radius: 18px;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbf9f6;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 28px 6vw 10px;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 10px 6vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 1.8rem;
  letter-spacing: 0.02rem;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
}

.editorial-hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--soft);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 1.05rem;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--soft-2);
  padding: 18px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-tag {
  font-size: 1.4rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.overlap {
  position: relative;
  padding: 28px;
  background: var(--soft);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overlap-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  margin-top: -38px;
}

.form-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--sand);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  background: #1d1b16;
  color: #f2ede6;
  padding: 34px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f2ede6;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1d1b16;
  color: #f9f5ef;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid #f9f5ef;
  padding: 8px 14px;
  background: transparent;
  color: #f9f5ef;
  font-weight: 600;
}

.cookie-actions button.accept {
  background: #f9f5ef;
  color: #1d1b16;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: var(--soft);
  padding: 20px;
  border-radius: var(--radius);
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
}

.wide-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--soft-2);
  padding: 22px;
  border-radius: var(--radius);
}

@media (min-width: 860px) {
  .topbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .hero-columns,
  .split-row,
  .image-strip,
  .cards,
  .pricing-grid,
  .contact-grid {
    flex-direction: row;
  }

  .hero-columns > * {
    flex: 1;
  }

  .split-row > * {
    flex: 1;
  }

  .cards .card,
  .pricing-grid .card,
  .image-strip > * {
    flex: 1;
  }

  .contact-grid .contact-card {
    flex: 1;
  }
}
