* {
  box-sizing: border-box;
}

:root {
  --ink: #141414;
  --muted: #5d5d5d;
  --accent: #ff4d2e;
  --accent-dark: #c63a20;
  --sand: #f7f1ea;
  --mist: #eef1f6;
  --shadow: 0 18px 40px rgba(20, 20, 20, 0.15);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  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-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  gap: 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-secondary {
  border: 1px solid var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 20;
  box-shadow: var(--shadow);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 32px;
  background: linear-gradient(120deg, rgba(255, 77, 46, 0.1), rgba(255, 255, 255, 1));
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.highlight {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.section.split {
  gap: 32px;
}

.split-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offset-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.offset-media img {
  border-radius: 20px;
}

.offset-pill {
  background: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  align-self: flex-start;
  margin-top: -24px;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
  padding-bottom: 12px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  border: 1px solid rgba(20, 20, 20, 0.2);
  border-radius: 10px;
  padding: 12px;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #0f0f0f;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 600;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-title {
  font-size: 2rem;
  margin: 0;
}

.muted {
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy,
  .hero-visual {
    flex: 1;
  }

  .split-wrap {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .price-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1 1 220px;
    border-bottom: none;
    border-right: 1px solid rgba(20, 20, 20, 0.1);
    padding-right: 12px;
  }

  .price-item:last-child {
    border-right: none;
  }

  .form-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-details,
  form {
    flex: 1;
  }
}
