/* Base */
* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1b19;
  --muted: #6a625c;
  --paper: #faf6f0;
  --pebble: #f0ebe4;
  --spice: #cc5f3a;
  --leaf: #2f5f4a;
  --sun: #f7c873;
  --night: #0f0f10;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 18px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.hero {
  background: linear-gradient(135deg, rgba(247, 200, 115, 0.25), rgba(204, 95, 58, 0.15));
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 36px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
}

.hero-tag {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.15;
  margin: 0;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--spice);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.section {
  padding: 38px 0;
}

.section.alt {
  background: var(--pebble);
}

.section.dark {
  background: var(--night);
  color: #f5f1eb;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: 8px;
}

.mag-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mag-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mag-highlight {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.mag-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card h4 {
  margin: 0;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--leaf);
}

.inline-cta {
  color: var(--spice);
  font-weight: 600;
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(47, 95, 74, 0.12);
  color: var(--leaf);
  font-size: 0.85rem;
  font-weight: 600;
}

.form-shell {
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d6d0c8;
  font-size: 1rem;
  background: #fff;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--leaf);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.footer {
  padding: 30px 0 50px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 12;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--spice);
  color: #fff;
}

.cookie-actions .reject {
  background: #e5e0d8;
  color: var(--ink);
}

.notice {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (min-width: 800px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    flex: 1;
  }

  .hero-media {
    flex: 0.8;
  }

  .mag-row {
    flex-direction: row;
    align-items: stretch;
  }

  .mag-column {
    flex: 1;
  }
}
