/* ============================================================
   Bloom & Reform — volledige site (nieuwe variant)
   Stijl overgenomen van de members-club site.
   Palet: #FCE2E6 pink · #540F1A bordeaux · #FFFBF4 cream · #2E1610 dark
   Type:  Italiana (display) · DM Sans (sans) · Caveat (script)
   ============================================================ */

:root {
  --pink:      #FCE2E6;
  --pink-deep: #F8C9D2;
  --bordeaux:  #540F1A;
  --bordeaux-deep: #3C0710;
  --cream:     #FFFBF4;
  --cream-warm:#F5ECDC;
  --dark:      #2E1610;
  --ink:       #2E1610;
  --ink-soft:  #6B4A45;
  --line:      rgba(84, 15, 26, 0.16);
  --white:     #ffffff;

  --display: 'Italiana', 'Times New Roman', serif;
  --sans:    'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --script:  'Caveat', cursive;

  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 30px 70px -30px rgba(46, 22, 16, 0.45);
  --shadow-sm: 0 12px 34px -18px rgba(46, 22, 16, 0.3);
  --container: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s, color .2s; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
.center { text-align: center; }

/* Typography ------------------------------------------------- */
.eyebrow {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--bordeaux); font-weight: 600; margin: 0 0 16px;
}
.eyebrow--light { color: var(--pink); opacity: .85; }
.h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 6vw, 84px); line-height: .98; letter-spacing: -.02em;
  margin: 0 0 20px; color: var(--bordeaux);
}
.h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(32px, 4.4vw, 60px); line-height: 1.02; letter-spacing: -.02em;
  margin: 0 0 20px; color: var(--bordeaux);
}
.h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1; margin: 0 0 12px; color: var(--bordeaux);
}
em { font-style: italic; }
.lede { font-size: 18px; line-height: 1.75; color: var(--ink-soft); max-width: 60ch; }
.script { font-family: var(--script); color: var(--bordeaux); }

/* Buttons ---------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 28px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn--primary { background: var(--bordeaux); color: var(--pink); border-color: var(--bordeaux); }
.btn--primary:hover { background: var(--bordeaux-deep); border-color: var(--bordeaux-deep); transform: translateY(-2px); }
.btn--light { background: var(--cream); color: var(--bordeaux); border-color: var(--cream); }
.btn--light:hover { background: var(--white); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--bordeaux); border-color: var(--bordeaux); }
.btn--outline:hover { background: var(--bordeaux); color: var(--pink); }
.btn--outline-light { background: transparent; color: var(--pink); border-color: rgba(252,226,230,.5); }
.btn--outline-light:hover { background: rgba(252,226,230,.12); border-color: var(--pink); }

/* Nav -------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 32px;
  background: rgba(255, 251, 244, .9);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 12px; color: var(--bordeaux); flex-shrink: 0; }
.nav__logo { height: 40px; width: auto; }
.nav__wordmark { font-family: var(--display); font-size: 22px; letter-spacing: .01em; color: var(--bordeaux); }
.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink);
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav__links a:hover { color: var(--bordeaux); }
.nav__links a[aria-current="page"] { color: var(--bordeaux); border-bottom-color: var(--bordeaux); }
.nav__right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.lang { display: inline-flex; gap: 4px; font-size: 12px; font-weight: 600; letter-spacing: .06em; }
.lang button { background: none; border: none; cursor: pointer; color: var(--ink-soft); padding: 2px 4px; font: inherit; }
.lang button[aria-pressed="true"] { color: var(--bordeaux); text-decoration: underline; text-underline-offset: 3px; }
.nav__login { }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { display:block; width: 24px; height: 2px; background: var(--bordeaux); margin: 5px 0; transition: .25s; }

@media (max-width: 980px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px 32px 20px; transform: translateY(-120%); visibility: hidden;
    transition: transform .3s var(--ease), visibility .3s;
  }
  .nav__links.is-open { transform: translateY(0); visibility: visible; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__toggle { display: block; }
  .nav__wordmark { display: none; }
}

/* Page hero -------------------------------------------------- */
.hero {
  position: relative; min-height: 74vh; display: flex; align-items: center;
  padding: 90px 32px; overflow: hidden; color: var(--pink);
}
.hero__media { position: absolute; inset: 0; z-index: 1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__veil { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(46,22,16,.45), rgba(46,22,16,.8)), radial-gradient(ellipse 70% 60% at 40% 40%, rgba(84,15,26,.4), transparent 70%); }
.hero__inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; width: 100%; }
.hero__title { font-family: var(--display); font-weight: 400; font-size: clamp(44px, 8vw, 108px); line-height: .95; letter-spacing: -.03em; color: var(--pink); margin: 0 0 20px; }
.hero__sub { font-size: clamp(16px, 1.4vw, 20px); color: var(--pink); opacity: .92; max-width: 46ch; margin: 0 0 32px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page header (compact, bordeaux) ---------------------------- */
.pagehead {
  background: radial-gradient(ellipse 70% 60% at 80% 10%, rgba(122,40,50,.6), transparent 70%), var(--bordeaux);
  color: var(--pink); padding: clamp(64px, 8vw, 96px) 0 clamp(34px, 4.5vw, 56px); text-align: center;
}
.pagehead .eyebrow { color: var(--pink); opacity: .8; margin-bottom: 12px; }
.pagehead__title { font-family: var(--display); font-size: clamp(32px, 4.6vw, 58px); line-height: 1.02; letter-spacing: -.02em; margin: 6px 0 0; color: var(--pink); }
.pagehead__sub { margin: 16px auto 0; max-width: 56ch; color: var(--pink); opacity: .85; font-size: 16px; }

/* Sections --------------------------------------------------- */
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section--warm { background: var(--cream-warm); }
.section--dark { background: var(--dark); color: var(--pink); }
.section--dark .h2, .section--dark .h3 { color: var(--pink); }
.section--dark .lede { color: rgba(252,226,230,.8); }
.section--pink { background: var(--pink); color: var(--ink); }
.section--pink .h2, .section--pink .h3 { color: var(--bordeaux); }
.section--pink .lede { color: var(--ink-soft); }
.section--pink code { background: rgba(84,15,26,.1); color: var(--bordeaux); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.two-col--reverse .two-col__a { order: 2; }
@media (max-width: 900px){ .two-col { grid-template-columns: 1fr; gap: 40px; } .two-col--reverse .two-col__a { order: 0; } }

.imgcard { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.imgcard img { width: 100%; height: 100%; object-fit: cover; }

/* What to expect list --------------------------------------- */
.expect { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px; margin-top: 20px; }
@media (max-width: 640px){ .expect { grid-template-columns: 1fr; } }
.expect__item h4 { font-family: var(--sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--bordeaux); margin: 0 0 6px; }
.expect__item p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

/* Class styles ---------------------------------------------- */
.classes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 820px){ .classes { grid-template-columns: 1fr; } }
.class-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.class-card__img { aspect-ratio: 16/10; overflow: hidden; }
.class-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.class-card:hover .class-card__img img { transform: scale(1.05); }
.class-card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.class-card__body p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.class-card__meta { margin-top: auto; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--bordeaux); opacity: .8; }

/* Lesson (soorten lessen) text cards — no photos yet */
.lessons { columns: 2; column-gap: 24px; }
@media (max-width: 760px){ .lessons { columns: 1; } }
.lesson-card {
  break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid;
  margin: 0 0 24px; background: var(--white); border: 1px solid var(--line);
  border-top: 3px solid var(--bordeaux); border-radius: var(--radius);
  padding: 28px 28px 24px; box-shadow: var(--shadow-sm);
}
.lesson-card__name { font-family: var(--display); font-size: 26px; color: var(--bordeaux); margin: 0 0 4px; line-height: 1.1; }
.lesson-card__tag { font-family: var(--display); font-style: italic; font-size: 17px; color: var(--bordeaux); opacity: .7; margin: 0 0 12px; }
.lesson-card__desc { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 14px; }
.lesson-card__for { font-size: 14px; color: var(--ink); line-height: 1.55; margin: 0; padding-top: 14px; border-top: 1px solid var(--line); }
.lesson-card__for span { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bordeaux); font-weight: 600; margin-bottom: 4px; }

/* CTA banner ------------------------------------------------- */
.banner { position: relative; min-height: 44vh; display: grid; place-items: center; text-align: center; color: var(--pink); overflow: hidden; padding: 80px 32px; }
.banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.banner__veil { position: absolute; inset: 0; background: rgba(46,22,16,.5); z-index: 2; }
.banner__inner { position: relative; z-index: 3; }
.banner__title { font-family: var(--display); font-size: clamp(40px, 6vw, 76px); color: var(--pink); margin: 0 0 24px; line-height: 1; }

/* Pricing --------------------------------------------------- */
.pricing-group + .pricing-group { margin-top: 60px; }
.pricing-group__label { text-align: center; margin: 0 0 30px; }
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1000px){ .pricing { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .pricing { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 24px 28px; text-align: center; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card__name { font-family: var(--display); font-size: 22px; color: var(--bordeaux); }
.price-card__amount { font-family: var(--display); font-size: 48px; line-height: 1; color: var(--bordeaux); }
.price-card__amount sup { font-size: .4em; vertical-align: super; opacity: .7; }
.price-card__per { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: -6px; }
.price-card__desc { font-size: 14px; color: var(--ink-soft); line-height: 1.5; min-height: 42px; }
.price-card .btn { width: 100%; }
.price-card__note { font-size: 12px; color: var(--ink-soft); opacity: .8; border-top: 1px solid var(--line); padding-top: 14px; margin-top: auto; }

/* Policy cards ---------------------------------------------- */
.policies { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px){ .policies { grid-template-columns: 1fr; } }
.policy { background: var(--white); border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow-sm); }
.policy__num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--pink); color: var(--bordeaux); font-family: var(--display); font-size: 20px; margin-bottom: 14px; }
.policy h3 { margin: 0 0 12px; }
.policy p { color: var(--ink-soft); font-size: 15px; margin: 0 0 12px; }

/* Download app ---------------------------------------------- */
.appblock { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px){ .appblock { grid-template-columns: 1fr; gap: 36px; } }
.appblock ol { padding-left: 20px; color: var(--ink-soft); line-height: 1.7; }
.appblock code { background: var(--cream-warm); padding: 2px 8px; border-radius: 6px; font-weight: 600; color: var(--bordeaux); }

/* Giftcards ------------------------------------------------- */
.gifts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px){ .gifts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .gifts { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }
.gift {
  border-radius: var(--radius); padding: 34px 24px; text-align: center;
  background: linear-gradient(160deg, var(--bordeaux), var(--bordeaux-deep)); color: var(--pink);
  display: flex; flex-direction: column; gap: 18px; box-shadow: var(--shadow-sm);
}
.gift__mark { font-family: var(--display); font-style: italic; font-size: 20px; opacity: .8; }
.gift__amount { font-family: var(--display); font-size: 44px; }
.gift .btn { width: 100%; }
.gift__note { font-size: 11px; opacity: .7; line-height: 1.5; }

/* FAQ -------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 40px 24px 0; position: relative; font-family: var(--display); font-size: clamp(20px, 2.2vw, 26px);
  color: var(--bordeaux); }
.faq__q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 28px; color: var(--bordeaux); transition: transform .25s; }
.faq__item.is-open .faq__q::after { content: "–"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a-inner { padding: 0 0 24px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.faq__a-inner ul { margin: 8px 0 0; padding-left: 20px; }
.faq__a-inner li { margin-bottom: 6px; }

/* Contact ---------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-item { margin-bottom: 26px; }
.contact-item .k { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--bordeaux); opacity: .6; margin: 0 0 6px; }
.contact-item .v { font-size: 18px; }
.contact-item .v a { border-bottom: 1px solid var(--line); }

/* Footer ----------------------------------------------------- */
.footer { background: var(--dark); color: var(--pink); padding: 80px 0 34px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(252,226,230,.14); }
@media (max-width: 900px){ .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px){ .footer__top { grid-template-columns: 1fr; } }
.footer__word { font-family: var(--display); font-size: clamp(34px, 4vw, 48px); color: var(--pink); }
.footer__tag { font-family: var(--display); font-style: italic; font-size: 18px; opacity: .8; margin-top: 10px; }
.footer__h { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; opacity: .55; margin: 0 0 14px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col a { font-size: 14px; opacity: .82; }
.footer__col a:hover { opacity: 1; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 26px; font-size: 12px; opacity: .65; }

/* Reveal ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; } }
