/* 27 Moments design tokens */
:root {
  /* merkkleuren */
  --m27-paars: #835fa5;
  --m27-lila: #c2b1d7;
  --m27-creme: #f7f6f2;
  --m27-lichtgroen: #e3eaca;
  --m27-donkergroen: #5a6850;
  /* functionele kleuren */
  --m27-tekst: #2c2c2b;
  --m27-wit: #fbfbf9;
  /* typografie */
  --m27-font-titel: "Pink Sunset", "Cooper Black", Georgia, serif;
  --m27-font-tekst: "apparat", "apparat-light", "Apparat", "Avenir Next", "Avenir", "Segoe UI", system-ui, sans-serif;
  --m27-fs-h1: clamp(38px, 6vw, 50px);
  --m27-fs-h2: clamp(28px, 4vw, 40px);
  --m27-fs-h3: 24px;
  --m27-fs-body: 18px;
  --m27-fs-label: 13px;
  --m27-ls-titel: 1px;
  --m27-ls-label: 1.5px;
  /* vorm */
  --m27-radius-kaart: 24px;
  --m27-radius-groot: 48px;
  --m27-radius-pill: 999px;
  /* spacing */
  --m27-space-xs: 8px;
  --m27-space-s: 16px;
  --m27-space-m: 26px;
  --m27-space-l: 40px;
  --m27-space-xl: 64px;
}

/* 27 Moments component styles */
.m27 {
  font-family: var(--m27-font-tekst);
  font-weight: 300;
  font-size: var(--m27-fs-body);
  line-height: 1.55;
  color: var(--m27-tekst);
}

/* Button */
.m27-btn {
  display: inline-block;
  border-radius: var(--m27-radius-pill);
  padding: 13px 26px;
  font-family: var(--m27-font-tekst);
  font-size: var(--m27-fs-label);
  letter-spacing: var(--m27-ls-label);
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  line-height: 1.4;
}
.m27-btn--green { background: var(--m27-donkergroen); color: var(--m27-wit); }
.m27-btn--purple { background: var(--m27-paars); color: var(--m27-wit); }
.m27-btn--lilac { background: var(--m27-lila); color: var(--m27-tekst); }
.m27-btn--white { background: var(--m27-wit); color: var(--m27-paars); }
.m27-btn--outline-purple { background: transparent; color: var(--m27-paars); border-color: var(--m27-paars); }
.m27-btn--outline-white { background: transparent; color: var(--m27-wit); border-color: var(--m27-wit); }
.m27-btn--small { padding: 9px 18px; font-size: 11.5px; }
.m27-btn:focus-visible { outline: 3px solid var(--m27-lila); outline-offset: 2px; }

/* Tag */
.m27-tag {
  display: inline-block;
  border-radius: var(--m27-radius-pill);
  padding: 4px 14px;
  font-family: var(--m27-font-tekst);
  font-size: 11.5px;
  letter-spacing: var(--m27-ls-label);
  text-transform: uppercase;
  font-weight: 400;
}
.m27-tag--green { background: var(--m27-donkergroen); color: #fff; }
.m27-tag--lilac { background: var(--m27-lila); color: var(--m27-tekst); }
.m27-tag--lightgreen { background: var(--m27-lichtgroen); color: var(--m27-donkergroen); }
.m27-tag--outline { background: transparent; border: 1.5px solid var(--m27-paars); color: var(--m27-paars); }

/* Card */
.m27-card {
  border-radius: var(--m27-radius-kaart);
  padding: var(--m27-space-m);
  font-family: var(--m27-font-tekst);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.55;
}
.m27-card--white { background: #ffffff; color: var(--m27-tekst); box-shadow: 0 1px 0 rgba(44,44,43,.05); }
.m27-card--green { background: var(--m27-lichtgroen); color: var(--m27-tekst); }
.m27-card--dark { background: var(--m27-donkergroen); color: var(--m27-wit); }
.m27-card--purple { background: var(--m27-paars); color: var(--m27-wit); }
.m27-card--cream { background: var(--m27-creme); color: var(--m27-tekst); }
.m27-card__title {
  font-family: var(--m27-font-titel);
  font-weight: 700;
  letter-spacing: var(--m27-ls-titel);
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 8px;
  color: var(--m27-donkergroen);
}
.m27-card--dark .m27-card__title, .m27-card--purple .m27-card__title { color: var(--m27-wit); }
.m27-card > p { margin: 0; }
.m27-card > * + * { margin-top: 12px; }

/* SectionHeader */
.m27-section-header { font-family: var(--m27-font-tekst); }
.m27-section-header__eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--m27-paars);
  margin-bottom: 8px;
}
.m27-section-header__title {
  font-family: var(--m27-font-titel);
  font-weight: 700;
  letter-spacing: var(--m27-ls-titel);
  font-size: var(--m27-fs-h2);
  line-height: 1.2;
  color: var(--m27-donkergroen);
  margin: 0;
  text-wrap: balance;
}
.m27-section-header__intro {
  margin: 10px 0 0;
  max-width: 68ch;
  font-weight: 300;
}
.m27-section-header--light .m27-section-header__title { color: var(--m27-wit); }
.m27-section-header--light .m27-section-header__eyebrow { color: var(--m27-lila); }
.m27-section-header--light .m27-section-header__intro { color: #e6e9df; }

/* Steps */
.m27-steps { list-style: none; margin: 0; padding: 0; font-family: var(--m27-font-tekst); }
.m27-step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(44, 44, 43, 0.12);
}
.m27-step__number {
  font-family: var(--m27-font-titel);
  font-weight: 700;
  font-size: 40px;
  color: var(--m27-lila);
  line-height: 1;
}
.m27-step__title {
  margin: 4px 0 6px;
  font-size: 13.5px;
  letter-spacing: var(--m27-ls-label);
  text-transform: uppercase;
  color: var(--m27-paars);
  font-weight: 400;
}
.m27-step__body { margin: 0; max-width: 60ch; font-weight: 300; }

/* Form fields */
.m27-field { display: block; font-family: var(--m27-font-tekst); }
.m27-field__label {
  display: block;
  font-size: 12.5px;
  letter-spacing: var(--m27-ls-label);
  text-transform: uppercase;
  color: var(--m27-donkergroen);
  margin-bottom: 8px;
  font-weight: 400;
}
.m27-field__input, .m27-field__textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid rgba(44, 44, 43, 0.35);
  background: transparent;
  border-radius: 28px;
  padding: 14px 20px;
  font-family: inherit;
  font-weight: 300;
  font-size: 16px;
  color: var(--m27-tekst);
}
.m27-field__textarea { border-radius: 22px; min-height: 110px; resize: vertical; }
.m27-field__input:focus, .m27-field__textarea:focus { outline: none; border-color: var(--m27-paars); }
.m27-checkbox { display: flex; gap: 10px; align-items: flex-start; font-family: var(--m27-font-tekst); font-weight: 300; font-size: 15px; }
.m27-checkbox input { margin-top: 4px; accent-color: var(--m27-paars); }

/* Accordion */
.m27-accordion { border-top: 1px solid rgba(44, 44, 43, 0.15); font-family: var(--m27-font-tekst); }
.m27-accordion__item { border-bottom: 1px solid rgba(44, 44, 43, 0.15); }
.m27-accordion__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 4px;
  font-family: inherit;
  font-size: 14px;
  letter-spacing: var(--m27-ls-label);
  text-transform: uppercase;
  color: var(--m27-donkergroen);
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.m27-accordion__icon { color: var(--m27-paars); font-size: 18px; line-height: 1; }
.m27-accordion__answer { padding: 0 4px 20px; margin: 0; max-width: 70ch; font-weight: 300; }

/* AnnouncementBar */
.m27-announcement {
  background: var(--m27-donkergroen);
  color: var(--m27-wit);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--m27-font-tekst);
  font-size: 12.5px;
  letter-spacing: var(--m27-ls-label);
  text-transform: uppercase;
  font-weight: 400;
}

/* PhotoFrame */
.m27-photo { overflow: hidden; background: var(--m27-lichtgroen); }
.m27-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.m27-photo--rounded { border-radius: var(--m27-radius-groot); }
.m27-photo--card { border-radius: var(--m27-radius-kaart); }
.m27-photo--blob { border-radius: 46% 46% 42% 58% / 52% 44% 56% 44%; }
.m27-photo--arch { border-radius: 0 160px 160px 0; }

/* TeamCard */
.m27-team-card {
  background: #ffffff;
  border-radius: var(--m27-radius-kaart);
  padding: 18px;
  font-family: var(--m27-font-tekst);
  box-shadow: 0 1px 0 rgba(44,44,43,.05);
}
.m27-team-card__photo { border-radius: 16px; overflow: hidden; aspect-ratio: 16/11; background: var(--m27-lichtgroen); }
.m27-team-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.m27-team-card__name {
  margin: 14px 0 6px;
  font-size: 13px;
  letter-spacing: var(--m27-ls-label);
  text-transform: uppercase;
  color: var(--m27-donkergroen);
  font-weight: 400;
}
.m27-team-card__bio { margin: 0; font-weight: 300; font-size: 15.5px; }

/* WaveSection */
.m27-wave-section { position: relative; background: var(--m27-donkergroen); color: var(--m27-wit); font-family: var(--m27-font-tekst); font-weight: 300; }
.m27-wave-section__wave { display: block; width: 100%; height: 54px; }
.m27-wave-section__inner { padding: var(--m27-space-l) var(--m27-space-m) var(--m27-space-xl); }

/* LogoBadge */
.m27-logo-badge { display: inline-block; }

/* FlowerMark */
.m27-flower { display: inline-block; }
