/* ==========================================================================
   Fit & Glow Club — landingspagina
   Bouwt verder op de tokens uit style.css
   ========================================================================== */

.site {
  --wrap: 1200px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--soft {
  background: linear-gradient(180deg, transparent, var(--soft) 18%, var(--soft) 82%, transparent);
}

.section__head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section__head--left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--secondary) 42%, transparent);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.title {
  margin-top: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lead {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

/* ---------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-stuck {
  border-color: var(--border);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(111, 72, 84, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 78px;
}

.site-header__logo img {
  display: block;
  width: 150px;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.site-nav a:hover {
  background: color-mix(in srgb, var(--secondary) 30%, transparent);
  color: var(--fg);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header__actions .btn--outline {
  display: none;
}

.nav-toggle {
  display: inline-flex;
}

.site.nav-open .site-nav {
  position: absolute;
  top: 78px;
  left: 20px;
  right: 20px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-lg);
  animation: fade-in 200ms ease both;
}

.site.nav-open .site-nav a {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
}

/* ------------------------------------------------------------------ hero */

.hero-home {
  position: relative;
  overflow: hidden;
  padding: 40px 0 72px;
}

.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

.hero-home::before {
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: var(--secondary);
}

.hero-home::after {
  bottom: -160px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: #f7d9c4;
}

.hero-home__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-home__title {
  margin-top: 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-home__title em {
  display: block;
  font-style: normal;
  background: var(--rose-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-home__text {
  max-width: 520px;
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-home__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-home__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.proof__value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 800;
}

.proof__label {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.hero-home__visual {
  position: relative;
}

.hero-home__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.hero-home__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow-lg);
}

.floating-card--top {
  top: 24px;
  left: -16px;
}

.floating-card--bottom {
  right: -12px;
  bottom: 34px;
}

.floating-card__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 14px;
  background: color-mix(in srgb, var(--secondary) 40%, transparent);
  color: var(--primary);
}

.floating-card p:first-of-type {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.floating-card p:last-of-type {
  font-size: 15px;
  font-weight: 900;
}

/* ------------------------------------------------------------- marquee */

.strip {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

.strip__inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.strip__inner .icon {
  color: var(--primary);
}

/* ------------------------------------------------------------- features */

.feature-grid,
.grid-cards-2,
.grid-cards-3,
.grid-cards-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: var(--rose-gold);
  color: #fff;
}

.feature h3 {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 800;
}

.feature p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

/* ---------------------------------------------------------------- steps */

.step {
  position: relative;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.step__number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--secondary) 45%, transparent);
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 800;
}

.step h3 {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 800;
}

.step p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

/* -------------------------------------------------------------- over mij */

.about {
  display: grid;
  gap: 36px;
  align-items: center;
}

.about__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.about__list .icon {
  margin-top: 2px;
  color: var(--primary);
}

.quote-banner {
  margin: 0 auto;
  padding: 40px 28px;
  border-radius: 32px;
  background: var(--rose-gold);
  color: #fff;
  text-align: center;
}

.quote-banner p {
  margin: 0 auto;
  max-width: 760px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 800;
  line-height: 1.3;
}

/* ------------------------------------------------------------- app preview */

.preview {
  display: grid;
  gap: 20px;
}

.preview__shot {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.preview__shot img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.preview__body {
  padding: 20px;
}

.preview__body h3 {
  font-size: 17px;
  font-weight: 800;
}

.preview__body p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ------------------------------------------------------------ testimonials */

.testimonial {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  color: var(--primary);
}

.testimonial__stars .icon {
  fill: currentColor;
}

.testimonial p {
  margin-top: 16px;
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
  color: var(--fg);
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.testimonial__person p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.testimonial__person span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* --------------------------------------------------------------- pricing */

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.plan--highlight {
  border-color: var(--primary);
  box-shadow: 0 26px 60px rgba(248, 122, 162, 0.22);
}

.plan__tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--rose-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan h3 {
  font-size: 18px;
  font-weight: 800;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 14px;
}

.plan__price b {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plan__price span {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.plan__note {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.plan ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
  flex: 1;
}

.plan li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.plan li .icon {
  margin-top: 2px;
  color: var(--primary);
}

/* ------------------------------------------------------------------- faq */

.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 6px 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary .icon {
  flex: none;
  color: var(--primary);
  transition: transform 220ms ease;
}

.faq details[open] summary .icon {
  transform: rotate(180deg);
}

.faq p {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

/* ------------------------------------------------------------------- cta */

.cta {
  position: relative;
  overflow: hidden;
  padding: 52px 28px;
  border-radius: 36px;
  background: linear-gradient(135deg, #2a1a20 0%, #55303d 55%, #a45f74 100%);
  color: #fff;
  text-align: center;
}

.cta::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(248, 122, 162, 0.35);
  filter: blur(60px);
}

.cta > * {
  position: relative;
}

.cta h2 {
  margin: 0 auto;
  max-width: 640px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
}

.cta p {
  margin: 16px auto 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.textarea {
  width: 100%;
  min-height: 130px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--fg);
  font-size: 14px;
  line-height: 1.6;
  outline: none;
  resize: vertical;
}

.textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondary) 40%, transparent);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.contact-list a:hover {
  color: var(--primary);
}

.contact-list .icon {
  color: var(--primary);
}

/* ---------------------------------------------------------------- footer */

.site-footer {
  margin-top: 24px;
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--card);
}

.site-footer__grid {
  display: grid;
  gap: 32px;
}

.site-footer img {
  width: 150px;
}

.site-footer h4 {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer li a {
  font-size: 15px;
  font-weight: 600;
}

.site-footer li a:hover {
  color: var(--primary);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
}

.socials a:hover {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--secondary) 30%, transparent);
  color: var(--primary);
}

/* -------------------------------------------------------------- reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------------------------------------------------------- responsive */

@media (max-width: 639px) {
  .floating-card--top {
    top: 14px;
    left: 12px;
  }

  .floating-card--bottom {
    right: 12px;
    bottom: 16px;
  }

  .floating-card {
    padding: 10px 12px;
  }
}

@media (min-width: 640px) {
  .feature-grid,
  .grid-cards-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 88px 0;
  }

  .cta {
    padding: 64px 40px;
  }
}

@media (min-width: 900px) {
  .hero-home__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }

  .about {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .site-header__actions .btn--outline {
    display: inline-flex;
  }

  .feature-grid,
  .grid-cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-cards-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .preview {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: 104px 0;
  }

  .wrap {
    padding: 0 32px;
  }
}
