/* ─────────────────────────────────────────────
   Q-Fry Catering — Gedeelde stylesheet
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Inter:wght@300;400;500&display=swap');

/* ── Custom properties ── */
:root {
  --bg:         #0b0b0c;
  --bg-alt:     #131315;
  --line:       #2a2a2e;
  --gold:       #c9a96a;
  --gold-light: #e3c98c;
  --gold-dark:  #9d8246;
  --white:      #f5f4f0;
  --grey:       #a7a6a1;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --section-pad: 140px 40px;
  --max-w: 1200px;
  --nav-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════════════
   NAVIGATIE
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(11,11,12,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42,42,46,0.5);
  display: flex;
  align-items: center;
}

.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  flex-shrink: 0;
}
.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--grey);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a.active {
  color: var(--white);
}
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav__cta {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 9px 22px;
  transition: background 0.2s, color 0.2s;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(11,11,12,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 32px 40px 40px;
  flex-direction: column;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 20px;
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--grey);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav__mobile a:hover,
.nav__mobile a.active { color: var(--gold); }
.nav__mobile .nav__cta {
  width: fit-content;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 80px 40px 48px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer__brand p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 240px;
}
.footer__brand img {
  height: 72px;
  width: auto;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 14px;
  color: var(--grey);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--white); }
.footer__col address {
  font-style: normal;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.8;
}
.footer__col address a {
  color: var(--grey);
  transition: color 0.2s;
}
.footer__col address a:hover { color: var(--white); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 12px;
  color: var(--grey);
  opacity: 0.6;
}
.footer__bottom a {
  font-size: 12px;
  color: var(--grey);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer__bottom a:hover { opacity: 1; }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  padding: 15px 36px;
  border: 1px solid var(--gold);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-ghost {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  border: 1px solid rgba(245,244,240,0.35);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   TYPOGRAFIE HELPERS
   ═══════════════════════════════════════════ */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
}
h1 { font-size: clamp(48px, 7vw, 88px); }
h2 { font-size: clamp(36px, 4.5vw, 60px); }
h3 { font-size: clamp(24px, 3vw, 38px); }

em { font-style: italic; color: var(--gold); }

.lead {
  font-size: 18px;
  font-weight: 300;
  color: var(--grey);
  max-width: 520px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PAGE HERO (kleine variant)
   ═══════════════════════════════════════════ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 80px) 40px 80px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,106,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero .lead { margin-top: 0; }

/* Contact page hero — smaller */
.page-hero--sm { min-height: 40vh; }

/* ═══════════════════════════════════════════
   SECTIES
   ═══════════════════════════════════════════ */
.section {
  padding: var(--section-pad);
}
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg); }

.section__header {
  margin-bottom: 72px;
}
.section__header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__header .lead { margin-top: 20px; }

/* ── 2-koloms grid ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.two-col img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* ── Pull quote ── */
.pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 32px);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.4;
  margin-bottom: 24px;
}

/* ── Pills / tags ── */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.pill {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 6px 16px;
}

/* ─ Inline CTA link ─ */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 32px;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 14px; }

/* ─ Buttons naast elkaar ─ */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

/* ═══════════════════════════════════════════
   HOMEPAGE — HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #0b0b0c url("../images/hero.jpg") center center / cover no-repeat;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11,11,12,0.75) 0%,
    rgba(11,11,12,0.4) 50%,
    transparent 100%
  );
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Op kleine schermen geen zware autoplay-video: toon de posterfoto. */
@media (max-width: 768px) {
  .hero__video { display: none; }
}

.hero__content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 80px) 40px 180px;
  width: 100%;
}
.hero__content h1 { max-width: 640px; margin-bottom: 24px; }
.hero__content .lead { margin-bottom: 0; }
.hero__content .btn-group { margin-top: 40px; }

/* ── Hero strip ── */
.hero__strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11,11,12,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(42,42,46,0.6);
}
.hero__strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.hero__strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  border-right: 1px solid var(--line);
}
.hero__strip-item:first-child { padding-left: 0; }
.hero__strip-item:last-child { border-right: none; }
.hero__strip-q {
  font-family: var(--font-heading);
  font-size: 52px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.hero__strip-text {
  display: flex;
  flex-direction: column;
}
.hero__strip-text strong {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}
.hero__strip-text span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   HOMEPAGE — SLUIT CTA
   ═══════════════════════════════════════════ */
.cta-section {
  padding: var(--section-pad);
  text-align: center;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}
.cta-section h2 { margin-bottom: 0; }
.cta-section .btn-group { justify-content: center; }

/* ═══════════════════════════════════════════
   WAT IS Q-FRY — STAPPEN
   ═══════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.step {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step__num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.step__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.step__desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}
/* 3-koloms variant, gecentreerd (o.a. de drie Q's) */
.steps--drie {
  grid-template-columns: repeat(3, 1fr);
  max-width: 860px;
  margin: 0 auto;
}
/* Ingesloten (YouTube) video, responsive 16:9 */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 64px auto 0;
  aspect-ratio: 16 / 9;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Juridische links in de footer */
.footer__legal {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* ═══════════════════════════════════════════
   WAT IS Q-FRY — USPs GRID
   ═══════════════════════════════════════════ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.usp-item {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.usp-item__icon {
  font-size: 26px;
  margin-bottom: 16px;
  display: block;
}
.usp-item__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.usp-item__desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   DOELGROEPEN — LIJST LAYOUT
   ═══════════════════════════════════════════ */
.doelgroep-list { border-top: 1px solid var(--line); }
.doelgroep-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.doelgroep-row:hover { background: rgba(201,169,106,0.03); }
.doelgroep-num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
}
.doelgroep-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}
.doelgroep-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.doelgroep-meta p {
  font-size: 14px;
  color: var(--grey);
}
.doelgroep-meta a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
.doelgroep-meta a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   ARRANGEMENTEN — KAARTEN
   ═══════════════════════════════════════════ */
.arrangementen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.arrangement-card {
  padding: 48px 40px 40px;
  border-right: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.arrangement-card:last-child { border-right: none; }
.arrangement-card--featured {
  border: 2px solid var(--gold);
  margin: -1px;
  z-index: 1;
}

.arrangement-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 4px 12px;
}

.arrangement-cat {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.arrangement-card h3 {
  font-size: 32px;
  margin-bottom: 8px;
}
.arrangement-tagline {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 36px;
}

.arrangement-products {
  flex: 1;
  margin-bottom: 32px;
}
.arrangement-products li {
  font-size: 14px;
  color: var(--grey);
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.arrangement-products li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold-dark);
  flex-shrink: 0;
}

.arrangement-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.arrangement-price-sub {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 28px;
}

/* ── Maatwerk banner ── */
.maatwerk-banner {
  margin-top: 64px;
  padding: 56px 64px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.maatwerk-banner__text h3 { margin-bottom: 12px; }
.maatwerk-banner__text p {
  font-size: 15px;
  color: var(--grey);
  max-width: 400px;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.contact-info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  margin-top: 80px;
}
.contact-info-bar__item {
  padding: 32px 36px;
  border-right: 1px solid var(--line);
}
.contact-info-bar__item:last-child { border-right: none; }
.contact-info-bar__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-info-bar__item a,
.contact-info-bar__item p {
  font-size: 15px;
  color: var(--white);
  line-height: 1.6;
  transition: color 0.2s;
}
.contact-info-bar__item a:hover { color: var(--gold); }

/* ── Formulier ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
}
.form-field {
  margin-bottom: 36px;
}
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a7a6a1' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.form-field select option { background: var(--bg-alt); color: var(--white); }
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(167,166,161,0.4);
}

.form-submit { grid-column: 1 / -1; }
.form-submit .btn-primary {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* ── Bedankt-bericht ── */
.form-thanks {
  display: none;
  padding: 40px;
  border: 1px solid var(--gold-dark);
  background: rgba(201,169,106,0.05);
  text-align: center;
}
.form-thanks.visible { display: block; }
.form-thanks p {
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: italic;
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════
   PRIVACY
   ═══════════════════════════════════════════ */
.privacy-content {
  max-width: 720px;
}
.privacy-content h2 {
  font-size: 28px;
  margin-top: 56px;
  margin-bottom: 20px;
}
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 16px;
}
.privacy-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}
.privacy-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.privacy-content li {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 6px;
}
.privacy-content ol li::marker {
  color: var(--gold);
}
.privacy-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 980px
   ═══════════════════════════════════════════ */
@media (max-width: 980px) {
  :root { --section-pad: 64px 24px; }

  .container { padding: 0 24px; }

  /* Nav */
  .nav__inner { padding: 0 24px; }
  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero__content {
    padding: calc(var(--nav-h) + 60px) 24px 200px;
  }
  .hero__strip-inner {
    padding: 20px 24px;
    gap: 0;
  }
  .hero__strip-item { padding: 0 16px; }
  .hero__strip-q { font-size: 36px; }
  .hero__strip-text strong { font-size: 15px; }
  .hero__strip-text span { font-size: 10px; }

  /* Page hero */
  .page-hero { padding: calc(var(--nav-h) + 48px) 24px 60px; }

  /* Two col */
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .two-col--reverse { direction: ltr; }
  .two-col img { height: 260px; }

  /* Steps */
  .steps { grid-template-columns: 1fr 1fr; }

  /* USP grid */
  .usp-grid { grid-template-columns: 1fr 1fr; }

  /* Doelgroepen */
  .doelgroep-row {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
  .doelgroep-meta { grid-column: 2; flex-direction: column; align-items: flex-start; }

  /* Arrangementen */
  .arrangementen-grid {
    grid-template-columns: 1fr;
    border: none;
  }
  .arrangement-card {
    border-right: none;
    border: 1px solid var(--line);
    margin-bottom: 16px;
  }
  .arrangement-card--featured { margin: 0 0 16px; }

  /* Maatwerk */
  .maatwerk-banner {
    flex-direction: column;
    padding: 40px 32px;
    align-items: flex-start;
  }

  /* Contact */
  .contact-form-wrap { max-width: 100%; }
  .contact-info-bar {
    grid-template-columns: 1fr 1fr;
    margin-top: 56px;
  }
  .contact-info-bar__item:nth-child(2) { border-right: none; }
  .contact-info-bar__item:nth-child(3) { border-top: 1px solid var(--line); }
  .contact-info-bar__item:nth-child(4) { border-top: 1px solid var(--line); }
  .form-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 60px 24px 40px; }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  /* Buttons */
  .btn-group { flex-direction: column; }
  .btn-primary,
  .btn-ghost { text-align: center; }

  /* CTA section */
  .cta-section .btn-group { flex-direction: row; }
}

@media (max-width: 560px) {
  :root { --section-pad: 48px 20px; }
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .two-col img { height: 220px; }
  .step { padding: 32px 24px; }
  .steps { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__strip-inner { grid-template-columns: 1fr; gap: 16px; }
  .hero__strip-item { border-right: none; padding-left: 0; }
  .cta-section .btn-group { flex-direction: column; }
  .contact-info-bar {
    grid-template-columns: 1fr;
  }
  .contact-info-bar__item { border-right: none !important; border-top: 1px solid var(--line); }
  .contact-info-bar__item:first-child { border-top: none; }
}
