* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1c1a;
  --muted: #5f5a53;
  --accent: #da5b3d;
  --soft: #f3efe9;
  --deep: #12110f;
  --paper: #ffffff;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw 18px;
  border-bottom: 1px solid #e5e1da;
  background: var(--paper);
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 6vw 40px;
  background: var(--soft);
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.4vw, 3.3rem);
  line-height: 1.1;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}

.button.secondary {
  background: var(--deep);
}

.button.outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.section {
  padding: 40px 6vw;
}

.section.light {
  background: var(--soft);
}

.section.dark {
  background: var(--deep);
  color: white;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.columns.two {
  gap: 28px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(16, 14, 10, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 1.1rem;
}

.cta-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e3ded6;
  padding: 22px;
  border-radius: 18px;
  background: white;
}

.price-tag {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  font-style: italic;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: white;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(16, 14, 10, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d1c8;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #0f0e0c;
  color: #efeae2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  box-shadow: 0 14px 28px rgba(16, 14, 10, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: white;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(16, 14, 10, 0.18);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

@media (min-width: 760px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-top {
    flex: 1.2;
  }

  .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .columns {
    flex-direction: row;
  }

  .columns > * {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card-row .card {
    flex: 1;
  }
}
