/* Base */
:root {
  --bg: #f8f5f1;
  --ink: #1f1f1f;
  --muted: #5c5c5c;
  --accent: #c34b5c;
  --accent-dark: #8f2f3d;
  --cream: #fffaf5;
  --sage: #dce3d6;
  --sand: #efe6db;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 0;
  position: relative;
  z-index: 3;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}

.nav-brand span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 48px 6vw 64px;
  position: relative;
}

.hero-card {
  background: var(--cream);
  padding: 40px 34px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 620px;
}

.hero-card h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-media {
  align-self: flex-end;
  max-width: 520px;
  transform: translateY(-30px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(195, 75, 92, 0.3);
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  box-shadow: none;
}

.tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.section {
  padding: 64px 6vw;
  position: relative;
}

.layer {
  background: var(--sand);
  padding: 48px 32px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.offset {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset .title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.testimonial {
  font-style: italic;
  background: #fff;
  padding: 20px;
  border-left: 4px solid var(--accent);
}

.form-wrap {
  background: #fff;
  padding: 32px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d5cfc6;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

button {
  cursor: pointer;
}

.highlight-band {
  background: var(--sage);
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 14px 6vw;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.footer {
  padding: 48px 6vw;
  background: #181818;
  color: #f7f0e8;
}

.footer a {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.hero-badge {
  position: absolute;
  right: 6vw;
  top: 24px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .offset {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .offset .title {
    max-width: 400px;
  }

  .timeline-step {
    max-width: 520px;
  }
}
