/* ============================================================
   H2G Theme — cta-groot.css
   Volvlak-accent CTA met gigantische gecentreerde H2 (vw-typografie).
   Twee varianten: --contact (12-koloms rij) en --simpel (gecentreerde pill).
   1-op-1 nabouw van de Lijndraad-designbron.
   ============================================================ */

.h2g-cta-groot {
  background: var(--color-black);
  color: var(--color-white);
  padding: clamp(72px, 9vw, 100px) var(--gutter) 60px;
  overflow-x: hidden;
}

/* ─── Eyebrow (alleen contact-variant) ───────────────────── */
.h2g-cta-groot__eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 16px;
}

/* ─── Gigantische gecentreerde kop ───────────────────────── */
.h2g-cta-groot__kop {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-white);
}

.h2g-cta-groot--contact .h2g-cta-groot__kop { font-size: clamp(40px, 12.5vw, 150px); }
.h2g-cta-groot--simpel  .h2g-cta-groot__kop { font-size: clamp(36px, 11vw, 132px); }

/* ─── Pill-knop (beide varianten) ────────────────────────── */
.h2g-cta-groot__pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--color-white);
  color: var(--color-black);
  text-decoration: none;
  padding: 18px 34px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.h2g-cta-groot__pill:hover { transform: scale(1.04); }

/* ─── Variant: contact — 12-koloms rij ───────────────────── */
.h2g-cta-groot__rij {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: end;
  padding-top: 64px;
}

.h2g-cta-groot__contact {
  grid-column: 1 / span 4;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  text-transform: uppercase;
}

.h2g-cta-groot__email {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
}

a.h2g-cta-groot__email:hover { text-decoration: underline; }

.h2g-cta-groot__rij .h2g-cta-groot__pill {
  grid-column: 5 / span 4;
  justify-self: center;
}

.h2g-cta-groot__merk {
  font-family: var(--font-body);
  font-size: 15px;
  text-transform: uppercase;
}

.h2g-cta-groot__rij .h2g-cta-groot__merk {
  grid-column: 9 / span 4;
  justify-self: end;
  text-align: right;
}

.h2g-cta-groot__merk-naam { font-weight: 700; }

/* ─── Variant: simpel — gecentreerde pill + merk-rij ─────── */
.h2g-cta-groot__pill-wrap {
  display: flex;
  justify-content: center;
  padding-top: 56px;
}

.h2g-cta-groot--simpel .h2g-cta-groot__merk {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 72px;
}

/* ─── Responsive (@760px stack — padding via var(--gutter)) ── */
@media (max-width: 760px) {
  .h2g-cta-groot__rij {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .h2g-cta-groot__rij .h2g-cta-groot__pill {
    justify-self: start;
    align-self: flex-start;
  }

  .h2g-cta-groot__rij .h2g-cta-groot__merk {
    justify-self: start;
    text-align: left;
  }
}
