/*
Theme Name: Vita's Patat
Theme URI: https://vitaspatat.nl
Author: Vita's Patat Amsterdam
Author URI: https://vitaspatat.nl
Description: Custom thema voor Vita's Patat — de legende van de Dappermarkt sinds 1972. Antraciet en goud design.
Version: 1.0
License: Private
Text Domain: vitaspatat
*/

/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --anthracite:       #2b2d2f;
  --anthracite-dark:  #1a1c1e;
  --anthracite-mid:   #323537;
  --anthracite-light: #484b4e;
  --gold:             #D4A017;
  --gold-bright:      #F0BE30;
  --gold-pale:        #f5dfa0;
  --gold-dim:         rgba(212,160,23,0.12);
  --gold-border:      rgba(212,160,23,0.25);
  --white:            #fff;
  --cream:            #FAF6ED;
  --text:             #e8e4dc;
  --text-mid:         rgba(232,228,220,0.7);
  --text-dim:         rgba(232,228,220,0.4);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--anthracite-dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Hide WP admin bar interference */
body.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .nav { top: 46px; }
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--anthracite-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
* { box-sizing: border-box; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  background: rgba(26,28,30,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
  transition: height .3s;
}
.nav.scrolled { height: 60px; }
.nav-logo {
  display: flex; align-items: center; gap: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; letter-spacing: 1px;
  color: var(--white);
}
.nav-logo .accent { color: var(--gold); font-size: 30px; line-height: 1; margin-right: -2px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-mid); transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover,
.nav-links a.current-menu-item,
.nav-links a.current_page_item { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.current-menu-item::after,
.nav-links a.current_page_item::after { width: 100%; }
.nav-links a.nav-cta {
  background: var(--gold); color: var(--anthracite-dark) !important;
  padding: 10px 22px; border-radius: 3px; font-weight: 700;
}
.nav-cta::after { display: none !important; }
.nav-links a.nav-cta:hover { background: var(--gold-bright); }

/* WP nav menu override */
.nav-links ul { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.nav-links ul li { margin: 0; padding: 0; }
.nav-links ul li a {
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-mid); transition: color .2s;
  position: relative;
}
.nav-links ul li a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.nav-links ul li a:hover { color: var(--gold); }
.nav-links ul li a:hover::after { width: 100%; }
.nav-links ul li.menu-item-cta a {
  background: var(--gold); color: var(--anthracite-dark) !important;
  padding: 10px 22px; border-radius: 3px; font-weight: 700;
}
.nav-links ul li.menu-item-cta a::after { display: none; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span { display: block; width: 26px; height: 2px; background: var(--text); transition: .3s; }
.nav-mobile {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(26,28,30,0.99);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 36px; z-index: 800;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-mid); transition: color .2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile a.nav-cta-mobile {
  background: var(--gold); color: var(--anthracite-dark) !important;
  padding: 14px 40px; border-radius: 3px;
}

/* ===== MARQUEE ===== */
.marquee-band {
  background: var(--gold); padding: 13px 0;
  overflow: hidden; position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 30s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--anthracite-dark); padding: 0 28px; white-space: nowrap;
}
.marquee-sep { color: rgba(43,45,47,0.35); padding: 0 6px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 25%;
  filter: brightness(.42);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--anthracite-dark) 0%, rgba(26,28,30,.65) 35%, rgba(26,28,30,.15) 70%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto; width: 100%;
  padding: 0 64px 96px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 900; line-height: .93;
  letter-spacing: -1px; margin-bottom: 26px; color: var(--white);
}
.hero h1 em { font-style: italic; color: var(--gold); display: block; }
.hero-sub {
  font-size: 18px; font-weight: 300; color: var(--text-mid);
  line-height: 1.65; max-width: 520px; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--anthracite-dark);
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 30px; border-radius: 3px; border: none;
  cursor: pointer; transition: background .2s, transform .15s; text-decoration: none;
}
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); color: var(--anthracite-dark); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  font-family: 'Barlow', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 30px; border-radius: 3px;
  border: 1px solid rgba(255,255,255,.28);
  cursor: pointer; transition: border-color .2s, color .2s; text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats { display: flex; gap: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 800; color: var(--gold); line-height: 1;
}
.hero-stat .lbl {
  font-size: 11px; font-weight: 500; color: var(--text-dim);
  letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px;
}

/* ===== SECTIONS ===== */
section, .wp-section { padding: 96px 64px; }
.container { max-width: 1180px; margin: 0 auto; }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900; line-height: 1.05; margin-bottom: 20px;
  color: var(--white);
}
h2 em { font-style: italic; color: var(--gold); }
.section-lead {
  font-size: 17px; font-weight: 300; color: var(--text-mid);
  line-height: 1.7; max-width: 560px;
}

/* ===== VERHAAL ===== */
.verhaal { background: var(--anthracite-dark); }
.verhaal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.img-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 280px 210px; gap: 10px; }
.img-mosaic .span2 { grid-column: 1 / -1; }
.img-frame { overflow: hidden; border-radius: 3px; position: relative; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .7s ease; }
.img-frame:hover img { transform: scale(1.06); }
.gen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
.gen-tile { background: var(--anthracite-mid); border: 1px solid var(--gold-border); border-radius: 3px; padding: 20px 18px; }
.gen-tile .n { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800; color: var(--gold); line-height: 1; }
.gen-tile .t { font-size: 12px; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ===== DAPPERMARKT ===== */
.dapper { background: var(--anthracite-mid); position: relative; overflow: hidden; }
.dapper-bg-img { position: absolute; right: 0; top: 0; bottom: 0; width: 48%; background-size: cover; background-position: center; opacity: .18; }
.dapper-content { position: relative; z-index: 2; max-width: 620px; }
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 30px); font-style: italic;
  line-height: 1.4; color: var(--white);
  border-left: 3px solid var(--gold); padding-left: 24px; margin: 28px 0;
}
.info-pills { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.pill { display: flex; align-items: center; gap: 10px; background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 3px; padding: 12px 18px; }
.pill .p-icon { font-size: 18px; }
.pill strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); }
.pill span { font-size: 12px; color: var(--text-dim); }

/* ===== GALLERY ===== */
.gallery-section { background: var(--anthracite-dark); padding: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 300px 300px; gap: 6px; }
.g-item { overflow: hidden; position: relative; background: var(--anthracite-mid); }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .4s; }
.g-item:hover img { transform: scale(1.07); filter: brightness(1.08); }
.g-cap { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,28,30,.85) 0%, transparent 55%); opacity: 0; transition: opacity .35s; display: flex; align-items: flex-end; padding: 18px; }
.g-item:hover .g-cap { opacity: 1; }
.g-cap span { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* ===== CATERING ===== */
.catering { background: var(--anthracite); }
.catering-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.catering-img-stack { position: relative; }
.catering-main-img { width: 100%; height: 540px; overflow: hidden; border-radius: 3px; }
.catering-main-img img { width: 100%; height: 100%; object-fit: cover; }
.catering-badge { position: absolute; bottom: 20px; left: 20px; background: var(--gold); color: var(--anthracite-dark); font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; padding: 10px 18px; border-radius: 3px; }
.feat-list { margin-top: 28px; }
.feat-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.feat-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.feat-row p { font-size: 15px; color: var(--text-mid); line-height: 1.5; }
.feat-row strong { color: var(--white); }
.occ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 32px; }
.occ-tile { background: var(--anthracite-dark); border: 1px solid var(--gold-border); border-radius: 3px; padding: 20px 12px; text-align: center; transition: .3s; cursor: default; }
.occ-tile:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.occ-tile:hover .occ-lbl { color: var(--anthracite-dark); }
.occ-em { font-size: 24px; margin-bottom: 8px; }
.occ-lbl { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); transition: color .3s; }

/* ===== TRUCK FULLWIDTH ===== */
.truck-full-section { position: relative; overflow: hidden; }
.truck-full-section img { width: 100%; max-height: 580px; object-fit: cover; object-position: center 60%; display: block; filter: brightness(.65); }
.truck-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; background: rgba(26,28,30,.3); }
.truck-overlay h2 { color: var(--gold); font-size: clamp(36px,5vw,72px); }
.truck-overlay p { font-size: 18px; color: var(--text-mid); font-weight: 300; max-width: 520px; margin: 14px auto 30px; }

/* ===== CONTACT / OFFERTE ===== */
.contact-section { background: var(--anthracite-mid); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-heading { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin-bottom: 28px; color: var(--white); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.f-group label { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-dim); }
.f-group input, .f-group select, .f-group textarea {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px; color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 15px; padding: 13px 16px; outline: none; transition: border-color .25s, background .25s; -webkit-appearance: none;
}
.f-group input::placeholder, .f-group textarea::placeholder { color: rgba(255,255,255,.22); }
.f-group select { cursor: pointer; }
.f-group select option { background: var(--anthracite); color: var(--white); }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--gold); background: rgba(212,160,23,.06); }
.f-group textarea { resize: vertical; min-height: 110px; }
.f-group.err input, .f-group.err select, .f-group.err textarea { border-color: #e85555; }
.f-err-msg { font-size: 12px; color: #e85555; margin-top: 4px; display: none; }
.f-group.err .f-err-msg { display: block; }
.form-submit-btn {
  width: 100%; padding: 16px; border: none; border-radius: 3px;
  background: var(--gold); color: var(--anthracite-dark);
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; margin-top: 6px; transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit-btn:hover { background: var(--gold-bright); }
.form-submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.form-note { font-size: 11px; color: var(--text-dim); text-align: center; margin-top: 10px; }
.form-success, .form-error-msg { display: none; padding: 20px 24px; border-radius: 3px; margin-top: 16px; font-size: 15px; line-height: 1.5; }
.form-success { background: rgba(80,180,100,.12); border: 1px solid rgba(80,180,100,.3); color: #7de89a; }
.form-error-msg { background: rgba(232,85,85,.1); border: 1px solid rgba(232,85,85,.3); color: #f08080; }
.form-success.show, .form-error-msg.show { display: block; }
.spinner { width: 18px; height: 18px; border: 2px solid rgba(43,45,47,.4); border-top-color: var(--anthracite-dark); border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.form-submit-btn.loading .spinner { display: block; }
.form-submit-btn.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.contact-info-heading { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin-bottom: 28px; color: var(--white); }
.c-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.c-icon { width: 42px; height: 42px; border-radius: 3px; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.c-item .c-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.c-item a, .c-item p { font-size: 15px; color: var(--text-mid); line-height: 1.5; }
.c-item a:hover { color: var(--gold); }
.review-card { margin-top: 28px; background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 4px; padding: 24px; }
.review-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { font-style: italic; color: var(--text-mid); font-size: 14px; line-height: 1.65; }
.review-card cite { display: block; font-size: 12px; color: var(--text-dim); margin-top: 12px; font-style: normal; }

/* ===== PAKKETTEN (huren pagina) ===== */
.pakketten-section { background: var(--anthracite); }
.pak-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.pak-card { background: var(--anthracite-mid); border: 1px solid var(--gold-border); border-radius: 4px; padding: 36px 28px; display: flex; flex-direction: column; position: relative; transition: border-color .3s, transform .3s; }
.pak-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.pak-card.featured { background: var(--gold); border-color: var(--gold); }
.pak-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #c0392b; color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 5px 16px; border-radius: 20px; white-space: nowrap; }
.pak-name { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; letter-spacing: 1px; margin-bottom: 4px; }
.pak-card:not(.featured) .pak-name { color: var(--white); }
.pak-card.featured .pak-name { color: var(--anthracite-dark); }
.pak-price { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 800; line-height: 1.1; margin: 14px 0 4px; }
.pak-card:not(.featured) .pak-price { color: var(--gold); }
.pak-card.featured .pak-price { color: var(--anthracite-dark); }
.pak-price small { font-size: 17px; font-weight: 400; }
.pak-desc { font-size: 13px; line-height: 1.5; margin-bottom: 24px; }
.pak-card:not(.featured) .pak-desc { color: var(--text-dim); }
.pak-card.featured .pak-desc { color: rgba(43,45,47,.65); }
.pak-items { list-style: none; margin-bottom: 28px; flex: 1; padding: 0; }
.pak-items li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14px; line-height: 1.4; }
.pak-card:not(.featured) .pak-items li { color: rgba(232,228,220,.8); border-bottom: 1px solid rgba(255,255,255,.06); }
.pak-card.featured .pak-items li { color: var(--anthracite-dark); border-bottom: 1px solid rgba(43,45,47,.1); }
.pak-check { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; margin-top: 1px; }
.pak-card:not(.featured) .pak-check { background: var(--gold-dim); color: var(--gold); }
.pak-card.featured .pak-check { background: rgba(43,45,47,.15); color: var(--anthracite-dark); }
.pak-btn { display: block; text-align: center; padding: 14px; border-radius: 3px; font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transition: .2s; text-decoration: none; }
.pak-card:not(.featured) .pak-btn { border: 2px solid var(--gold-border); color: var(--gold); }
.pak-card:not(.featured) .pak-btn:hover { background: var(--gold); color: var(--anthracite-dark); border-color: var(--gold); }
.pak-card.featured .pak-btn { background: var(--anthracite-dark); color: var(--gold); }
.pak-card.featured .pak-btn:hover { background: #0f0f0f; }

/* ===== STEPS ===== */
.steps-section { background: var(--anthracite-dark); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 48px; }
.steps-grid::before { content: ''; position: absolute; top: 34px; left: calc(12.5% + 18px); right: calc(12.5% + 18px); height: 1px; background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 18px); }
.step { text-align: center; padding: 0 20px; }
.step-n { width: 68px; height: 68px; border-radius: 50%; background: var(--gold); color: var(--anthracite-dark); font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 4px solid var(--anthracite-dark); position: relative; z-index: 1; }
.step h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-section { background: var(--anthracite-mid); }
.faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 3px; margin-top: 40px; }
.faq-item { background: var(--anthracite-dark); border-radius: 3px; overflow: hidden; border: 1px solid rgba(255,255,255,.06); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 20px 24px; font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color .2s; }
.faq-q:hover { color: var(--gold); }
.faq-arrow { font-size: 14px; transition: transform .3s; color: var(--gold); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; padding: 0 24px; }
.faq-a p { font-size: 14px; color: var(--text-mid); line-height: 1.7; padding-bottom: 20px; }
.faq-item.open .faq-a { max-height: 220px; }

/* ===== FADE ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.fade-up.in { opacity: 1; transform: none; }

/* ===== FOOTER ===== */
.footer { background: var(--anthracite-dark); border-top: 1px solid var(--gold-border); padding: 44px 64px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo-wrap .f-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.footer-logo-wrap .f-logo em { color: var(--gold); font-style: normal; }
.footer-logo-wrap .f-tag { font-size: 11px; color: var(--text-dim); letter-spacing: 1.5px; margin-top: 4px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; color: var(--text-dim); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  section, .wp-section { padding: 72px 28px; }
  .nav { padding: 0 28px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-content { padding: 0 28px 80px; }
  .hero-stats { gap: 24px; }
  .hero-stat .num { font-size: 28px; }
  .verhaal-grid, .catering-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .img-mosaic { grid-template-rows: 220px 160px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-item.tall, .g-item.wide { grid-row: auto; grid-column: auto; }
  .g-item { height: 240px; }
  .occ-grid { grid-template-columns: repeat(2, 1fr); }
  .pak-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-grid::before { display: none; }
  .footer { flex-direction: column; align-items: flex-start; padding: 36px 28px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 44px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-btns { flex-direction: column; }
  .btn-gold, .btn-outline { justify-content: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .info-pills { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; }
}
