/* ==========================================================================
   Pepperspray24 — Homepage
   Warm & geruststellend: crème/nude met klei/terracotta accent.
   Type: Newsreader (serif koppen) + Mulish (sans tekst).
   ========================================================================== */

:root {
  --cream:      #F6EEE4; /* page background */
  --paper:      #FCF9F3; /* cards / surfaces */
  --sand:       #EFE2D3; /* alternating band */
  --sand-soft:  #F1E4D6; /* icon chips */
  --blush:      #E7C6B8; /* avatar / glow */
  --clay:       #C06A47; /* primary accent */
  --clay-deep:  #A4502F; /* accent hover */
  --clay-light: #D98A66; /* accent on dark */
  --ink:        #2A241F; /* primary text / dark band */
  --muted:      #6d6055;
  --muted-soft: #7a6d61;
  --muted-faint:#9a8b7c;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--cream);
  font-family: 'Mulish', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--blush); color: var(--ink); }

img { display: block; }

.serif { font-family: 'Newsreader', serif; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* Eyebrow / kicker label */
.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
}
.eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow-row .rule {
  width: 24px;
  height: 1px;
  background: var(--clay);
}

/* Animations */
@keyframes p24float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes p24pulse { 0%, 100% { opacity: .55; } 50% { opacity: .9; } }

/* ===== Announcement bar ================================================== */
.announce {
  width: 100%;
  background: var(--clay);
  color: var(--paper);
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding-top: 9px;
  padding-bottom: 9px;
}
.announce__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5FD08A;
  box-shadow: 0 0 0 3px rgba(95, 208, 138, 0.35);
  flex: 0 0 auto;
}
.announce__text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ===== Header ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(246, 238, 228, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42, 36, 31, 0.07);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__name {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand__name .accent { color: var(--clay); }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  padding: 11px 20px;
  transition: background .18s ease;
}
.btn-pill:hover { background: var(--clay); }
.btn-pill--lg { font-size: 15px; padding: 14px 24px; }

/* ===== Hero ============================================================== */
.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 40px;
}
.hero__title {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 31em;
}
.hero__manifest {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 30px;
}
.eyebrow-row + .hero__title,
.eyebrow-row.mb { margin-bottom: 24px; }

/* Hero form card */
.form-card {
  background: var(--paper);
  border: 1px solid rgba(42, 36, 31, 0.10);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 22px 50px -30px rgba(42, 36, 31, 0.4);
  max-width: 520px;
}
.form-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 13px;
}
.signup-form { display: flex; flex-direction: column; gap: 9px; }
.signup-form__row { display: flex; gap: 9px; flex-wrap: wrap; }

.field {
  flex: 1 1 210px;
  min-width: 0;
  font-family: 'Mulish', sans-serif;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(42, 36, 31, 0.14);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
}
.field:focus { border-color: var(--clay); }
.field--block { width: 100%; flex: none; background: var(--paper); border-color: rgba(42, 36, 31, 0.16); }

.btn-accent {
  flex: 0 0 auto;
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--paper);
  background: var(--clay);
  border: none;
  border-radius: 12px;
  padding: 14px 22px;
  cursor: pointer;
  transition: background .18s ease;
}
.btn-accent:hover { background: var(--clay-deep); }
.btn-accent--block { width: 100%; font-size: 15.5px; padding: 15px 22px; }

.form-error {
  font-size: 13px;
  color: var(--clay-deep);
  font-weight: 600;
}

.form-success { display: flex; align-items: center; gap: 12px; }
.form-success__check {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--clay);
  display: flex; align-items: center; justify-content: center;
}
.form-success__title { font-size: 15.5px; font-weight: 700; }
.form-success__sub { font-size: 13.5px; color: var(--muted); }

.social-proof {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatars { display: flex; }
.avatars span,
.avatars img {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--paper);
}
.avatars img { object-fit: cover; background: var(--blush); }
.avatars span + span,
.avatars img + img { margin-left: -8px; }
.social-proof__text { font-size: 13px; color: var(--muted-soft); }
.social-proof__text strong { color: var(--ink); font-weight: 700; }

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.hero__glow {
  position: absolute;
  width: 78%; height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 198, 184, 0.85), rgba(231, 198, 184, 0) 68%);
  animation: p24pulse 7s ease-in-out infinite;
}
.hero__bottles {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 30px 45px rgba(42, 36, 31, 0.22));
}
.chip {
  position: absolute;
  right: 2px; top: 18px;
  background: var(--paper);
  border: 1px solid rgba(42, 36, 31, 0.10);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 18px 40px -24px rgba(42, 36, 31, 0.5);
  animation: p24float 6s ease-in-out infinite;
}
.chip__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
}
.chip__label { font-size: 13.5px; font-weight: 700; color: var(--ink); }

/* ===== Benefit strip ===================================================== */
.benefits {
  padding-top: 14px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid rgba(42, 36, 31, 0.08);
  border-radius: 16px;
  padding: 18px 20px;
}
.benefit__icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--sand-soft);
  display: flex; align-items: center; justify-content: center;
  gap: 3px;
}
.benefit__icon .bar { width: 11px; height: 20px; border-radius: 5px; background: var(--clay); }
.benefit__icon .dot { width: 8px; height: 8px; border-radius: 50%; }
.benefit__title { font-size: 15px; font-weight: 800; }
.benefit__sub { font-size: 13px; color: var(--muted-soft); }

/* ===== Section bands ===================================================== */
.band { width: 100%; }
.band--sand { background: var(--sand); }
.band--cream { background: var(--cream); }
.band--ink { background: var(--ink); }

.section-head {
  text-align: center;
  max-width: 34em;
  margin: 0 auto 46px;
}
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

/* Waitlist motivation cards */
.pad-block { padding-top: 72px; padding-bottom: 78px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.motiv {
  background: var(--paper);
  border: 1px solid rgba(42, 36, 31, 0.08);
  border-radius: 20px;
  padding: 38px 32px;
}
.motiv__num {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--clay);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-family: 'Newsreader', serif;
  font-size: 21px;
  color: var(--clay);
}
.motiv__title {
  font-family: 'Newsreader', serif;
  font-size: 26px;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 12px;
}
.motiv__body { font-size: 15.5px; line-height: 1.6; color: var(--muted); }

/* ===== Herkenbaar (recognition list) ==================================== */
.recognise { max-width: 760px; margin: 0 auto; padding-top: 78px; padding-bottom: 80px; }
.recognise__head { text-align: center; margin-bottom: 40px; }
.recognise__head .eyebrow { display: block; margin-bottom: 16px; }
.recognise__head h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.recognise__list { display: flex; flex-direction: column; gap: 12px; }
.recognise__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper);
  border: 1px solid rgba(42, 36, 31, 0.08);
  border-radius: 16px;
  padding: 18px 22px;
}
.recognise__bullet {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--sand-soft);
  display: flex; align-items: center; justify-content: center;
}
.recognise__bullet span { width: 9px; height: 9px; border-radius: 50%; background: var(--clay); }
.recognise__item > span:last-child { font-size: 16.5px; color: #3a322b; }

/* ===== Product showcase ================================================= */
.showcase { padding-top: 80px; padding-bottom: 80px; }
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.showcase__card {
  background: var(--paper);
  border: 1px solid rgba(42, 36, 31, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px -40px rgba(42, 36, 31, 0.4);
}
.showcase__card img { width: 100%; height: auto; border-radius: 12px; }
.showcase h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.showcase__lead { font-size: 17px; line-height: 1.65; color: var(--muted); margin: 0 0 18px; }
.showcase__lead.last { margin-bottom: 28px; }
.eyebrow-row.mb18 { margin-bottom: 18px; }
.link-arrow { font-size: 17px; }

/* ===== Manifest triad =================================================== */
.manifest__intro {
  font-family: 'Newsreader', serif;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.32;
  margin: 0;
  text-wrap: balance;
}
.cards-3.manifest-cards { gap: 30px; }
.belief {
  background: var(--paper);
  border: 1px solid rgba(42, 36, 31, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
}
.belief__title { font-family: 'Newsreader', serif; font-size: 27px; margin-bottom: 12px; }
.belief__body { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ===== Final CTA (dark) ================================================= */
.cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}
.cta .eyebrow { display: block; color: var(--clay-light); margin-bottom: 18px; }
.cta h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--cream);
  text-wrap: balance;
}
.cta__benefits-head { font-size: 16px; font-weight: 800; color: var(--cream); margin: 0 0 18px; }
.cta__benefits { display: flex; flex-direction: column; gap: 13px; }
.cta__benefit { display: flex; align-items: center; gap: 13px; }
.cta__check {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--clay);
  display: flex; align-items: center; justify-content: center;
}
.cta__benefit span:last-child { font-size: 16px; color: #e6dccf; }

.cta__card {
  background: var(--cream);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, 0.6);
}
.cta__card-title { font-size: 16px; font-weight: 800; margin-bottom: 14px; }
.cta__fineprint { margin-top: 13px; font-size: 12.5px; color: var(--muted-soft); }

/* ===== Footer =========================================================== */
.footer {
  width: 100%;
  background: var(--cream);
  border-top: 1px solid rgba(42, 36, 31, 0.08);
}
.footer__inner { padding-top: 54px; padding-bottom: 40px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer__brand .brand__name { font-size: 21px; }
.footer__desc { font-size: 14.5px; line-height: 1.6; color: var(--muted-soft); margin: 0; max-width: 26em; }
.footer__col-head {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-faint);
  margin-bottom: 14px;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 13px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid rgba(42, 36, 31, 0.10);
  border-radius: 999px;
  padding: 6px 12px;
}
.footer__bar {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(42, 36, 31, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 13px; color: var(--muted-faint); }
.footer__social { display: flex; gap: 18px; font-size: 13px; font-weight: 600; color: var(--muted); }
.footer__social span { cursor: pointer; }

/* ===== Micro-survey (na inschrijving) =================================== */
.survey__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 6px;
}
.survey__thanks { font-size: 15px; font-weight: 700; }
.survey__q { font-size: 14.5px; color: var(--muted); margin: 2px 0 14px; }

.survey__form { display: flex; flex-direction: column; gap: 9px; }

.survey__opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: var(--paper);
  border: 1px solid rgba(42, 36, 31, 0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.survey__opt:hover { border-color: var(--clay); }
.survey__opt:has(input:checked) { border-color: var(--clay); background: #FBF2EA; }

.survey__opt input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.survey__opt-mark {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid #c9b9a8;
  position: relative;
  transition: border-color .15s ease;
}
.survey__opt input:checked + .survey__opt-mark { border-color: var(--clay); }
.survey__opt input:checked + .survey__opt-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--clay);
}
.survey__opt input:focus-visible + .survey__opt-mark {
  box-shadow: 0 0 0 3px rgba(192, 106, 71, 0.28);
}
.survey__opt-label { font-size: 15px; color: #3a322b; }

.survey__other-input {
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(42, 36, 31, 0.16);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
}
.survey__other-input:focus { border-color: var(--clay); }

.survey__error { font-size: 13px; color: var(--clay-deep); font-weight: 600; }

.survey__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.btn-skip {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  border: none;
  padding: 14px 12px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-skip:hover { color: var(--ink); }

.hidden { display: none !important; }

/* ===== Responsive ======================================================= */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; }
  .hero__visual { min-height: 360px; order: -1; }
  .benefits { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .showcase__grid { grid-template-columns: 1fr; gap: 36px; }
  .cta { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .form-card { padding: 20px; }
}
