* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1a1a;
  --muted: #5e5a57;
  --accent: #e65c2c;
  --accent-dark: #c3471c;
  --sand: #f6f0ea;
  --mist: #eef3f6;
  --night: #101418;
  --card: #ffffff;
  --ring: rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px clamp(20px, 4vw, 60px);
  background: #fff;
  border-bottom: 1px solid var(--ring);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: clamp(40px, 7vw, 90px) clamp(20px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.sand {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.section.dark {
  background: var(--night);
  color: #f5f5f5;
}

.section.wave {
  background: url("bg-wave.svg") no-repeat center top / cover;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.1rem;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.tag {
  align-self: flex-start;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(230, 92, 44, 0.12);
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn.light {
  background: #fff;
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 2px solid rgba(230, 92, 44, 0.3);
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 32px clamp(20px, 6vw, 90px);
  background: #111416;
  color: #e9e6e2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}

.footer small {
  color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  color: var(--accent-dark);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  font-weight: 600;
  z-index: 9;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.list li {
  margin-left: 4px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge {
  background: rgba(255, 255, 255, 0.14);
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
}

@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .columns {
    flex-direction: row;
  }

  .card-row {
    flex-direction: row;
  }

  .price-table {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1 1 240px;
  }

  .info-grid {
    flex-direction: row;
  }

  .form-wrap {
    max-width: 540px;
  }
}
