/* Healthy Pleasure — landing
   Colour + type scale carried over 1:1 from the Claude Design artboard
   "Healthy Pleasure Landing.dc.html". */

:root {
  --ink:        #1A0B14;
  --cream:      #F7EDE4;
  --pink:       #E5326E;
  --pink-dark:  #c92259;
  --gold:       #E8C07A;
  --deep:       #8E1F4B;

  --line:       rgba(247, 237, 228, .12);
  --line-strong:rgba(247, 237, 228, .14);
  --surface:    rgba(247, 237, 228, .05);

  --pad-x:      clamp(24px, 5vw, 72px);
  --section-y:  clamp(72px, 9vw, 130px);
  --wrap:       1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Archivo, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cream); text-decoration: none; }
a:hover { color: var(--pink); }

h1, h2, p, figure, dl, dd { margin: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Resting state uses the clip pattern rather than a negative offset — a
   -9999px element widens the document and causes sideways scroll on mobile. */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link:focus {
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
  left: 12px;
  top: 12px;
  z-index: 10;
  background: var(--pink);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
}

/* ---------- shared primitives ---------- */

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

.stack { display: flex; flex-direction: column; }
.stack--20 { gap: 20px; }
.stack--24 { gap: 24px; }
.stack--40 { gap: 40px; }

.measure { max-width: 720px; }

.grid { display: grid; gap: 24px; }
.grid--320 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.gold { color: var(--gold); }
.pink { color: var(--pink); }

.eyebrow {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(247, 237, 228, .55);
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--dim  { letter-spacing: .25em; color: rgba(247, 237, 228, .5); }

.h2 {
  font-family: "Abril Fatface", Georgia, serif;
  font-weight: 400;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.1;
}

.prose {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(247, 237, 228, .78);
}

.note {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(247, 237, 228, .6);
}

.display {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 24px;
  color: var(--cream);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
}
.card--gold { border-color: rgba(232, 192, 122, .45); }

.btn {
  display: inline-block;
  border-radius: 99px;
  font-size: 15px;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn--primary {
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--pink);
  color: var(--cream);
  padding: 16px 32px;
}
.btn--primary:hover { background: var(--pink-dark); color: var(--cream); }

.btn--ghost {
  font-weight: 600;
  color: var(--cream);
  border: 1px solid rgba(247, 237, 228, .35);
  padding: 15px 28px;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--sm {
  align-self: flex-start;
  font-size: 14px;
  padding: 14px 26px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 24px;
  color: var(--cream);
}
.wordmark b { color: var(--pink); font-weight: inherit; }
.wordmark:hover { color: var(--cream); }
.wordmark--sm { font-size: 18px; }

/* Het clublogo staat op een dekkend zwart vlak. `screen` laat dat vlak
   wegvallen tegen de plum achtergrond (en tegen de hero-video), zodat alleen
   het goud overblijft. */
.wordmark__mark {
  width: 38px;
  height: 38px;
  mix-blend-mode: screen;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  /* Fallback wash so the hero still reads as designed before/without the video. */
  background:
    radial-gradient(120% 90% at 78% 30%, rgba(229, 50, 110, .38) 0%, rgba(26, 11, 20, 0) 62%),
    radial-gradient(80% 70% at 92% 62%, rgba(232, 192, 122, .20) 0%, rgba(26, 11, 20, 0) 60%),
    var(--ink);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  border: 0;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(26, 11, 20, .85) 0%,
    rgba(26, 11, 20, .5) 55%,
    rgba(26, 11, 20, .2) 100%);
}

.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(26, 11, 20, 0), var(--ink));
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 36px var(--pad-x) 88px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pill-18 {
  border: 1px solid rgba(247, 237, 228, .4);
  border-radius: 99px;
  padding: 6px 14px;
  white-space: nowrap;
}

.hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  max-width: 920px;
}

.ratio-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--pink);
}
.dot--gold {
  background: var(--gold);
  box-shadow: 0 0 14px rgba(232, 192, 122, .7);
}
.ratio-dots__label {
  margin-left: 10px;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(247, 237, 228, .65);
}

.hero__title {
  font-family: "Abril Fatface", Georgia, serif;
  font-weight: 400;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 1.04;
}
.hero__title span { color: var(--pink); }

.hero__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(247, 237, 228, .78);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- sections ---------- */

.section { padding: 0 var(--pad-x) var(--section-y); }
.section--split {
  padding-top: var(--section-y);
  display: flex;
  justify-content: center;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 5vw, 80px);
  max-width: var(--wrap);
  width: 100%;
  align-items: center;
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- ratio card ---------- */

.ratio-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(28px, 3vw, 44px);
}

.ratio-card__head {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(247, 237, 228, .55);
}

.ratio-bar {
  display: flex;
  height: 18px;
  border-radius: 99px;
  overflow: hidden;
}
.ratio-bar__nine { flex: 9; background: var(--deep); }
.ratio-bar__one  { flex: 1; background: var(--gold); box-shadow: 0 0 18px rgba(232, 192, 122, .6); }

.ratio-card__nums {
  display: flex;
  justify-content: space-between;
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 30px;
}

/* ---------- het glas (9:1 animatie) ---------- */

.glass-demo {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.glass-demo__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.toggle {
  display: inline-flex;
  align-self: flex-start;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  background: var(--surface);
}

.toggle__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 99px;
  padding: 11px 22px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(247, 237, 228, .65);
  background: transparent;
  transition: background-color .2s ease, color .2s ease;
}
.toggle__btn:hover { color: var(--cream); }
.toggle__btn.is-active { background: var(--pink); color: var(--cream); }

.legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  color: rgba(247, 237, 228, .78);
}
.legend__item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(6px);
}
.legend__item b {
  min-width: 74px;
  font-weight: 700;
  color: var(--cream);
}
.legend__item--sum {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--cream);
}
.legend__item--gold { color: var(--gold); }
.legend__item--gold b { color: var(--gold); }

.legend__swatch {
  flex: none;
  width: 14px;
  height: 14px;
  border-radius: 4px;
}
.legend__swatch--aloe { background: #8E1F4B; }
.legend__swatch--spa  { background: #D82A67; }
.legend__swatch--ijs  { background: rgba(247, 237, 228, .45); }
.legend__swatch--gold { background: var(--gold); box-shadow: 0 0 12px rgba(232, 192, 122, .55); }
.legend__swatch--none { background: transparent; }

.glass-demo__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(247, 237, 228, .6);
}

.glass-demo__stage { display: flex; justify-content: center; }

.glass {
  width: 100%;
  max-width: 320px;
  height: auto;
  overflow: visible;
}

.glass__body,
.glass__rim {
  fill: none;
  stroke: rgba(247, 237, 228, .4);
  stroke-width: 2.5;
  stroke-linejoin: round;
}
.glass__rim { stroke-width: 2; }

.glass__ticks line {
  stroke: rgba(247, 237, 228, .5);
  stroke-width: 1;
}

.glass__nums text {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: 19px;
  fill: rgba(247, 237, 228, .92);
  text-anchor: middle;
  opacity: 0;
}
.glass__num--gold { fill: var(--ink) !important; }

.glass__ice rect { fill: rgba(247, 237, 228, .38); }
.glass__lime-peel  { fill: #4E7A1E; }
.glass__lime-flesh { fill: #9BC53D; }
.glass__ice, .glass__lime { opacity: 0; }

/* De vulling zit onder de bodem geparkeerd en stijgt bij het inlopen. */
.glass__liquid {
  transform: translateY(340px);
  transition: transform 1.7s cubic-bezier(.22, .61, .36, 1);
}

.glass__shot {
  transform: translateY(-46px);
  opacity: 0;
  transition: transform .55s cubic-bezier(.34, 1.4, .64, 1), opacity .35s ease;
}

.glass__ice, .glass__lime,
.glass__ticks, .glass__nums text, .legend__item {
  transition: opacity .5s ease, transform .5s ease;
}
.glass__ticks { opacity: 0; transition: opacity .6s ease; }

/* --- ingeschonken --- */
.glass-demo.is-poured .glass__liquid { transform: none; }
.glass-demo.is-poured .glass__ticks  { opacity: 1; transition-delay: 1.2s; }
.glass-demo.is-poured .glass__ice,
.glass-demo.is-poured .glass__lime   { opacity: 1; transition-delay: 1.35s; }

.glass-demo.is-poured .glass__nums text { opacity: 1; }
.glass-demo.is-poured .glass__nums text:nth-child(1) { transition-delay: .35s; }
.glass-demo.is-poured .glass__nums text:nth-child(2) { transition-delay: .48s; }
.glass-demo.is-poured .glass__nums text:nth-child(3) { transition-delay: .61s; }
.glass-demo.is-poured .glass__nums text:nth-child(4) { transition-delay: .74s; }
.glass-demo.is-poured .glass__nums text:nth-child(5) { transition-delay: .87s; }
.glass-demo.is-poured .glass__nums text:nth-child(6) { transition-delay: 1s; }
.glass-demo.is-poured .glass__nums text:nth-child(7) { transition-delay: 1.13s; }
.glass-demo.is-poured .glass__nums text:nth-child(8) { transition-delay: 1.26s; }
.glass-demo.is-poured .glass__nums text:nth-child(9) { transition-delay: 1.39s; }

.glass-demo.is-poured .legend__item { opacity: 1; transform: none; }
.glass-demo.is-poured .legend__item:nth-child(1) { transition-delay: .5s; }
.glass-demo.is-poured .legend__item:nth-child(2) { transition-delay: .75s; }
.glass-demo.is-poured .legend__item:nth-child(3) { transition-delay: 1s; }
.glass-demo.is-poured .legend__item:nth-child(4) { transition-delay: 1.25s; }
.glass-demo.is-poured .legend__item:nth-child(5) { transition-delay: 1.5s; }

/* --- de tiende: alleen in 9:1 --- */
.glass-demo[data-mode="91"].is-poured .glass__shot {
  transform: none;
  opacity: 1;
  transition-delay: 1.75s;
}
.glass-demo[data-mode="91"].is-poured .glass__num--gold {
  opacity: 1;
  transition-delay: 1.95s;
}

/* Moet de generieke `.is-poured .glass__nums text`-regel overtroeven. */
.glass-demo[data-mode="00"].is-poured .glass__num--gold { opacity: 0; }
.glass-demo[data-mode="00"] .legend__item--gold {
  opacity: .25;
  text-decoration: line-through;
}

.glass-demo[data-mode="91"] [data-note-00],
.glass-demo[data-mode="00"] [data-note-91] { display: none; }

@media (max-width: 780px) {
  .glass-demo { grid-template-columns: 1fr; }
  .glass-demo__stage { order: -1; }
  .glass { max-width: 240px; }
}

/* ---------- de move (9:16 campagnevideo) ---------- */

.move {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.move__player {
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(232, 192, 122, .45);
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.move__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 17px;
}
.steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
}
.steps__last { border-bottom: 0; padding-bottom: 0; color: var(--gold); }

.steps__n {
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--deep);
  font-size: 13px;
  font-weight: 700;
}
.steps__last .steps__n {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 14px rgba(232, 192, 122, .5);
}

@media (max-width: 780px) {
  .move { grid-template-columns: 1fr; }
  .move__player { max-width: 340px; margin-inline: auto; }
}

/* ---------- recipe cards ---------- */

.card--recipe {
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tag {
  align-self: flex-start;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--cream);
  padding: 7px 14px;
  border-radius: 99px;
}
.tag--deep { background: var(--deep); }
.tag--pink { background: var(--pink); }

.recipe {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 17px;
}
.recipe__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
}
.recipe__row--last { border-bottom: 0; padding-bottom: 0; }
.recipe__row dd { opacity: .5; white-space: nowrap; }
.recipe__row--gold { color: var(--gold); }
.recipe__row--gold dd { opacity: 1; }

.card__foot {
  margin: auto 0 0;
  font-size: 14px;
  color: rgba(247, 237, 228, .6);
}

.closer {
  text-align: center;
  padding-top: 8px;
  font-size: 16px;
  color: rgba(247, 237, 228, .7);
}

/* ---------- community ---------- */

.card--soft {
  padding: clamp(24px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.swap { display: flex; flex-direction: column; gap: 6px; }
.swap__from {
  font-size: 17px;
  color: rgba(247, 237, 228, .5);
  text-decoration: line-through;
}
.swap__to {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 24px;
  color: var(--cream);
}

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

.footer {
  border-top: 1px solid var(--line);
  padding: 40px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__logo {
  width: 52px;
  height: 52px;
  mix-blend-mode: screen;
}

.footer__warn {
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(247, 237, 228, .5);
}
.footer__tag {
  font-size: 13px;
  color: rgba(247, 237, 228, .4);
}

/* ---------- narrow screens ---------- */

/* The artboard keeps the header on one line, which overflows below ~620px.
   Let it wrap onto a second row instead of losing the links. */
@media (max-width: 620px) {
  .nav { flex-wrap: wrap; gap: 16px; }
  .nav__links { gap: 18px; font-size: 12px; }
  .wordmark { font-size: 20px; }
  .hero__inner { padding-bottom: 64px; }
}

/* ---------- motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__video { display: none; }
  .btn { transition: none; }

  /* Het glas toont meteen de eindstand in plaats van in te schenken. */
  .glass__liquid,
  .glass__shot,
  .glass__ice,
  .glass__lime,
  .glass__ticks,
  .glass__nums text,
  .legend__item {
    transition: none !important;
    transition-delay: 0s !important;
  }
}
