@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@300;500;700&family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #151515;
  --muted: #4b4b4b;
  --paper: #f6f4ef;
  --accent: #b41b2d;
  --accent-dark: #7a0f1d;
  --highlight: #f0d9bd;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", 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 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 20px;
  background: #fffaf3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-split {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: 48px 0;
}

.section--hero {
  background: #ffffff;
  box-shadow: var(--shadow);
  margin-top: 24px;
  border-radius: 24px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
}

.hero-title {
  font-family: "Fraunces", serif;
  font-size: 34px;
  line-height: 1.15;
  margin: 0;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.magazine-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.column {
  flex: 1;
}

.pull-quote {
  font-family: "Fraunces", serif;
  font-size: 22px;
  background: var(--highlight);
  padding: 20px;
  border-left: 4px solid var(--accent);
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-card {
  background: var(--card);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card img {
  border-radius: 14px;
}

.section--contrast {
  background: #1f1a16;
  color: #fdf7ef;
  padding: 56px 0;
}

.section--contrast .btn-outline {
  border-color: #fdf7ef;
  color: #fdf7ef;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.testimonial-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fffaf3;
  padding: 18px;
  border-radius: 16px;
  font-size: 15px;
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.price {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

input,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 15px;
}

.footer {
  padding: 32px 20px 56px;
  background: #fffaf3;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: var(--accent-dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.subtle {
  color: var(--muted);
}

.section--layered {
  background: linear-gradient(120deg, rgba(240, 217, 189, 0.7), rgba(255, 255, 255, 0.9));
  border-radius: 32px;
  padding: 36px;
  margin: 12px 0;
}

.section--texture {
  background-image: url("bg-texture.svg");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 36px;
}

.media-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-block img {
  border-radius: 18px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}

@media (min-width: 900px) {
  .top-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-split {
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-media {
    flex: 1;
  }

  .magazine-columns {
    flex-direction: row;
  }

  .feature-grid {
    flex-direction: row;
  }

  .feature-card {
    flex: 1;
  }

  .testimonial-row {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .pricing-wrap {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .media-block {
    flex-direction: row;
  }

  .media-block .column {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
  }
}
