/* Friday Boost — editorial / broadcast feel, photo-led */

:root {
  --bg: #121a22;
  --bg-elevated: #18232d;
  --surface: #1f2a35;
  --surface-glass: rgba(26, 36, 46, 0.65);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f3f1ee;
  --muted: #a7adb8;
  --accent: #8eb8c9;
  --accent-subtle: rgba(142, 184, 201, 0.2);
  --accent-line: rgba(180, 210, 225, 0.45);
  --link-hover: #b8d8e8;
  --tint-hero: rgba(30, 90, 110, 0.14);
  --radius-card: 18px;
  --radius-lg: 24px;
  --focus: rgba(158, 180, 200, 0.55);
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-body);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(60, 130, 150, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 50%, rgba(90, 70, 120, 0.06), transparent);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--link-hover);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 26, 34, 0.78);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: block;
  line-height: 0;
}
.brand-logo img {
  height: 46px;
  width: auto;
  max-width: min(320px, 68vw);
  object-fit: contain;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
  justify-content: flex-end;
}

.site-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(243, 241, 238, 0.88);
  text-decoration: none;
  padding: 6px 0;
  letter-spacing: 0.01em;
}
.site-nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.site-nav-mobile {
  display: none;
  width: 100%;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .site-nav-desktop {
    display: none !important;
  }
  .site-nav-mobile {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  body.nav-open .site-nav-mobile {
    max-height: 420px;
  }
  body.nav-open .site-nav-mobile ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 20px;
  }
}

.shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section--tight {
  padding-bottom: clamp(40px, 7vw, 72px);
}

.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  font-weight: 700;
}

h1.hero-title {
  font-size: clamp(1.5rem, 4.2vw, 2.35rem);
  line-height: 1.28;
  font-weight: 700;
  margin: 0 0 20px;
  max-width: 22em;
  text-shadow: 0 2px 36px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.6);
}

h2.section-title {
  font-size: clamp(1.55rem, 2.85vw, 2.35rem);
  margin: 0 0 12px;
}

h3.card-title {
  font-size: 1.2rem;
  margin: 0 0 8px;
  font-weight: 700;
}

.lead {
  font-size: 1.085rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  line-height: 1.5;
  color: rgba(243, 241, 238, 0.95);
  margin: 0 0 10px;
  max-width: 36em;
  font-weight: 500;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.hero-sub--muted {
  color: rgba(230, 235, 240, 0.88);
  font-weight: 400;
  margin-bottom: 0;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

/* Hero — photo layers */
.hero-shell {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg__carousel {
  position: absolute;
  inset: 0;
}

.hero-bg__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.hero-bg__slide--active {
  opacity: 1;
  z-index: 1;
}

.hero-bg__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Minimale donkerte zodat de foto haar kleuren houdt; tekst leesbaar via text-shadow op hero-content */
  background:
    linear-gradient(105deg, rgba(12, 18, 24, 0.14) 0%, rgba(12, 18, 24, 0.04) 50%, rgba(12, 18, 24, 0.12) 100%),
    radial-gradient(ellipse 90% 70% at 65% 15%, transparent, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(100px, 14vh, 140px) 20px clamp(56px, 8vh, 96px);
  text-align: left;
}

.hero-logo-wrap {
  margin-bottom: clamp(20px, 4vw, 32px);
}
.hero-logo-wrap img {
  max-width: min(400px, 78vw);
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.45));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 40px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(180deg, #3a4554 0%, #2a323e 100%);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.btn-primary:hover {
  color: #fff;
  background: linear-gradient(180deg, #455264 0%, #323a48 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--accent-line);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

/* Figuur met uitlijning afgeronde rand (geen scroll-effect) */
.parallax-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.parallax-bg {
  background-size: cover;
  background-position: center;
}

/* Foto-band — statische foto op de sectie */
.why-band,
.formats-band {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: min(88vh, 900px);
}

.why-band__backdrop,
.formats-band__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.why-band__bg,
.formats-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
}

.why-band__bg {
  background-position: center 35%;
}

.formats-band__bg {
  background-position: center 42%;
}

.why-band__scrim,
.formats-band__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 20, 28, 0.08) 0%, rgba(12, 20, 28, 0.04) 50%, rgba(12, 20, 28, 0.06) 100%),
    linear-gradient(to top, rgba(14, 22, 30, 0.1), transparent 55%);
}

.why-band__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: min(88vh, 900px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(48px, 10vw, 100px) 20px clamp(72px, 14vh, 140px);
}

.formats-band__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: min(88vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 9vw, 112px) 20px clamp(72px, 14vh, 120px);
}

.formats-band__content > .section-label,
.formats-band__content > .section-title {
  text-shadow:
    0 1px 20px rgba(0, 0, 0, 0.55),
    0 0 1px rgba(0, 0, 0, 0.4);
}

.why-band__panel {
  max-width: 36.5rem;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(18, 28, 38, 0.38);
  backdrop-filter: blur(18px) saturate(1.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

.why-band__panel .section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.why-band__eyebrow {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
}

.why-band__panel p {
  margin: 0 0 1rem;
  color: rgba(243, 241, 238, 0.92);
}

.why-band__solution-lead {
  margin-top: 1.25rem !important;
  margin-bottom: 0.85rem !important;
  font-size: 1.05rem;
}

.why-band__list {
  margin: 0;
  padding: 0 0 0 1.35rem;
  color: var(--muted);
}

.why-band__list li {
  margin-bottom: 0.9rem;
  padding-left: 0.35rem;
  line-height: 1.55;
}

.why-band__list li:last-child {
  margin-bottom: 0;
}

/* Compleet — licht blok, basispakket */
.compleet-block {
  background: linear-gradient(165deg, #e5eef6 0%, #d9e6f2 40%, #cad8e8 100%);
  color: #1a222c;
  padding: clamp(48px, 7vw, 88px) 0;
  border-block: 1px solid rgba(30, 60, 80, 0.1);
}

.compleet-block a {
  color: #15607a;
  font-weight: 500;
}

.compleet-block a:hover {
  color: #0d4658;
}

.compleet-bubble {
  display: inline-block;
  max-width: min(100%, 38rem);
  margin: 0 0 clamp(22px, 3vw, 32px);
  padding: clamp(14px, 2.5vw, 20px) clamp(18px, 3vw, 26px);
  background: linear-gradient(140deg, #2a8599 0%, #247288 55%, #1f6575 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.08rem, 2.6vw, 1.42rem);
  line-height: 1.35;
  border-radius: 6px 22px 22px 22px;
  box-shadow: 0 10px 32px rgba(30, 110, 130, 0.28);
}

.compleet-grid {
  display: grid;
  grid-template-columns: 1fr min(340px, 34%);
  gap: 16px 22px;
  align-items: stretch;
}

.compleet-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compleet-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(30, 65, 90, 0.12);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  box-shadow: 0 4px 18px rgba(25, 50, 75, 0.08);
}

.compleet-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.compleet-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #2c3540;
}

.compleet-col .compleet-card:nth-child(1) h3 {
  color: #c5532f;
}

.compleet-col .compleet-card:nth-child(2) h3 {
  color: #8b3e4a;
}

.compleet-col .compleet-card:nth-child(3) h3 {
  color: #2f4f6f;
}

.compleet-col .compleet-card:nth-child(4) h3 {
  color: #7a3e6b;
}

.compleet-col .compleet-card:nth-child(5) h3 {
  color: #1f7a86;
}

.compleet-aside .compleet-card h3 {
  color: #2a4a68;
}

.compleet-aside .compleet-card {
  height: 100%;
  min-height: 100%;
}

@media (max-width: 900px) {
  .compleet-grid {
    grid-template-columns: 1fr;
  }
}

/* Keuzemenu — full-width achtergrond + compact stappenplan */
.flow-section {
  position: relative;
  overflow: hidden;
}

.flow-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0.88;
}

.flow-section__inner {
  position: relative;
  z-index: 1;
}

/* Smalle glasplaat voor kop + stappenlijst */
.flow-section__panel {
  box-sizing: border-box;
  width: 100%;
  max-width: min(36rem, calc(100vw - 40px));
  margin-left: auto;
  margin-right: auto;
  background: rgba(10, 15, 22, 0.58);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  padding: clamp(14px, 2vw, 22px) clamp(12px, 1.6vw, 18px) clamp(16px, 2.2vw, 24px);
  margin-top: 0;
}

@media (max-width: 640px) {
  .flow-section__panel {
    max-width: 100%;
  }
}

.flow-intro {
  text-align: center;
  max-width: 46ch;
  margin: 0 auto 1.25rem;
  color: rgba(235, 240, 245, 0.82);
  font-size: 1rem;
}

.flow-plan {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.flow-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0 16px;
  align-items: start;
  position: relative;
  padding-bottom: 0;
  margin-bottom: 1rem;
}

.flow-step:last-child {
  margin-bottom: 0;
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: calc(-1rem + 10px);
  width: 2px;
  background: linear-gradient(180deg, var(--accent-line), rgba(255, 255, 255, 0.06));
  border-radius: 2px;
}

.flow-marker {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.93rem;
  color: var(--text);
  background: linear-gradient(145deg, #3f5c72 0%, #2d4558 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.flow-marker--sub {
  width: 34px;
  height: 34px;
  font-size: 0.72rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #527090 0%, #3d5570 100%);
}

.flow-step__body h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--text);
}

.flow-step__body > p:last-child {
  margin-bottom: 0;
}

.flow-step__body p {
  margin: 0 0 6px;
  color: rgba(195, 205, 215, 0.95);
  font-size: 0.96rem;
  line-height: 1.5;
}

.flow-step__body ul {
  margin: 0;
  padding-left: 1.15em;
  color: rgba(195, 205, 215, 0.95);
  font-size: 0.93rem;
  line-height: 1.45;
}

.flow-step__body li {
  margin-bottom: 2px;
}

.flow-step__body li:last-child {
  margin-bottom: 0;
}

.flow-sub {
  margin-top: 10px;
  padding: 11px 14px 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(180, 210, 225, 0.35);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 6px 12px;
  align-items: start;
}

.flow-sub__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin: 0 0 4px;
}

@media (max-width: 520px) {
  .flow-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0 12px;
  }
  .flow-step:not(:last-child)::after {
    left: 18px;
    top: 40px;
  }
  .flow-marker {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
}

/* À la carte — één menubg achter alle kolommen; tekst donker op perkament */
.alacarte-section {
  position: relative;
}

.alacarte-section__inner {
  position: relative;
  padding: clamp(64px, 9vw, 112px) 0 clamp(72px, 10vw, 120px);
}

.alacarte-intro {
  max-width: 52rem;
  margin-top: 0.5rem;
  color: rgba(220, 228, 238, 0.9);
}

.alacarte-menu-surface {
  margin-top: clamp(28px, 4vw, 40px);
  padding: clamp(18px, 2.5vw, 28px) clamp(12px, 1.8vw, 20px);
  background-color: #ebe4d8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.alacarte-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.2vw, 22px);
}

@media (min-width: 880px) {
  .alacarte-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.alacarte-block {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.alacarte-block__ribbon {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.alacarte-block__title {
  font-size: clamp(0.94rem, 1.9vw, 1.05rem);
  font-weight: 700;
  line-height: 1.38;
  margin: 0;
  padding: 12px 4px 10px;
  color: #1a222a;
  font-family: var(--font-display);
}

.alacarte-block__dishes {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.alacarte-dish {
  padding: 10px 4px 12px;
  border-top: 1px solid rgba(30, 40, 50, 0.1);
}

.alacarte-block__dishes .alacarte-dish:first-child {
  border-top: none;
}

.alacarte-dish__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
}

.alacarte-dish__name {
  color: #1a222a;
  flex: 1;
  min-width: 0;
}

.alacarte-dish__price {
  flex-shrink: 0;
  white-space: nowrap;
  color: #2d5f6e;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.alacarte-dish__desc {
  margin: 6px 0 0;
  font-size: 0.9rem;
  line-height: 1.48;
  color: #3d4a56;
}

.alacarte-block__footer {
  display: block;
  width: 100%;
  height: auto;
  margin-top: auto;
  vertical-align: top;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px 22px 24px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -50% -20% auto;
  height: 55%;
  background: radial-gradient(ellipse at 30% 0%, var(--accent-subtle), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.card-step-num {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.step-list {
  margin: 0;
  padding-left: 1.12em;
  color: var(--muted);
  font-size: 0.98rem;
}

.step-list li {
  margin-bottom: 6px;
}

.formats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

@media (min-width: 1100px) {
  .formats-strip--four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.format-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.format-card__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(142, 184, 201, 0.12);
  border: 1px solid rgba(180, 210, 225, 0.25);
  color: var(--accent);
}

.format-card__icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* Vier formats: kleurrijke blokken + lichte iconen */
.formats-strip .format-card::before {
  display: none;
}

.formats-strip .format-card .card-title {
  color: #fff;
}

.formats-strip .format-card > p {
  color: rgba(255, 255, 255, 0.92);
}

.formats-strip .format-card .format-tag {
  color: rgba(255, 255, 255, 0.96);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 6px 10px;
  border-radius: 8px;
  margin-top: 12px;
}

.formats-strip .format-card .format-card__icon {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.format-card--talkshow {
  background: linear-gradient(165deg, #fb923c 0%, #ea580c 48%, #c2410c 100%);
  border-color: rgba(255, 220, 185, 0.55);
}

.format-card--latenight {
  background: linear-gradient(165deg, #c084fc 0%, #9333ea 50%, #6b21a8 100%);
  border-color: rgba(235, 210, 255, 0.55);
}

.format-card--debat {
  background: linear-gradient(165deg, #fb7185 0%, #e11d48 50%, #9f1239 100%);
  border-color: rgba(255, 190, 210, 0.55);
}

.format-card--operatie {
  background: linear-gradient(165deg, #5eead4 0%, #14b8a6 52%, #0f766e 100%);
  border-color: rgba(210, 255, 246, 0.55);
}

/* Team — foto onder hele sectie */
.team-band {
  position: relative;
  overflow: hidden;
}

.team-band__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.team-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 42%;
}

.team-band__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 14, 20, 0.45) 0%, rgba(10, 14, 20, 0.72) 100%),
    linear-gradient(90deg, rgba(12, 18, 26, 0.35) 0%, transparent 55%);
}

.team-band__inner {
  position: relative;
  z-index: 2;
}

.team-band .section-title {
  color: #f4f6f9;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.45);
}

.team-band__eyebrow {
  color: #9cc4d8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.team-card {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px;
}

.team-photo {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.team-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.team-photo--partner {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3f8;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.team-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 5vw, 28px);
  text-decoration: none;
}

.team-logo-link img {
  width: min(260px, 88%);
  height: auto;
  max-height: min(140px, 28vw);
  object-fit: contain;
  aspect-ratio: unset;
}

.role {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 6px;
}

.team-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 10px;
}

.team-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.96rem;
}

/* Contact — lichte band over volle breedte (sectie zonder .shell op zichzelf) */
.contact-band {
  background: linear-gradient(168deg, #eef4fa 0%, #e6eff8 45%, #dde9f4 100%);
  color: #1a222c;
  border-block: 1px solid rgba(30, 60, 80, 0.08);
}

.contact-band .section-label {
  color: #287090;
}

.contact-band .section-title {
  color: #141c24;
}

.contact-band .lead {
  color: #3e4b58;
}

.contact-band input[type="text"],
.contact-band input[type="email"],
.contact-band textarea {
  background: #fff;
  border-color: rgba(30, 65, 90, 0.22);
  color: #1a222c;
}

.contact-band input::placeholder,
.contact-band textarea::placeholder {
  color: #69727c;
}

.contact-band .alert-success {
  background: rgba(42, 120, 75, 0.12);
  border-color: rgba(55, 130, 90, 0.35);
  color: #1a5c36;
}

.contact-band .alert-error {
  background: rgba(180, 65, 65, 0.1);
  border-color: rgba(190, 85, 85, 0.35);
  color: #7a2222;
}

.contact-panel {
  max-width: 640px;
  margin: 0 auto;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 560px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

input[type="text"],
input[type="email"],
textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.alert {
  padding: 14px 16px;
  border-radius: 12px;
  margin-top: 16px;
  font-weight: 500;
  font-size: 0.95rem;
}

.alert-success {
  background: rgba(62, 120, 90, 0.2);
  border: 1px solid rgba(100, 180, 130, 0.35);
  color: #b5e6c8;
}

.alert-error {
  background: rgba(140, 50, 50, 0.15);
  border: 1px solid rgba(200, 90, 90, 0.35);
  color: #f0baba;
}

.site-footer {
  padding: 44px 20px 56px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  text-align: center;
}

.footer-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  color: var(--muted);
}

.site-footer .note {
  max-width: 520px;
  margin: 0 auto 24px;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  font-family: var(--font-display);
}

.muted-strong {
  color: var(--text);
  font-weight: 600;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.block-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-line), transparent);
  margin: 0 auto;
  max-width: 100px;
  opacity: 0.65;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .flow-section__panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 15, 22, 0.82);
  }

  .hero-bg__slide {
    transition: none !important;
  }
}
