
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #c0183a; --red-dark: #8f1028; --red-light: #e8204d;
  --bg: #f5f5f7; --bg-dark: #111113; --card: #ffffff;
  --text: #1a1a1a; --text-muted: #6b7280; --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0,0,0,0.08); --shadow-hover: 0 12px 40px rgba(0,0,0,0.16);
  --radius: 14px; --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
body.loading { overflow: hidden; }

#loader { position: fixed; inset: 0; z-index: 9999; background: var(--bg-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; transition: opacity .6s ease, visibility .6s ease; }
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { width: 100px; height: 100px; animation: pulse-spin 2s ease-in-out infinite; filter: drop-shadow(0 0 20px rgba(192,24,58,.6)); }
@keyframes pulse-spin { 0%{transform:scale(1) rotate(0deg);opacity:1} 50%{transform:scale(1.08) rotate(180deg);opacity:.85} 100%{transform:scale(1) rotate(360deg);opacity:1} }
.loader-bar-wrap { width:240px; height:4px; background:rgba(255,255,255,.1); border-radius:2px; overflow:hidden; }
.loader-bar { height:100%; width:0; background:linear-gradient(90deg,var(--red),var(--red-light)); border-radius:2px; animation:fill-bar 1.8s ease-out forwards; }
@keyframes fill-bar { to { width:100%; } }
.loader-text { color:rgba(255,255,255,.5); font-size:13px; letter-spacing:.12em; text-transform:uppercase; }

nav { position:fixed; top:0; left:0; right:0; z-index:100; background:rgba(255,255,255,.88); backdrop-filter:blur(16px); border-bottom:1px solid rgba(0,0,0,.06); padding:0 5%; display:flex; align-items:center; justify-content:space-between; height:68px; transition:var(--transition); }
nav.scrolled { box-shadow:0 2px 20px rgba(0,0,0,.08); }
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav-logo img { height:36px; filter:none; }
.nav-links { display:flex; gap:8px; }
.nav-links a { padding:8px 16px; border-radius:8px; text-decoration:none; color:var(--text); font-size:14px; font-weight:500; transition:var(--transition); }
.nav-links a:hover { background:#f3f4f6; color:var(--red); }
.nav-links a.active { color:var(--red); }
.nav-cta { background:var(--red) !important; color:#fff !important; border-radius:8px; }
.nav-cta:hover { background:var(--red-dark) !important; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:22px; height:2px; background:var(--text); border-radius:2px; }

.hero { height:100vh; min-height:600px; position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.hero-slides { position:absolute; inset:0; }
.hero-slide { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition:opacity 1.2s ease; }
.hero-slide.active { opacity:1; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(0,0,0,.65) 0%,rgba(0,0,0,.3) 60%,rgba(192,24,58,.2) 100%); }
.hero-content { position:relative; z-index:2; text-align:center; color:#fff; padding:0 20px; max-width:800px; }
.hero-badge { display:inline-block; background:rgba(192,24,58,.85); color:#fff; padding:6px 16px; border-radius:20px; font-size:12px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; margin-bottom:20px; }
.hero h1 { font-size:clamp(2.4rem,6vw,4rem); font-weight:800; line-height:1.1; margin-bottom:20px; text-shadow:0 2px 20px rgba(0,0,0,.4); }
.hero p { font-size:clamp(1rem,2vw,1.2rem); opacity:.9; max-width:560px; margin:0 auto 36px; }
.hero-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn { display:inline-flex; align-items:center; gap:8px; padding:14px 28px; border-radius:12px; font-size:15px; font-weight:600; text-decoration:none; transition:var(--transition); cursor:pointer; border:none; }
.btn-primary { background:var(--red); color:#fff; box-shadow:0 4px 16px rgba(192,24,58,.35); }
.btn-primary:hover { background:var(--red-dark); transform:translateY(-2px); }
.btn-outline { background:rgba(255,255,255,.12); color:#fff; backdrop-filter:blur(8px); border:1.5px solid rgba(255,255,255,.3); }
.btn-outline:hover { background:rgba(255,255,255,.22); transform:translateY(-2px); }
.hero-indicators { position:absolute; bottom:32px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:3; }
.hero-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.4); cursor:pointer; transition:var(--transition); }
.hero-dot.active { background:#fff; width:24px; border-radius:4px; }

section { padding:96px 5%; }
.section-label { display:inline-block; font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--red); margin-bottom:12px; }
h2 { font-size:clamp(1.8rem,3.5vw,2.6rem); font-weight:800; line-height:1.15; margin-bottom:16px; }
.section-sub { color:var(--text-muted); font-size:1.05rem; max-width:560px; margin-bottom:56px; }
.section-header { margin-bottom:56px; }

.diensten-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:24px; }
.dienst-card { background:var(--card); border-radius:var(--radius); padding:32px 28px; border:1px solid var(--border); box-shadow:var(--shadow); transition:var(--transition); }
.dienst-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-hover); border-color:var(--red); }
.dienst-icon { width:52px; height:52px; background:linear-gradient(135deg,var(--red),var(--red-light)); border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; font-size:22px; }
.dienst-card h3 { font-size:1.1rem; font-weight:700; margin-bottom:10px; }
.dienst-card p { color:var(--text-muted); font-size:.92rem; }

.tekoop-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:28px; }
.kavel-card { background:var(--card); border-radius:var(--radius); overflow:hidden; border:1px solid var(--border); box-shadow:var(--shadow); transition:var(--transition); }
.kavel-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-hover); }
.kavel-img { width:100%; height:200px; object-fit:cover; display:block; transition:transform .5s ease; }
.kavel-card:hover .kavel-img { transform:scale(1.04); }
.kavel-img-wrap { overflow:hidden; }
.kavel-body { padding:24px; }
.kavel-status { display:inline-block; padding:4px 12px; border-radius:20px; font-size:11px; font-weight:700; text-transform:uppercase; margin-bottom:12px; }
.status-beschikbaar { background:#dcfce7; color:#166534; }
.status-verkocht { background:#fee2e2; color:#991b1b; }
.status-optie { background:#fef3c7; color:#92400e; }
.status-verhuur { background:#dbeafe; color:#1e40af; }
.kavel-body h3 { font-size:1.05rem; font-weight:700; margin-bottom:8px; }
.kavel-body p { color:var(--text-muted); font-size:.88rem; margin-bottom:16px; }
.kavel-meta { display:flex; gap:16px; flex-wrap:wrap; }
.kavel-meta-item { font-size:.85rem; color:var(--text-muted); }

.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.portfolio-item { position:relative; overflow:hidden; border-radius:var(--radius); cursor:pointer; box-shadow:var(--shadow); }
.portfolio-item:first-child { grid-column:1/3; }
.portfolio-item img { width:100%; height:100%; object-fit:cover; display:block; min-height:220px; transition:transform .5s ease; }
.portfolio-item:first-child img { min-height:340px; }
.portfolio-item:hover img { transform:scale(1.06); }
.portfolio-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.75) 0%,transparent 60%); opacity:0; transition:var(--transition); display:flex; align-items:flex-end; padding:24px; }
.portfolio-item:hover .portfolio-overlay { opacity:1; }
.portfolio-overlay h3 { color:#fff; font-size:1rem; font-weight:700; }
.portfolio-overlay p { color:rgba(255,255,255,.75); font-size:.85rem; }
#lightbox { display:none; position:fixed; inset:0; z-index:999; background:rgba(0,0,0,.92); align-items:center; justify-content:center; }
#lightbox.open { display:flex; }
#lightbox img { max-width:90vw; max-height:90vh; border-radius:var(--radius); }
#lightbox-close { position:absolute; top:24px; right:24px; background:rgba(255,255,255,.1); border:none; color:#fff; font-size:28px; cursor:pointer; width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; transition:var(--transition); }
#lightbox-close:hover { background:var(--red); }

.map-wrap { border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--border); }
.over-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.over-stats { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:40px; }
.stat-box { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius); padding:24px; }
.stat-num { font-size:2.2rem; font-weight:800; color:var(--red-light); margin-bottom:4px; }
.stat-label { font-size:.85rem; color:rgba(255,255,255,.5); }
.over-img-wrap { border-radius:var(--radius); overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,.4); }
.over-img-wrap img { width:100%; display:block; }

.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; }
.contact-info h3 { font-size:1.4rem; font-weight:700; margin-bottom:12px; }
.contact-info p { color:var(--text-muted); margin-bottom:32px; }
.contact-item { display:flex; align-items:flex-start; gap:14px; margin-bottom:20px; }
.contact-icon { width:44px; height:44px; background:linear-gradient(135deg,var(--red),var(--red-light)); border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:17px; }
.contact-item strong { display:block; font-weight:600; }
.contact-item span { color:var(--text-muted); font-size:.9rem; }
.contact-form { background:var(--card); border-radius:var(--radius); padding:40px; border:1px solid var(--border); box-shadow:var(--shadow); }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:13px; font-weight:600; margin-bottom:7px; }
.form-group input, .form-group textarea, .form-group select { width:100%; padding:12px 16px; border-radius:10px; border:1.5px solid var(--border); background:#fafafa; font-size:14px; color:var(--text); font-family:inherit; transition:var(--transition); outline:none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color:var(--red); background:#fff; box-shadow:0 0 0 3px rgba(192,24,58,.08); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-submit { width:100%; }

/* ── NAV BRAND ── */
.nav-brand { font-size:16px; font-weight:800; color:var(--text); letter-spacing:-.01em; }

/* ── PAGE HERO (subpages) ── */
.page-hero { position:relative; height:340px; display:flex; align-items:center; justify-content:center; background-size:cover; background-position:center; overflow:hidden; margin-top:68px; }
.page-hero .hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(0,0,0,.70) 0%,rgba(192,24,58,.25) 100%); }
.page-hero-content { position:relative; z-index:2; text-align:center; color:#fff; padding:0 20px; }
.page-hero-content h1 { font-size:clamp(2rem,5vw,3.2rem); font-weight:800; line-height:1.1; margin-bottom:10px; text-shadow:0 2px 16px rgba(0,0,0,.4); }
.page-hero-content p { font-size:1.05rem; opacity:.85; }

/* ── NEWS LIST ── */
.news-list { display:flex; flex-direction:column; gap:0; max-width:800px; margin:0 auto; }
.news-item { display:flex; gap:28px; padding:28px 0; border-bottom:1px solid var(--border); align-items:flex-start; }
.news-item:last-child { border-bottom:none; }
.news-date { flex-shrink:0; width:96px; font-size:13px; font-weight:700; color:var(--red); text-transform:uppercase; letter-spacing:.06em; padding-top:3px; }
.news-content h3 { font-size:1.05rem; font-weight:700; margin-bottom:6px; }
.news-content p { color:var(--text-muted); font-size:.9rem; }

/* ── CTA SECTION ── */
.cta-section { background:linear-gradient(135deg,var(--red-dark) 0%,var(--red) 60%,#e8204d 100%); color:#fff; text-align:center; padding:96px 5%; }
.cta-inner { max-width:600px; margin:0 auto; }
.cta-section h2 { color:#fff; margin-bottom:12px; }
.cta-section p { opacity:.85; margin-bottom:32px; font-size:1.05rem; }
.cta-section .btn-outline { border-color:rgba(255,255,255,.5); }

/* ── DIENST DETAIL (diensten.html) ── */
.dienst-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; max-width:1100px; margin:0 auto 80px; }
.dienst-detail-grid.reverse { direction:rtl; }
.dienst-detail-grid.reverse > * { direction:ltr; }
.dienst-img-wrap { border-radius:var(--radius); overflow:hidden; box-shadow:0 20px 50px rgba(0,0,0,.12); }
.dienst-img-wrap img { width:100%; display:block; }
.dienst-icon-lg { width:64px; height:64px; background:linear-gradient(135deg,var(--red),var(--red-light)); border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:28px; margin-bottom:20px; }
.dienst-list { list-style:none; margin:20px 0; display:flex; flex-direction:column; gap:10px; }
.dienst-list li { display:flex; align-items:flex-start; gap:10px; font-size:.92rem; }
.dienst-list li::before { content:'✓'; color:var(--red); font-weight:700; flex-shrink:0; margin-top:1px; }
.dienst-link { color:var(--red); font-weight:600; font-size:.9rem; }

/* ── TEAM CARDS (machinisten.html) ── */
.team-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(340px,1fr)); gap:32px; max-width:900px; margin:0 auto; }
.team-card { background:var(--card); border-radius:var(--radius); border:1px solid var(--border); box-shadow:var(--shadow); display:flex; gap:28px; padding:36px; align-items:flex-start; transition:var(--transition); }
.team-card:hover { box-shadow:var(--shadow-hover); transform:translateY(-4px); }
.team-avatar { width:72px; height:72px; min-width:72px; border-radius:50%; background:linear-gradient(135deg,var(--red),var(--red-light)); display:flex; align-items:center; justify-content:center; font-size:22px; font-weight:800; color:#fff; }
.team-body h2 { font-size:1.25rem; margin-bottom:8px; }
.team-bio { color:var(--text-muted); font-size:.9rem; margin-bottom:14px; }
.team-role-badge { display:inline-block; padding:3px 10px; border-radius:20px; font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; margin-bottom:10px; background:#fee2e2; color:#991b1b; }
.team-role-badge.owner { background:linear-gradient(90deg,#fef08a,#fde047); color:#713f12; }
.team-role-badge.co-owner { background:linear-gradient(90deg,#bfdbfe,#93c5fd); color:#1e3a5f; }
.team-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; }
.team-tags span { background:#f3f4f6; border-radius:6px; padding:3px 10px; font-size:11px; font-weight:600; color:var(--text-muted); }
.team-awards { display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
.award { font-size:.85rem; background:#fafafa; border-radius:8px; padding:6px 12px; border:1px solid var(--border); }
.team-style-label { font-size:.82rem; color:var(--text-muted); }

/* ── VIDEO GRID (machinisten.html) ── */
.video-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; max-width:1000px; margin:0 auto; }
.video-wrap { border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); background:#000; }
.video-wrap iframe { width:100%; height:200px; border:0; display:block; }
.video-label { padding:12px 16px; font-size:.85rem; font-weight:600; background:var(--card); }

/* ── PROJECT BLOCKS (projecten.html) ── */
.project-block { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; max-width:1100px; margin:0 auto; }
.project-imgs { display:flex; flex-direction:column; gap:12px; }
.project-imgs img { width:100%; border-radius:var(--radius); box-shadow:var(--shadow); object-fit:cover; max-height:240px; }
.project-status { display:inline-block; padding:4px 14px; border-radius:20px; font-size:11px; font-weight:700; text-transform:uppercase; margin-bottom:12px; }
.project-status.done { background:#dcfce7; color:#166534; }
.project-status.wip { background:#fef3c7; color:#92400e; }

/* ── LOCATIES (locaties.html) ── */
.locaties-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; max-width:700px; margin:0 auto; }
.locatie-card { background:var(--card); border-radius:var(--radius); padding:36px 28px; border:1px solid var(--border); box-shadow:var(--shadow); text-align:center; }
.locatie-icon { font-size:40px; margin-bottom:12px; }
.locatie-badge { display:inline-block; padding:3px 12px; border-radius:20px; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px; background:#fee2e2; color:#991b1b; }
.locatie-badge.hoofdkantoor { background:linear-gradient(90deg,#fef08a,#fde047); color:#713f12; }
.locatie-card h3 { font-size:1.2rem; font-weight:700; margin-bottom:6px; }
.locatie-adres { font-size:.9rem; color:var(--text-muted); }

/* ── CONTACT PAGE ── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; max-width:1100px; margin:0 auto; }
.contact-types { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.contact-type-card { background:var(--bg); border-radius:var(--radius); padding:20px; border:1px solid var(--border); text-align:center; font-size:.9rem; }
.contact-type-card p { color:var(--text-muted); font-size:.82rem; margin-top:4px; }

/* ── FOOTER (new multi-column) ── */
footer { background:var(--bg-dark); color:rgba(255,255,255,.5); padding:56px 5% 0; }
.footer-inner { display:flex; gap:48px; align-items:flex-start; flex-wrap:wrap; border-bottom:1px solid rgba(255,255,255,.07); padding-bottom:48px; }
.footer-brand { display:flex; gap:14px; align-items:center; flex:1; min-width:220px; }
.footer-brand img { height:44px; filter:brightness(0) invert(1); opacity:.7; }
.footer-title { color:#fff; font-size:1rem; font-weight:700; }
.footer-sub { font-size:.8rem; opacity:.5; }
.footer-links-grid { display:flex; gap:48px; flex-wrap:wrap; }
.footer-links-grid > div { display:flex; flex-direction:column; gap:10px; min-width:130px; }
.footer-group-title { color:rgba(255,255,255,.3); font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; margin-bottom:4px; }
.footer-links-grid a { color:rgba(255,255,255,.55); text-decoration:none; font-size:13px; transition:color .2s; }
.footer-links-grid a:hover { color:#fff; }
.footer-bottom { padding:20px 0; text-align:center; font-size:12px; color:rgba(255,255,255,.2); }

/* footer-logo en footer-links zijn verwijderd in v5 */

/* ── PANDEN LIST (makelaars) ── */
.panden-list { display:flex; flex-direction:column; gap:12px; }
.pand-card { background:var(--bg); border-radius:10px; padding:14px 16px; border:1px solid var(--border); display:flex; flex-direction:column; gap:4px; }
.pand-card strong { font-size:.95rem; }
.pand-card span { color:var(--text-muted); font-size:.82rem; }
.pand-status { display:inline-block; padding:2px 10px; border-radius:20px; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; margin-bottom:4px; background:#dcfce7; color:#166534; }
.pand-status.huur { background:#dbeafe; color:#1e40af; }
.pand-status.koop { background:#dcfce7; color:#166534; }
.pand-status.verkocht { background:#fee2e2; color:#991b1b; }
.pand-link { font-size:.8rem; color:var(--red); font-weight:600; text-decoration:none; margin-top:4px; }
.pand-link:hover { text-decoration:underline; }

/* ── BESCHIKBAARHEID BOX (bouwservice) ── */
.beschikbaarheid-box { background:var(--bg); border-radius:12px; padding:20px; border:1px solid var(--border); margin-top:20px; }
.beschikbaarheid-title { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--text-muted); margin-bottom:12px; }
.beschikbaarheid-row { display:flex; align-items:flex-start; gap:10px; font-size:.88rem; margin-bottom:8px; }
.status-dot { width:14px; height:14px; border-radius:50%; flex-shrink:0; margin-top:2px; }
.status-dot.rood { background:#ef4444; }
.status-dot.geel { background:#eab308; }
.status-dot.groen { background:#22c55e; }
.beschikbaarheid-legenda { display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; font-size:.75rem; color:var(--text-muted); border-top:1px solid var(--border); padding-top:10px; }

/* ── AANNEMER STATUS (team card) ── */
.aannemer-status { display:inline-block; padding:5px 12px; border-radius:20px; font-size:11px; font-weight:600; }
.aannemer-status.rood { background:#fee2e2; color:#991b1b; }
.aannemer-status.geel { background:#fef3c7; color:#92400e; }
.aannemer-status.groen { background:#dcfce7; color:#166534; }

.reveal { opacity:0; transform:translateY(30px); transition:opacity .6s ease,transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }
.reveal-delay-4 { transition-delay:.4s; }

@media(max-width:900px) {
  .over-grid,.contact-grid { grid-template-columns:1fr; }
  .portfolio-grid { grid-template-columns:1fr 1fr; }
  .portfolio-item:first-child { grid-column:1/3; }
  .dienst-detail-grid,.dienst-detail-grid.reverse { grid-template-columns:1fr; direction:ltr; }
  .project-block { grid-template-columns:1fr; }
  .team-card { flex-direction:column; }
  .team-grid { grid-template-columns:1fr; }
}
@media(max-width:640px) {
  section { padding:72px 5%; }
  .nav-links { display:none; flex-direction:column; position:absolute; top:68px; left:0; right:0; background:rgba(255,255,255,.97); border-bottom:1px solid var(--border); padding:16px; gap:4px; }
  .nav-links.open { display:flex; }
  .hamburger { display:flex; }
  .portfolio-grid { grid-template-columns:1fr; }
  .portfolio-item:first-child { grid-column:1; }
  .contact-form { padding:24px 16px; }
  .contact-grid { grid-template-columns:1fr; gap:40px; }
  .footer-inner { flex-direction:column; }
  .footer-links-grid { gap:32px; }
  .contact-types { grid-template-columns:1fr; }
  .page-hero { height:260px; }
  .news-item { flex-direction:column; gap:6px; }
  .news-date { width:auto; }
}
