@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --ink: #11131c;
  --ink-soft: #202332;
  --pink: #f30075;
  --pink-dark: #c9005f;
  --coral: #ff6247;
  --gold: #ffc857;
  --paper: #fffafc;
  --white: #ffffff;
  --muted: #737485;
  --line: rgba(17, 19, 28, .12);
  --shadow: 0 24px 80px rgba(17, 19, 28, .15);
  --radius: 22px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 400 1rem/1.65 "DM Sans", sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0 0 1rem; font-family: "Manrope", sans-serif; line-height: 1.08; letter-spacing: -.04em; }
h1 { font-size: clamp(3.25rem, 8vw, 7.4rem); }
h2 { font-size: clamp(2.15rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1rem; }
.eyebrow { display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1rem; color: var(--pink); font-size: .82rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { width: 2.4rem; height: 2px; background: currentColor; content: ""; }
.container { width: min(calc(100% - 2rem), var(--content)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
.section-dark { color: white; background: var(--ink); }
.section-pink { color: white; background: var(--pink); }
.lead { max-width: 740px; font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--muted); }
.section-dark .lead, .section-pink .lead { color: rgba(255,255,255,.78); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.announcement { padding: .7rem 1rem; color: white; background: var(--pink); text-align: center; font-size: .9rem; font-weight: 700; }
.announcement a { margin-left: .55rem; text-underline-offset: 3px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,250,252,.93); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.nav { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.logo { flex: 0 0 auto; width: 176px; height: 64px; overflow: hidden; }
.logo img { width: 100%; height: 100%; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { text-decoration: none; font-size: .93rem; font-weight: 700; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--pink); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 50%; color: white; background: var(--ink); font-size: 1.4rem; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: .65rem; padding: .85rem 1.25rem; border: 2px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 800; transition: .2s ease; cursor: pointer; }
.button-primary { color: white; background: var(--pink); box-shadow: 0 10px 30px rgba(243,0,117,.25); }
.button-primary:hover { background: var(--pink-dark); transform: translateY(-2px); }
.button-light { color: var(--ink); background: white; }
.button-ghost { border-color: currentColor; }
.button-small { min-height: 44px; padding: .55rem 1rem; }

.hero { position: relative; min-height: 760px; display: grid; align-items: end; overflow: hidden; color: white; background: var(--ink); }
.hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,18,.95) 0%, rgba(10,10,18,.64) 42%, rgba(10,10,18,.12) 75%), url("assets/hero-open-avond.jpeg") center/cover; content: ""; }
.hero::after { position: absolute; right: -8vw; bottom: -22vw; width: 52vw; height: 52vw; border: 7vw solid rgba(243,0,117,.64); border-radius: 50%; content: ""; }
.hero-content { position: relative; z-index: 2; padding: clamp(5rem, 10vw, 9rem) 0 5rem; }
.hero h1 { max-width: 900px; text-transform: uppercase; }
.hero h1 span { color: var(--pink); }
.hero-copy { max-width: 630px; font-size: clamp(1.15rem, 2.2vw, 1.45rem); color: rgba(255,255,255,.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-note { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; margin-top: 3rem; color: rgba(255,255,255,.72); font-weight: 600; }
.hero-note strong { color: white; }

.stats { position: relative; z-index: 3; margin-top: -2.75rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.stat { padding: 2rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; margin-bottom: .2rem; font: 800 clamp(1.35rem, 3vw, 2rem)/1 "Manrope", sans-serif; color: var(--pink); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.image-card { position: relative; min-height: 560px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.image-card img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.image-card::after { position: absolute; inset: auto 1.4rem 1.4rem auto; width: 104px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--pink); content: "DANS\A MEE"; white-space: pre; text-align: center; font: 800 .86rem/1.2 "Manrope", sans-serif; letter-spacing: .1em; transform: rotate(8deg); }
.feature-list { display: grid; gap: 1rem; margin: 2rem 0; }
.feature { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--pink); font-weight: 800; }
.feature h3 { margin-bottom: .25rem; font-size: 1.12rem; }
.feature p { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.card { position: relative; min-height: 420px; display: flex; align-items: end; padding: 1.5rem; overflow: hidden; border-radius: var(--radius); color: white; background: var(--ink); }
.card::before { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(17,19,28,.93)); content: ""; }
.card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-content { position: relative; z-index: 2; }
.card h3 { font-size: 2rem; }
.card a { color: white; font-weight: 800; text-underline-offset: 4px; }
.card-flat { min-height: 0; display: block; color: var(--ink); background: white; border: 1px solid var(--line); }
.card-flat::before { display: none; }
.card-flat .card-content { color: var(--ink); }

.schedule { display: grid; grid-template-columns: .72fr 1.28fr; gap: 2rem; margin-top: 2.5rem; }
.date-panel { padding: 2rem; border-radius: var(--radius); color: white; background: var(--pink); }
.date-panel .big-date { display: block; font: 800 clamp(4.5rem, 9vw, 7rem)/.9 "Manrope", sans-serif; }
.date-panel .month { display: block; margin-top: .75rem; font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.timetable { overflow: hidden; border-radius: var(--radius); background: var(--ink-soft); }
.schedule-day { display: grid; grid-template-columns: 130px 1fr; padding: 1.35rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.schedule-day:last-child { border-bottom: 0; }
.schedule-day strong { color: var(--gold); }
.schedule-day span { color: rgba(255,255,255,.8); }

.quote { max-width: 920px; margin-inline: auto; text-align: center; }
.quote blockquote { margin: 0; font: 700 clamp(1.65rem, 4vw, 3.25rem)/1.25 "Manrope", sans-serif; letter-spacing: -.03em; }
.quote cite { display: block; margin-top: 1.5rem; color: var(--pink); font-style: normal; font-weight: 800; }

.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius); color: white; background: linear-gradient(120deg, var(--pink), #9e0050); }
.cta-band h2 { max-width: 760px; margin: 0; font-size: clamp(2rem, 4.8vw, 4rem); }

.page-hero { position: relative; padding: clamp(7rem, 14vw, 11rem) 0 5rem; overflow: hidden; color: white; background: var(--ink); }
.page-hero.has-image::before { position: absolute; inset: 0; opacity: .32; background: var(--hero-image) center/cover; content: ""; }
.page-hero::after { position: absolute; right: -8rem; top: -10rem; width: 27rem; height: 27rem; border: 5rem solid rgba(243,0,117,.55); border-radius: 50%; content: ""; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 960px; }
.page-hero p { max-width: 700px; color: rgba(255,255,255,.78); font-size: 1.25rem; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.sticky-card { position: sticky; top: 118px; padding: 1.6rem; border-radius: var(--radius); color: white; background: var(--ink); }
.sticky-card h3 { font-size: 1.55rem; }
.prose { max-width: 820px; }
.prose h2 { margin-top: 3.5rem; font-size: clamp(1.8rem, 4vw, 3rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; }
.prose ul { padding-left: 1.25rem; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.price-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.price-card.featured { color: white; background: var(--pink); transform: translateY(-8px); }
.price { display: block; margin: 1rem 0; font: 800 2.5rem/1 "Manrope", sans-serif; }

.form-shell { padding: clamp(1.4rem, 4vw, 2.5rem); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: .8rem 1rem; border: 1px solid #cbcbd3; border-radius: 12px; color: var(--ink); background: white; font: inherit; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(243,0,117,.2); border-color: var(--pink); }
.form-note { margin-top: 1rem; color: var(--muted); font-size: .9rem; }
.contact-cards { display: grid; gap: 1rem; }
.contact-card { padding: 1.4rem; border: 1px solid var(--line); border-radius: 18px; background: white; }
.contact-card strong { display: block; color: var(--pink); }
.embed { width: 100%; min-height: 740px; border: 0; border-radius: var(--radius); background: white; }

.footer { padding: 4rem 0 2rem; color: rgba(255,255,255,.72); background: #090a10; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
.footer-logo { width: 180px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer h3 { color: white; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.footer a { display: block; margin-bottom: .45rem; text-decoration: none; }
.footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; }

@media (max-width: 920px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: fixed; inset: 0 0 auto; top: 117px; display: none; padding: 1.25rem; flex-direction: column; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links .button { width: 100%; }
  .split, .content-grid, .schedule { grid-template-columns: 1fr; }
  .cards, .price-grid { grid-template-columns: 1fr 1fr; }
  .sticky-card { position: static; }
  .cta-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .announcement { font-size: .8rem; }
  .nav { min-height: 74px; }
  .logo { width: 142px; height: 54px; }
  .nav-links { top: 103px; }
  .hero { min-height: 690px; }
  .hero::before { background: linear-gradient(180deg, rgba(10,10,18,.35), rgba(10,10,18,.96) 72%), url("assets/hero-open-avond.jpeg") 58% center/cover; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .cards, .price-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .schedule-day { grid-template-columns: 1fr; gap: .35rem; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
