*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1c1a1f;
  --soft-ink: #3e3842;
  --blush: #f5e7ef;
  --sand: #f7f4f0;
  --cream: #fff8f3;
  --accent: #c0486b;
  --accent-dark: #8f2f4b;
  --olive: #8b8f7a;
  --line: #e5d6dc;
  --shadow: 0 18px 40px rgba(26, 20, 26, 0.12);
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 16px;
  position: relative;
  z-index: 2;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--soft-ink);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 4;
}

main {
  display: flex;
  flex-direction: column;
  gap: 90px;
  padding-bottom: 80px;
}

.section {
  padding: 0 6vw;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 16px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 12% 4% auto auto;
  width: 120px;
  height: 120px;
  background: url("assets/pattern.svg") center/cover no-repeat;
  opacity: 0.5;
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.hero-media {
  position: relative;
  background: var(--blush);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateX(6%);
}

.hero-media img {
  width: 100%;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-card {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: translateX(-6%);
}

.soft-panel {
  background: var(--sand);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.soft-panel::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 18px;
  width: 90px;
  height: 90px;
  background: url("assets/tools.svg") center/cover no-repeat;
  opacity: 0.4;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
}

.service-row h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.image-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-strip img {
  flex: 1 1 140px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--line);
}

.membership {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--blush);
  border-radius: 26px;
  padding: 30px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw 60px;
  background: var(--ink);
  color: #f9f4f7;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.page-hero {
  padding: 40px 6vw 10px;
  background: var(--sand);
}

.page-body {
  padding: 20px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.policy {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

@media (min-width: 760px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content,
  .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .offset-card {
    max-width: 48%;
  }

  .soft-panel {
    max-width: 52%;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-row {
    flex: 1 1 260px;
  }

  .timeline {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .timeline-step {
    flex: 1 1 220px;
  }

  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial-card {
    flex: 1 1 240px;
  }

  .two-col {
    flex-direction: row;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }
}
