@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&display=swap");

:root {
  --ink: #1f1d1b;
  --muted: #5a524c;
  --surface: #f6f1eb;
  --accent: #d46b3d;
  --accent-dark: #b45328;
  --sage: #d6e2d3;
  --plum: #e7d6de;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(34, 24, 16, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 0;
  gap: 16px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-weight: 500;
}

.section {
  padding: 64px 6vw;
}

.section.tight {
  padding-top: 32px;
  padding-bottom: 32px;
}

.magazine-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.column {
  flex: 1;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 12px;
}

h1 {
  font-size: 2.7rem;
}

h2 {
  font-size: 2rem;
}

p {
  margin: 0 0 16px;
}

.hero-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.highlight-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-card {
  padding: 24px;
  background: var(--sage);
  border-radius: 20px;
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  padding: 20px;
  border-radius: 16px;
  background: var(--plum);
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card {
  background: var(--white);
  border: 1px solid #f0e5dc;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.price-card span {
  display: block;
  font-weight: 600;
  color: var(--accent-dark);
  margin-top: 8px;
}

.testimonial {
  background: #1d1b1a;
  color: var(--white);
  padding: 28px;
  border-radius: 20px;
}

.form-panel {
  background: var(--surface);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e2d5cb;
  font-family: inherit;
  font-size: 0.95rem;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1f1d1b;
  color: #f4f2f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 15;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-header {
  padding: 40px 6vw 20px;
}

.page-header .tag {
  margin-bottom: 8px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal {
  max-width: 900px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .highlight-grid,
  .feature-row,
  .price-grid {
    flex-direction: row;
  }

  .highlight-card,
  .feature,
  .price-card {
    flex: 1;
  }
}
