/* ==========================================================================
   FAME Fitness – landingspagina (Versie 1 · volgens briefing)
   Mobile first. Desktop-layout vanaf 900px.
   ========================================================================== */

:root {
  --black: #000;
  --surface: #0d0d0d;
  --input: #111;
  --line: #1c1c1c;
  --line-2: #262626;
  --line-3: #2a2a2a;
  --line-input: #2e2e2e;

  --cyan: #40bcf0;
  --cyan-light: #8ed9f7;
  --cyan-dark: #0b7fb5;

  --white: #fff;
  --text-soft: #d6d6d6;
  --text-muted: #bbb;
  --text-dim: #999;
  --text-faint: #8a8a8a;
  --text-nav: #ccc;

  --font-display: "Anton", Impact, "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: 16px;
  --header-h: 64px;
  --max: 1440px;
}

@media (min-width: 900px) {
  :root {
    --gutter: 48px;
    --header-h: 84px;
  }
}

/* ---------- Reset & base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--cyan-light); }

h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote, address { margin: 0; }
ul, ol { padding: 0; list-style: none; }
address { font-style: normal; }
button { font: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.accent { color: var(--cyan); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -100px;
  background: var(--cyan); color: var(--black);
  padding: 12px 16px; font-weight: 800; z-index: 100;
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------- Typografie ---------- */

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 0;
  background: var(--cyan);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  padding: 18px 24px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:hover { background: var(--cyan-light); color: var(--black); }
.btn:active { transform: translateY(1px); }

.btn--outline {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--black); }

.btn--block { display: flex; width: 100%; }
.btn--sm { font-size: 11px; padding: 12px 14px; }
.btn--lg { font-size: 15px; padding: 18px 24px; }
.btn--xl { font-size: 15px; padding: 18px 28px; }

@media (min-width: 900px) {
  .btn { font-size: 14px; letter-spacing: 0.08em; }
  .btn--sm { font-size: 13px; padding: 14px 22px; }
  .btn--lg { font-size: 16px; padding: 20px 36px; }
  .btn--xl { font-size: 17px; padding: 22px 46px; }
}

/* ==========================================================================
   01 HEADER
   ========================================================================== */

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.site-header__logo img { height: 17px; width: auto; }

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

.site-header__cta-long { display: none; }
.site-header__cta-short { display: inline; }

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px 0;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
}
.burger span:last-child { width: 16px; background: var(--cyan); }

/* Mobiel menu (overlay) */
.site-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  background: var(--black);
  padding: 0 var(--gutter) 24px;
  transform: translateX(100%);
  visibility: hidden;
}
.site-nav.is-closing {
  transition: transform 0.28s ease, visibility 0s linear 0.28s;
}
.site-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.28s ease;
}

.site-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
}
.site-nav__top img { height: 17px; width: auto; }

.site-nav__close {
  background: none;
  border: 1px solid var(--line-2);
  color: var(--white);
  width: 40px; height: 40px;
  font-size: 26px; line-height: 1;
  cursor: pointer;
}

.site-nav__list { padding: 24px 0; flex: 1; }
.site-nav__list a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.site-nav__list a:hover { color: var(--cyan); }

body.nav-open { overflow: hidden; }

@media (min-width: 900px) {
  .site-header__logo img { height: 22px; }

  .site-header__cta-long { display: inline; }
  .site-header__cta-short { display: none; }

  .burger { display: none; }

  .site-header__actions { gap: 36px; margin-left: auto; }

  .site-nav {
    position: static;
    transform: none;
    visibility: visible;
    transition: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: none;
    margin-left: auto;
    margin-right: 36px;
  }
  .site-nav__top, .site-nav__cta { display: none; }

  .site-nav__list {
    display: flex;
    gap: 32px;
    padding: 0;
  }
  .site-nav__list a {
    padding: 0;
    border: 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-nav);
    transition: color 0.18s ease;
  }
  .site-nav__list a:hover { color: var(--cyan); }
}

/* ==========================================================================
   02 HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.12) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 120px 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(58px, 16vw, 150px);
  line-height: 0.92;
  text-transform: uppercase;
  margin-left: -0.03em;
}

.hero__br { display: none; }

.hero__sub {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-soft);
  max-width: 560px;
}
.hero__sub-extra { display: none; }

.hero__cta { margin-top: 20px; width: 100%; }

@media (min-width: 900px) {
  .hero { min-height: 700px; }
  .hero__shade { background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.12) 100%); }
  .hero__content { padding-block: 160px 64px; }
  .hero__title { line-height: 0.9; }
  .hero__br { display: inline; }
  .hero__sub { margin-top: 22px; font-size: 20px; }
  .hero__sub-extra { display: inline; }
  .hero__cta { margin-top: 30px; width: auto; }
}

/* ==========================================================================
   02b MARQUEE
   ========================================================================== */

.marquee-wrap {
  overflow: hidden;
  padding: 16px 0;
}

.marquee {
  background: var(--cyan);
  transform: rotate(-1.6deg) scale(1.06);
  margin-inline: -8px;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: fm-marq 14s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--black);
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__group i { font-style: normal; font-size: 11px; }

@keyframes fm-marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (min-width: 900px) {
  .marquee-wrap { padding: 26px 0; }
  .marquee { transform: rotate(-1.2deg) scale(1.03); margin-inline: -20px; }
  .marquee__track { animation-duration: 18s; }
  .marquee__group { gap: 28px; padding: 14px; font-size: 34px; }
  .marquee__group i { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ==========================================================================
   03 COMMUNITY (reels slider)
   ========================================================================== */

.community { padding: 40px 0 48px; }

.community__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.slider-nav { display: flex; gap: 8px; }
.slider-nav--top { display: none; }
.slider-nav--bottom { justify-content: flex-end; margin-top: 14px; }

.slider-nav__btn {
  width: 48px; height: 48px;
  background: var(--black);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-size: 18px;
  cursor: pointer;
  border-radius: 0;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.slider-nav__btn:hover { background: var(--cyan); color: var(--black); }

.reels {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  -webkit-overflow-scrolling: touch;
}
.reels::-webkit-scrollbar { display: none; }

.reels__track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding-inline: var(--gutter);
}

.reel {
  position: relative;
  flex: 0 0 auto;
  width: 238px;
  height: 423px;
  border: 1px solid #242424;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--surface);
}

.reel__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 45%);
  pointer-events: none;
}

.reel__play {
  position: absolute;
  left: 50%; top: 50%;
  width: 52px; height: 52px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--white);
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.reel__play::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-40%, -50%);
  border-left: 14px solid var(--white);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.reel__label {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e6e6e6;
}

@media (min-width: 900px) {
  .community { padding: 80px 0 70px; }
  .community__head { margin-bottom: 32px; }
  .slider-nav { gap: 10px; }
  .slider-nav--top { display: flex; }
  .slider-nav--bottom { display: none; }
  .slider-nav__btn { width: 52px; height: 52px; font-size: 20px; }
  .reels__track { gap: 18px; }
  .reel__play { width: 56px; height: 56px; }
  .reel__play::before { border-left-width: 16px; border-top-width: 10px; border-bottom-width: 10px; }
}

/* Container-brede slider op grote schermen: track begint in de container */
@media (min-width: 1440px) {
  .reels__track {
    padding-inline: calc((100vw - var(--max)) / 2 + var(--gutter));
  }
}

/* ==========================================================================
   04 TARIEVEN
   ========================================================================== */

.pricing {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
}

.pricing__title { margin-bottom: 34px; }

.pricing__grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-3);
  padding: 26px 22px 22px;
}

.plan--featured {
  border: 2px solid var(--cyan);
  padding-top: 32px;
}

.plan__badge {
  position: absolute;
  top: -14px; left: 22px;
  background: var(--cyan);
  color: var(--black);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.plan__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
}

.plan__price { margin-top: 12px; line-height: 1; }
.plan__amount {
  font-family: var(--font-display);
  font-size: 44px;
}
.plan--featured .plan__amount { color: var(--cyan); }
.plan__period { font-size: 13px; color: var(--text-dim); }

.plan__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 20px;
  font-size: 14px;
  color: #ddd;
}
.plan__features li { display: flex; gap: 9px; }
.plan__features li::before {
  content: "—";
  color: var(--cyan);
  font-weight: 800;
}

.plan__cta { margin-top: auto; padding: 16px; font-size: 14px; }

.pricing__note { margin-top: 20px; font-size: 12px; color: var(--text-faint); }
.pricing__try { margin-top: 6px; font-size: 14px; font-weight: 600; }
.pricing__try a { text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 900px) {
  .pricing { padding: 90px 0 40px; }
  .pricing__title { margin-bottom: 52px; }

  .pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
  }

  .plan { padding: 38px 32px 32px; }
  .plan--featured { transform: translateY(-18px); }
  .plan__badge { top: -16px; left: 32px; font-size: 12px; padding: 7px 14px; }
  .plan__name { font-size: 30px; }
  .plan__price { margin-top: 18px; }
  .plan__amount { font-size: 56px; }
  .plan__period { font-size: 14px; }
  .plan__features { gap: 10px; margin: 22px 0 30px; font-size: 15px; }
  .plan__features li { gap: 10px; }
  .plan__cta { padding: 18px; }

  .pricing__note { margin-top: 26px; font-size: 13px; }
  .pricing__try { margin-top: 8px; font-size: 15px; }
}

/* ==========================================================================
   05 IMPRESSIE MET TEKST (USP's)
   ========================================================================== */

.usp {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.usp__media {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.usp__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.usp__body { padding: 0 var(--gutter) 48px; }

.usp__title {
  position: relative;
  z-index: 2;
  margin-top: -26px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0,0,0,0.8);
}

.usp__list { margin-top: 26px; }

.usp__item {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--line-2);
  padding: 18px 0;
}
.usp__item:last-child { padding-bottom: 0; }

.usp__num {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  color: var(--cyan);
}

.usp__heading {
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.usp__text { margin-top: 5px; font-size: 14px; color: var(--text-muted); }

@media (min-width: 900px) {
  .usp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
  }
  .usp__media { height: auto; min-height: 640px; }
  .usp__media img { position: absolute; inset: 0; }

  .usp__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
  }

  .usp__title {
    margin-top: 0;
    margin-left: -150px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.7);
  }

  .usp__list { margin-top: 44px; }
  .usp__item { gap: 22px; padding: 24px 0; }
  .usp__item:last-child { padding-bottom: 24px; }
  .usp__num { font-size: 26px; }
  .usp__heading { font-size: 18px; }
  .usp__text { margin-top: 6px; font-size: 15px; }
}

/* ==========================================================================
   06 OPENINGSTIJDEN
   ========================================================================== */

.hours {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.hours__inner { display: flex; flex-direction: column; }

.hours__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hours__hyphen { display: none; }

.hours__address {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.hours__address a { color: var(--white); font-weight: 700; }

.hours__intro { display: contents; }
.hours__title { order: 0; }
.hours__list { order: 1; }
.hours__address { order: 2; }

.hours__list { border-bottom: 1px solid var(--line-2); }

.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line-2);
  padding: 14px 0;
  font-size: 14px;
}
.hours__row dt {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hours__row dd {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--cyan);
  white-space: nowrap;
}

.hours__day-long { display: none; }
.hours__day-short { display: inline; }

@media (min-width: 900px) {
  .hours { padding: 90px 0; }

  .hours__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .hours__intro { display: block; }
  .hours__title { margin-bottom: 0; }
  .hours__hyphen { display: inline; }
  .hours__address { margin-top: 28px; font-size: 16px; }

  .hours__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hours__row { padding: 18px 0; font-size: 17px; }
  .hours__row dt { letter-spacing: 0.06em; }
  .hours__row dd { font-size: 20px; }

  .hours__day-long { display: inline; }
  .hours__day-short { display: none; }
}

/* ==========================================================================
   07 SOCIAL PROOF
   ========================================================================== */

.proof {
  background: var(--white);
  color: var(--black);
  padding: 56px 0 82px;
}

.proof__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.quote__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(27px, 2.8vw, 40px);
  line-height: 1.1;
  text-transform: uppercase;
}

.quote__by {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan-dark);
}

@media (min-width: 900px) {
  .proof { padding: 100px 0 148px; }
  .proof__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
  .quote__text { line-height: 1.08; }
  .quote__by { margin-top: 20px; font-size: 15px; }
}

/* ==========================================================================
   08 CTA (schuine bovenrand over het witte vlak)
   ========================================================================== */

.cta {
  position: relative;
  z-index: 2;
  margin-top: -26px;
  padding: 80px 0 64px;
  background: var(--black);
  text-align: center;
  clip-path: polygon(0 26px, 100% 0, 100% 100%, 0 100%);
}

.cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 7.2vw, 104px);
  line-height: 0.95;
  text-transform: uppercase;
}
.cta__br { display: none; }

.cta__sub { margin-top: 14px; font-size: 16px; color: var(--text-nav); }

.cta__btn { margin-top: 24px; width: 100%; }

@media (min-width: 900px) {
  .cta {
    margin-top: -48px;
    padding: 150px 0 120px;
    clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  }
  .cta__br { display: inline; }
  .cta__sub { margin-top: 20px; font-size: 20px; }
  .cta__btn { margin-top: 36px; width: auto; }
}

/* ==========================================================================
   09 FORMULIER
   ========================================================================== */

.signup { padding: 24px 0 56px; }

.signup__card {
  position: relative;
  max-width: 620px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line-3);
  padding: 24px 18px;
  color-scheme: dark;
}

.signup__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 40px);
  text-transform: uppercase;
}

.signup__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.field { grid-column: 1 / -1; min-width: 0; }
.field--half { grid-column: span 1; }
.field--full { grid-column: 1 / -1; }

.field input,
.field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  background: var(--input);
  border: 1px solid var(--line-input);
  border-radius: 0;
  color: var(--white);
  padding: 13px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.3;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.18s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
}
.field input::placeholder,
.field textarea::placeholder { color: #666; }

.field input[type="date"] { color: var(--text-dim); padding: 11px 13px; font-size: 14px; }
.field input[type="date"].has-value { color: var(--white); }
.field input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.6; cursor: pointer; }

.field input.is-invalid,
.field textarea.is-invalid { border-color: #ff5a5a; }

.signup__error {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #ff7b7b;
}

.signup__submit { margin-top: 12px; padding: 17px; }
.signup__note { margin-top: 10px; font-size: 12px; color: var(--text-faint); text-align: center; }

.signup__success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: var(--surface);
  text-align: center;
  color: var(--text-soft);
}
.signup__success[hidden] { display: none; }
.signup__success-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

@media (min-width: 900px) {
  .signup { padding: 40px 0 100px; }
  .signup__card { padding: 44px; }
  .signup__fields { gap: 14px; margin-top: 26px; }
  .field { grid-column: span 1; }
  .field--full { grid-column: 1 / -1; }
  .field input, .field textarea { padding: 14px; }
  .field input[type="date"] { padding: 12px 14px; font-size: 15px; }
  .signup__submit { margin-top: 18px; padding: 20px; font-size: 16px; }
  .signup__note { margin-top: 14px; font-size: 13px; }
}

/* ==========================================================================
   10 FOOTER
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 110px; /* ruimte voor sticky CTA-balk op mobiel */
}

.site-footer__brand img { height: 17px; width: auto; }

.site-footer__address {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.8;
}
.site-footer__address a { color: var(--cyan); }
.site-footer__address a:hover { color: var(--cyan-light); }

.site-footer__cols {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  font-size: 13px;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__heading {
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
}

@media (min-width: 900px) {
  .site-footer { padding: 56px 0 90px; }
  .site-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
  .site-footer__brand img { height: 20px; }
  .site-footer__address { margin-top: 16px; font-size: 14px; }
  .site-footer__cols { gap: 60px; margin-top: 0; font-size: 14px; }
}

/* ==========================================================================
   STICKY CTA
   ========================================================================== */

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 20;
  padding: 10px 12px;
  background: rgba(0,0,0,0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--line-2);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sticky-cta__btn { width: 100%; padding: 16px; font-size: 15px; }

.sticky-cta.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 900px) {
  .sticky-cta {
    left: auto;
    right: 28px;
    bottom: 24px;
    padding: 0;
    background: none;
    border: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .sticky-cta__btn {
    width: auto;
    padding: 18px 28px;
    font-size: 14px;
    box-shadow: 0 8px 30px rgba(64,188,240,0.35);
  }
}
