/* =============================================
   Aanbod pagina — styles
   ============================================= */

/* ══ HERO ══════════════════════════════════════ */
.aanbod-hero {
  background: #fff8f0;
  overflow: hidden;
}
.aanbod-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 88px 32px 0;
}
.aanbod-hero__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 64px;
}
.aanbod-hero h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(64px, 8vw, 96px);
  line-height: 1;
  color: #30241a;
  letter-spacing: -0.025em;
}
.aanbod-hero__body {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text);
  max-width: 480px;
  font-weight: 300;
}
.aanbod-hero__image {
  background: #f1e7d3;
  height: 720px;
  overflow: hidden;
}
.aanbod-hero__image img {
  width: 125%;
  height: 100%;
  object-fit: cover;
  margin-left: -12.5%;
}

/* ══ TRAJECTEN ═══════════════════════════════════ */
.aanbod-trajecten {
  background: #fdf3de;
  padding: 96px 32px;
}
.aanbod-trajecten__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.aanbod-trajecten__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aanbod-trajecten__heading h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  color: #30241a;
  line-height: 1;
}
.aanbod-trajecten__divider {
  width: 96px;
  height: 1px;
  background: #d1c4bc;
}
.aanbod-trajecten__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(209,196,188,.2);
  border: 1px solid rgba(209,196,188,.2);
}

/* ── Traject card ─────────────────────────────── */
.traject-card {
  background: var(--white);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
  min-height: 420px;
}
.traject-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.traject-card h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 30px;
  color: #30241a;
  line-height: 1.2;
}
.traject-card__duration {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #6d5e16;
  white-space: nowrap;
  padding-top: 4px;
}
.traject-card > p {
  font-size: 16px;
  line-height: 1.625;
  color: var(--text);
}
.traject-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.traject-card__list li {
  font-size: 14px;
  color: #201b0f;
  padding-left: 20px;
  position: relative;
}
.traject-card__list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 8px;
  color: #6d5e16;
  top: 4px;
}
.traject-card__price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(209,196,188,.3);
}
.traject-card__amount {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 24px;
  color: #30241a;
}
.traject-card__note {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
}

/* ══ COACHING ════════════════════════════════════ */
.aanbod-coaching {
  background: #fff8f0;
  overflow: hidden;
}
.aanbod-coaching__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.aanbod-coaching__text {
  padding: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.aanbod-coaching__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #6d5e16;
}
.aanbod-coaching h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 48px;
  color: #30241a;
  line-height: 1;
}
.aanbod-coaching__text > p {
  font-size: 18px;
  line-height: 1.625;
  color: var(--text);
  max-width: 480px;
}
.aanbod-coaching__quote {
  background: #fdf3de;
  border-left: 4px solid rgba(109,94,22,.2);
  padding: 32px 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}
.aanbod-coaching__quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  color: #30241a;
}
.aanbod-coaching__quote footer {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
}
.aanbod-coaching__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.aanbod-coaching__image {
  background: #f7edd8;
  overflow: hidden;
}
.aanbod-coaching__image img {
  width: 131%;
  height: 100%;
  object-fit: cover;
  margin-left: -15.5%;
}

/* ══ TEAMS ════════════════════════════════════════ */
.aanbod-teams {
  background: #fdf3de;
  padding: 96px 32px;
}
.aanbod-teams__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.aanbod-teams__image {
  aspect-ratio: 1;
  overflow: hidden;
}
.aanbod-teams__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aanbod-teams__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.aanbod-teams h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  color: #30241a;
  line-height: 1;
}
.aanbod-teams__text > p {
  font-size: 20px;
  line-height: 1.625;
  color: var(--text);
}
.aanbod-teams__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(209,196,188,.3);
  border-bottom: 1px solid rgba(209,196,188,.3);
}
.aanbod-teams__feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aanbod-teams__feature strong {
  font-size: 16px;
  font-weight: 700;
  color: #30241a;
  display: block;
}
.aanbod-teams__feature span {
  font-size: 14px;
  color: var(--text);
}

/* ══ WORKSHOPS ═══════════════════════════════════ */
.aanbod-workshops {
  background: #fff8f0;
  padding: 96px 32px;
}
.aanbod-workshops__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.aanbod-workshops__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.aanbod-workshops__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}
.aanbod-workshops h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  color: #30241a;
}
.aanbod-workshops__heading p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
.aanbod-workshops__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

/* ── Workshop item ────────────────────────────── */
.workshop-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.workshop-item__image {
  height: 210px;
  overflow: hidden;
  background: #f7edd8;
}
.workshop-item__image img {
  width: 100%;
  height: 177.79%;
  object-fit: cover;
  margin-top: -38.9%;
  filter: saturate(0) brightness(1.1);
}
.workshop-item h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 24px;
  color: #30241a;
}
.workshop-item p {
  font-size: 14px;
  line-height: 1.625;
  color: var(--text);
}

/* ── Workshop testimonial ─────────────────────── */
.workshop-testimonial {
  background: rgba(100,42,34,.05);
  border-top: 1px solid rgba(100,42,34,.1);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.workshop-testimonial__stars {
  font-size: 14px;
  color: #6d5e16;
  letter-spacing: 2px;
}
.workshop-testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.375;
  color: #30241a;
  margin: 0;
  padding: 0;
  border: none;
}
.workshop-testimonial footer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.workshop-testimonial__divider {
  display: block;
  width: 40px;
  height: 1px;
  background: #642a22;
}
.workshop-testimonial footer span:last-child {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #642a22;
}

/* ══ EVENTS ══════════════════════════════════════ */
.aanbod-events {
  background: #ece1cd;
  padding: 96px 32px;
}
.aanbod-events__inner {
  background: #fff8f0;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 96px;
}
.aanbod-events__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.aanbod-events h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 48px;
  color: #30241a;
  line-height: 1;
}
.aanbod-events__content p {
  font-size: 18px;
  line-height: 1.625;
  color: var(--text);
}
.aanbod-events__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.aanbod-events__image {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #fdf3de;
}
.aanbod-events__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aanbod-events__badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #30241a;
  color: var(--white);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.aanbod-events__badge-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.2;
}
.aanbod-events__badge-sub {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: .7;
}

/* ══ TARIEVEN ════════════════════════════════════ */
.aanbod-tarieven {
  background: #fff8f0;
  padding: 96px 192px;
}
.aanbod-tarieven__inner {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.aanbod-tarieven h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  color: #30241a;
  text-align: center;
}
.aanbod-tarieven__table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(209,196,188,.3);
  border: 1px solid rgba(209,196,188,.3);
}
.tarief-row {
  background: var(--white);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.tarief-row__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tarief-row__info strong {
  font-size: 16px;
  font-weight: 700;
  color: #30241a;
  display: block;
}
.tarief-row__info span {
  font-size: 14px;
  color: var(--text);
}
.tarief-row__price {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 24px;
  color: #6d5e16;
  white-space: nowrap;
}
.aanbod-tarieven__note {
  font-size: 14px;
  color: var(--text);
  text-align: center;
  opacity: .7;
}

/* ══ FAQ ══════════════════════════════════════════ */
.aanbod-faq {
  background: #fdf3de;
  padding: 96px 256px;
}
.aanbod-faq__inner {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.aanbod-faq h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  color: #30241a;
  text-align: center;
}
.aanbod-faq__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq-item {
  border-bottom: 1px solid rgba(209,196,188,.5);
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #30241a;
}
.faq-item p {
  font-size: 16px;
  line-height: 1.625;
  color: var(--text);
}

/* ══ CLOSING ════════════════════════════════════ */
.aanbod-closing {
  background: #fff8f0;
  padding: 128px 192px;
}
.aanbod-closing__inner {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}
.aanbod-closing h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 72px);
  color: #30241a;
  line-height: 1;
}
.aanbod-closing__buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.aanbod-closing__sig {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  color: #6d5e16;
  letter-spacing: .1em;
  opacity: .6;
  margin-top: 16px;
}

/* ══ Nav active ══════════════════════════════════ */
.nav__links a.active { color: var(--coral); }

/* ══ Responsive ══════════════════════════════════ */
@media (max-width: 900px) {
  .aanbod-hero__inner,
  .aanbod-coaching__inner,
  .aanbod-teams__inner,
  .aanbod-events__inner { grid-template-columns: 1fr; }
  .aanbod-hero { padding-bottom: 0; }
  .aanbod-hero__inner { padding: 120px 24px 0; gap: 40px; }
  .aanbod-hero__text { padding-bottom: 0; }
  .aanbod-hero__image { height: 360px; }
  .aanbod-hero__image img { width: 100%; margin-left: 0; }
  .aanbod-trajecten { padding: 64px 24px; }
  .aanbod-trajecten__grid { grid-template-columns: 1fr; }
  .aanbod-coaching__text { padding: 48px 24px; }
  .aanbod-coaching__image { height: 360px; }
  .aanbod-coaching__image img { width: 100%; margin-left: 0; height: 100%; }
  .aanbod-teams { padding: 64px 24px; }
  .aanbod-workshops { padding: 64px 24px; }
  .aanbod-workshops__grid { grid-template-columns: 1fr; }
  .aanbod-events { padding: 64px 24px; }
  .aanbod-events__inner { padding: 48px 24px; gap: 32px; }
  .aanbod-tarieven { padding: 64px 24px; }
  .aanbod-faq { padding: 64px 24px; }
  .aanbod-closing { padding: 64px 24px; }
}
