/* =============================================================================
   huisstijl.css — Alfa Reclame Design System
   Versie: 1.0  |  2026-05-18
   Gebaseerd op: AR-logo (monogram, gele driehoek, parallelle strepen)
   Gebruik: <link rel="stylesheet" href="/public/css/huisstijl.css">
   ============================================================================= */


/* =============================================================================
   1. RESET & BASE
   ============================================================================= */

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  hanging-punctuation: first last;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--surface);
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

p + p {
  margin-top: var(--space-4);
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: var(--space-7) 0;
}

nav ul, nav ol {
  list-style: none;
}

a, button {
  -webkit-tap-highlight-color: transparent;
}


/* =============================================================================
   2. TOKENS (CUSTOM PROPERTIES)
   ============================================================================= */

:root {
  /* --- Colors --- */
  --ink:          #1D1D1F;
  --ink-soft:     #2C2C2E;
  --ink-muted:    #6E6E73;
  --ink-subtle:   #86868B;
  --brand:        #FFE500;
  --brand-deep:   #E5CC00;
  --surface:      #FFFFFF;
  --surface-soft: #FAFAFA;
  --surface-mute: #F5F5F7;
  --rule:         rgba(29, 29, 31, 0.08);
  --rule-bold:    rgba(29, 29, 31, 0.16);

  /* --- Typography --- */
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Crimson Pro', Georgia, serif;

  --text-xs:   13px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-lg:   18px;
  --text-xl:   clamp(20px, 1.8vw, 24px);
  --text-h3:   clamp(22px, 2vw, 28px);
  --text-h2:   clamp(40px, 4.5vw, 60px);
  --text-h1:   clamp(48px, 6vw, 84px);

  --lh-tight:  1.05;
  --lh-snug:   1.25;
  --lh-base:   1.55;

  --tracking-tight: -0.02em;

  /* --- Spacing --- */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* --- Radii --- */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   14px;
  --radius-pill: 999px;

  /* --- Transitions --- */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 4px rgba(29, 29, 31, 0.06);
  --shadow-md: 0 4px 16px rgba(29, 29, 31, 0.10);
  --shadow-lg: 0 12px 40px rgba(29, 29, 31, 0.14);

  /* --- Z-index scale --- */
  --z-nav:     100;
  --z-overlay: 200;
  --z-modal:   300;

  /* --- Nav height --- */
  --nav-h: 72px;
}


/* =============================================================================
   3. TYPOGRAPHY
   ============================================================================= */

h1, .h1 {
  font-size: var(--text-h1);
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  font-family: var(--font-sans);
}

h2, .h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  font-family: var(--font-sans);
}

h3, .h3 {
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
  font-family: var(--font-sans);
}

h4, .h4 {
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: var(--lh-snug);
  font-family: var(--font-sans);
}

h5, .h5 {
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: var(--lh-snug);
  font-family: var(--font-sans);
}

h6, .h6 {
  font-size: var(--text-base);
  font-weight: 600;
  line-height: var(--lh-base);
  font-family: var(--font-sans);
}

.eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-3);
}

.tagline-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--ink-muted);
  line-height: var(--lh-snug);
}

.lead {
  font-size: var(--text-lg);
  line-height: var(--lh-base);
  color: var(--ink-muted);
  max-width: 60ch;
}

.text-muted {
  color: var(--ink-muted);
  font-size: var(--text-sm);
}

.text-subtle {
  color: var(--ink-subtle);
  font-size: var(--text-xs);
}


/* =============================================================================
   4. LAYOUT HELPERS
   ============================================================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--space-9) 0;
}

.section--sm {
  padding: var(--space-7) 0;
}

.section--lg {
  padding: var(--space-10) 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-mute {
  background: var(--surface-mute);
}

.section-dark {
  background: var(--ink);
  color: var(--surface);
}

.grid { display: grid; gap: var(--space-5); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto-2 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid--auto-3 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--gap-2 { gap: var(--space-2); }
.flex--gap-3 { gap: var(--space-3); }
.flex--gap-4 { gap: var(--space-4); }
.flex--gap-5 { gap: var(--space-5); }

.stack { display: flex; flex-direction: column; }
.stack--2 { gap: var(--space-2); }
.stack--3 { gap: var(--space-3); }
.stack--4 { gap: var(--space-4); }
.stack--5 { gap: var(--space-5); }

.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;
}


/* =============================================================================
   5. SECTION TITLE WITH YELLOW TRIANGLE PREFIX
   ============================================================================= */

.section-title {
  font: 700 var(--text-h2)/var(--lh-tight) var(--font-sans);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 var(--space-5);
  color: var(--ink);
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--brand);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-right: 14px;
  vertical-align: middle;
  transform: translateY(-2px);
  flex-shrink: 0;
}

.section-title--sm {
  font-size: var(--text-h3);
}

.section-title--sm::before {
  width: 10px;
  height: 10px;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  line-height: var(--lh-base);
  max-width: 60ch;
  margin: 0 0 var(--space-7);
}

.section-header {
  margin-bottom: var(--space-8);
}


/* =============================================================================
   6. SECTION-STRIPE-TOP DIVIDER (3 parallel lines, logo-derived)
   ============================================================================= */

.stripe-top {
  position: relative;
}

.stripe-top::before {
  content: '';
  display: block;
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0px,
    var(--ink) 20px,
    transparent 20px,
    transparent 28px,
    var(--ink) 28px,
    var(--ink) 48px,
    transparent 48px,
    transparent 56px,
    var(--ink) 56px,
    var(--ink) 76px,
    transparent 76px,
    transparent 100px
  );
  opacity: 0.08;
  margin-bottom: var(--space-9);
}

.section-title--underline {
  padding-bottom: var(--space-4);
}

.section-title--underline::after {
  content: '';
  display: block;
  margin-top: var(--space-3);
  height: 4px;
  width: 80px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0px,
    var(--ink) 12px,
    transparent 12px,
    transparent 18px,
    var(--ink) 18px,
    var(--ink) 30px,
    transparent 30px,
    transparent 36px,
    var(--ink) 36px,
    var(--ink) 48px,
    transparent 48px,
    transparent 54px
  );
  opacity: 0.30;
}


/* =============================================================================
   7. NAVIGATION
   ============================================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  height: var(--nav-h);
}

.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-5);
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__logo-text {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.nav__link:hover {
  background: var(--surface-mute);
  text-decoration: none;
}

.nav__link--active {
  background: var(--surface-mute);
  font-weight: 600;
}

.nav__cta {
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  transition: background var(--transition-fast);
}

.nav__toggle:hover {
  background: var(--surface-mute);
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--surface);
  z-index: calc(var(--z-nav) - 1);
  padding: var(--space-6) 24px;
  border-top: 1px solid var(--rule);
  overflow-y: auto;
}

.nav__mobile.is-open {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.nav__mobile-link {
  display: block;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--ink);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}

.nav__mobile-link:hover {
  color: var(--ink-soft);
  text-decoration: none;
}


/* =============================================================================
   8. FOOTER
   ============================================================================= */

.footer {
  background: var(--ink);
  color: var(--surface);
  padding: var(--space-9) 0 var(--space-7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer__brand img {
  height: 44px;
  width: auto;
  margin-bottom: var(--space-4);
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-base);
  margin-top: var(--space-2);
  margin-bottom: var(--space-5);
}

.footer__heading {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--space-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--surface);
  text-decoration: none;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-3);
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.footer__contact-item a:hover {
  color: var(--surface);
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer__bar-links {
  display: flex;
  gap: var(--space-5);
}

.footer__bar-link {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__bar-link:hover {
  color: rgba(255, 255, 255, 0.65);
}

.footer__accent {
  color: var(--brand);
  font-weight: 600;
}


/* =============================================================================
   9. BUTTONS
   ============================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-primary {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

.btn-primary::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right center;
  width: 28px;
  height: 28px;
  background: var(--brand);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: transform var(--transition-base);
}

.btn-primary:hover::after {
  transform: translateY(-50%) scaleX(1);
}

.btn-primary:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--surface);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}

.btn-ghost:hover {
  background: transparent;
  color: var(--ink-soft);
  box-shadow: none;
  transform: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
}

.btn--sm {
  padding: 10px 20px;
  font-size: var(--text-sm);
}

.btn--lg {
  padding: 18px 36px;
  font-size: var(--text-lg);
}

.btn-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}


/* =============================================================================
   10. CARDS
   ============================================================================= */

.card {
  background: var(--surface);
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: var(--brand);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.card__title {
  font-size: var(--text-h3);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
  color: var(--ink);
}

.card__body {
  font-size: var(--text-base);
  color: var(--ink-muted);
  line-height: var(--lh-base);
  margin-bottom: var(--space-5);
}

.card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: gap var(--transition-fast);
}

.card__link:hover {
  gap: var(--space-2);
  text-decoration: none;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-5);
}

/* --- Photo card --- */
.photo-card {
  background: var(--surface);
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.photo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-base);
  z-index: 1;
}

.photo-card:hover::before {
  transform: scaleX(1);
}

.photo-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: var(--brand);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  z-index: 2;
}

.photo-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.photo-card__body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.photo-card__title {
  font-size: var(--text-h3);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.photo-card__desc {
  font-size: var(--text-base);
  color: var(--ink-muted);
  line-height: var(--lh-base);
  flex: 1;
}

.photo-card__cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  align-self: flex-start;
  transition: gap var(--transition-fast);
}

.photo-card__cta:hover {
  gap: var(--space-2);
  text-decoration: none;
}


/* =============================================================================
   11. BREADCRUMB
   ============================================================================= */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: var(--ink-muted);
  padding: var(--space-4) 0;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumb__item + .breadcrumb__item::before {
  content: '\203A';
  color: var(--ink-subtle);
  font-size: var(--text-base);
  line-height: 1;
}

.breadcrumb__link {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb__current {
  font-weight: 600;
  color: var(--ink);
}


/* =============================================================================
   12. HERO PATTERN
   ============================================================================= */

.hero {
  padding: var(--space-10) 0 var(--space-9);
  background: var(--surface);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--brand);
  color: var(--ink);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  flex-shrink: 0;
}

.hero__title {
  font: 800 var(--text-h1)/var(--lh-tight) var(--font-sans);
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
}

.hero__lead {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  line-height: var(--lh-base);
  max-width: 52ch;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: var(--space-2);
}

.hero__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.hero__photo--tall {
  height: 100%;
  grid-row: span 2;
}


/* =============================================================================
   13. FORMS
   ============================================================================= */

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
}

.form__label--required::after {
  content: ' *';
  color: #E5194E;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--rule-bold);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--ink);
  font-size: var(--text-base);
  line-height: var(--lh-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--ink-subtle);
}

.form__input:hover,
.form__select:hover,
.form__textarea:hover {
  border-color: rgba(29, 29, 31, 0.35);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255, 229, 0, 0.35);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231D1D1F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__hint {
  font-size: var(--text-xs);
  color: var(--ink-subtle);
}

.form__error {
  font-size: var(--text-xs);
  color: #E5194E;
}

.form__submit {
  align-self: flex-start;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}


/* =============================================================================
   14. FAQ ACCORDION
   ============================================================================= */

.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule-bold);
}

.faq__item {
  border-bottom: 1px solid var(--rule-bold);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-5) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink);
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--ink-soft);
}

.faq__icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--rule-bold);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  font-size: 18px;
  line-height: 1;
  color: var(--ink-muted);
}

.faq__item.is-open .faq__icon {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--ink);
}

.faq__answer {
  display: none;
  padding: 0 0 var(--space-5);
  font-size: var(--text-base);
  color: var(--ink-muted);
  line-height: var(--lh-base);
  max-width: 72ch;
}

.faq__item.is-open .faq__answer {
  display: block;
}


/* =============================================================================
   15. FOCUS STATES (TOEGANKELIJKHEID)
   ============================================================================= */

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  z-index: calc(var(--z-nav) + 10);
  background: var(--brand);
  color: var(--ink);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-3);
}


/* =============================================================================
   16. MOBILE BREAKPOINTS
   ============================================================================= */

@media (max-width: 880px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__inner {
    grid-template-columns: auto 1fr auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }

  .hero__visual {
    order: -1;
    max-height: 320px;
    overflow: hidden;
  }

  .hero__photo {
    height: 160px;
  }

  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .footer__brand {
    grid-column: span 2;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--space-8) 0;
  }

  .section-title {
    font-size: clamp(32px, 5vw, 48px);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(36px, 9vw, 52px);
  }

  .section-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .container,
  .container--wide,
  .container--narrow,
  .hero__inner,
  .nav__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding: var(--space-7) 0;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-row .btn {
    text-align: center;
    justify-content: center;
  }

  .hero__visual {
    grid-template-columns: 1fr;
  }

  .hero__photo--tall {
    grid-row: auto;
    height: 200px;
  }

  .hero__photo {
    height: 180px;
  }

  .section-header {
    margin-bottom: var(--space-6);
  }

  .faq__question {
    font-size: var(--text-base);
  }
}


/* =============================================================================
   17. REDUCED MOTION
   ============================================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn:hover {
    transform: none;
  }

  .card:hover,
  .photo-card:hover {
    transform: none;
  }

  .photo-card:hover::before {
    transform: scaleX(1);
  }

  .btn-primary::after {
    display: none;
  }
}


/* =============================================================================
   EOF — huisstijl.css  |  Alfa Reclame  |  2026-05-18
   ============================================================================= */
