/* ==========================================================================
   verhuis meteen / WA Transport — Stylesheet
   Grafiet + brons/goud accent. Zakelijk, minimalistisch, mobile-first,
   accessible. Variabelenamen (--navy-*, --orange-*, --gray-*) zijn
   historisch maar bevatten nu de grafiet/brons-paletwaarden hieronder.
   ========================================================================== */

:root {
  /* Grafiet/inkt-tinten (voorheen navy) */
  --navy-950: #101112;
  --navy-900: #24262a;
  --navy-800: #43464b;
  --navy-700: #7a1a14;
  --navy-100: #e4e0d6;
  --navy-50: #eeece5;
  --white: #ffffff;
  /* Koel-neutrale grijstinten (voorheen warm grijs) */
  --gray-900: #24262a;
  --gray-700: #43464b;
  --gray-500: #5f615c;
  --gray-300: #d8d3c6;
  --gray-100: #eeece5;
  /* Rood accent (voorheen brons/amber) */
  --orange-500: #b3271e;
  --orange-600: #8a1f18;
  --orange-50: #f9e9e7;
  --green-600: #1c7530;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-btn: 10px;
  --shadow-sm: 0 1px 3px rgba(16, 17, 18, 0.08), 0 1px 2px rgba(16, 17, 18, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 17, 18, 0.10);
  --shadow-lg: 0 18px 40px rgba(16, 17, 18, 0.14);
  --container: 1180px;
  --header-h: 76px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'IBM Plex Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: #faf9f6;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px; /* space for mobile sticky bar */
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 {
  color: var(--navy-900); font-family: var(--font-display); font-weight: 600;
  line-height: 1.16; letter-spacing: -0.015em; margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 4.8vw, 3.3rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.3rem); font-weight: 600; }
h3 { font-size: 1.24rem; font-weight: 600; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
section { padding: clamp(48px, 7vw, 96px) 0; }
.section-alt { background: var(--navy-50); }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--orange-600); margin-bottom: 10px;
}
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head p { color: var(--gray-500); font-size: 1.05rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Focus states for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--orange-500); outline-offset: 2px; border-radius: 4px;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy-900); color: #fff;
  padding: 12px 18px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 700; font-size: 0.98rem;
  padding: 13px 24px; border-radius: var(--radius-btn); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange-500); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #4d100c; color: #fff; box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--white); color: var(--navy-900); border-color: var(--gray-300); }
.btn-secondary:hover { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-whatsapp { background: var(--green-600); color: #fff; }
.btn-whatsapp:hover { background: #145c26; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn svg { flex-shrink: 0; }
.btn-icon { width: 44px; height: 44px; padding: 0; flex-shrink: 0; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(253,251,246,0.94);
  backdrop-filter: saturate(160%) blur(8px); border-bottom: 1px solid var(--gray-300);
  height: var(--header-h);
}
.site-header .inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
.logo { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; text-decoration: none; line-height: 1.3; flex-shrink: 0; }
.logo-mark { height: 42px; width: auto; display: block; }
.logo-tagline { color: var(--orange-600); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

@media (max-width: 479px) {
  .site-header .inner { position: relative; }
  .site-header .logo {
    position: absolute; left: 50%; top: 56%; transform: translate(-50%, -50%);
    align-items: center; text-align: center; margin: 0;
  }
}

.main-nav { display: none; }
@media (min-width: 1080px) {
  .main-nav { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
  .main-nav a {
    display: inline-block; padding: 10px 14px; text-decoration: none; color: var(--gray-700);
    font-weight: 600; font-size: 0.95rem; border-radius: 999px; transition: background .15s, color .15s;
  }
  .main-nav a:hover, .main-nav a.active { background: var(--navy-50); color: var(--navy-900); }
}

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-actions .btn-icon { display: none; }
@media (min-width: 640px) { .header-actions .btn-icon { display: inline-flex; } }
.header-actions .btn-primary { display: none; padding: 12px 20px; font-size: 0.92rem; }
@media (min-width: 480px) { .header-actions .btn-primary { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 10px; border: 1px solid var(--gray-300); background: #fff; cursor: pointer;
  color: var(--navy-950);
}
@media (min-width: 1080px) { .nav-toggle { display: none; } }

.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 0 0; background: #fff; z-index: 99;
  overflow-y: auto; padding: 12px 20px 32px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav ul a {
  display: block; padding: 16px 4px; text-decoration: none; color: var(--navy-700);
  font-weight: 700; font-size: 1.15rem; border-bottom: 1px solid var(--gray-100);
}
.mobile-nav .cta-row { flex-direction: column; }
.mobile-nav .cta-row .btn { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-50);
  border-bottom: 1px solid var(--gray-300);
  padding: 56px 0 64px;
}
.hero-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; } }
.hero .eyebrow {
  background: var(--orange-50); color: var(--orange-600); font-weight: 800; font-size: 0.85rem;
  padding: 7px 16px; border-radius: 999px; border: 1px solid rgba(179,39,30,0.18);
}
.hero h1 { color: var(--navy-900); }
.hero p.lead { color: var(--gray-700); font-size: 1.15rem; max-width: 560px; }
.hero-media {
  border-radius: 0; overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative; border: 1px solid var(--gray-300);
}
/* aspect-ratio is set inline per photo (matching its real pixel size) so the
   full image is shown, scaled rather than cropped; this 4/3 is only a
   fallback for the rare case the inline value is missing. */
.hero-media img { width: 100%; height: auto; aspect-ratio: 4/3; display: block; }
.hero-media.portrait { aspect-ratio: 3/4; }
@media (min-width: 960px) { .hero-media.portrait { aspect-ratio: 4/5; } }

.trust-bar { background: #fff; border-top: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); padding: 18px 0; }
.trust-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center; }
.trust-list li { color: var(--navy-800); font-weight: 600; font-size: 0.92rem; display: flex; align-items: center; gap: 8px; }
.trust-list svg { color: var(--orange-600); flex-shrink: 0; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--gray-300); border-radius: var(--radius-md);
  padding: 30px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--orange-500); }
.card .icon-badge { margin-bottom: 16px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray-500); flex-grow: 1; }
.card .btn { margin-top: 18px; align-self: flex-start; }

.icon-badge {
  width: 54px; height: 54px; border-radius: 14px; background: #fff; border: 1.5px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center; color: var(--navy-800); flex-shrink: 0;
}
.icon-badge.orange { background: var(--orange-50); border-color: var(--orange-500); color: var(--orange-600); }

.usp-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .usp-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .usp-grid { grid-template-columns: repeat(3, 1fr); } }
.usp-item { display: flex; gap: 16px; align-items: flex-start; }
.usp-item .icon-badge { width: 48px; height: 48px; border-radius: 12px; }
.usp-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.usp-item p { color: var(--gray-500); font-size: 0.96rem; margin-bottom: 0; }

/* ---------- Split sections (image + text) ---------- */
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 60px; } }
.split.reverse .split-media { order: -1; }
@media (min-width: 900px) { .split.reverse .split-media { order: 2; } }
.split-media img { border-radius: 0; box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--gray-300); }
.split-media.portrait img { aspect-ratio: 3/4; }
.split ul.check-list { list-style: none; padding: 0; margin: 18px 0; }
.split ul.check-list li { position: relative; padding-left: 30px; margin-bottom: 10px; color: var(--gray-700); }
.split ul.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange-50); border: 1px solid var(--orange-500);
}
.split ul.check-list li::after {
  content: ""; position: absolute; left: 5px; top: 8px; width: 8px; height: 4px;
  border-left: 2px solid var(--orange-600); border-bottom: 2px solid var(--orange-600); transform: rotate(-45deg);
}

.quote-callout {
  background: var(--navy-50); border-left: 4px solid var(--orange-500); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px; font-style: italic; color: var(--navy-800); font-size: 1.02rem; margin: 20px 0;
}

/* ---------- NIWO / trust banner ---------- */
.trust-panel {
  background: #fff; border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg); padding: clamp(30px, 5vw, 56px);
  display: grid; gap: 32px; align-items: center;
}
@media (min-width: 860px) { .trust-panel { grid-template-columns: auto 1fr; } }
.niwo-badge {
  width: 148px; height: 148px; border-radius: 50%; background: var(--orange-50);
  border: 2px solid var(--orange-500); display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; margin: 0 auto; flex-shrink: 0;
}
.niwo-badge strong { font-size: 1.5rem; letter-spacing: 0.03em; color: var(--orange-600); }
.niwo-badge span { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-700); margin-top: 4px; }
.trust-panel p { color: var(--gray-500); }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 28px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-top: 8px; }
.step .num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--navy-900); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem; margin-bottom: 16px;
}
.step h3 { margin-bottom: 6px; font-size: 1.05rem; }
.step p { color: var(--gray-500); font-size: 0.95rem; }

/* ---------- Reviews ---------- */
.review-card {
  background: #fff; border: 1px solid var(--gray-300); border-radius: var(--radius-md); padding: 28px;
  height: 100%; display: flex; flex-direction: column;
}
.review-card p { font-size: 1.05rem; color: var(--navy-800); flex-grow: 1; }
.review-meta { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px; margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.review-meta strong { color: var(--navy-900); font-size: 0.95rem; }
.review-meta a { color: var(--gray-500); font-size: 0.82rem; text-decoration: none; }
.review-meta a:hover { color: var(--orange-600); text-decoration: underline; }
.review-stars { color: var(--orange-600); letter-spacing: 2px; margin-bottom: 10px; font-size: 1.1rem; }
.review-placeholder {
  border: 1px dashed var(--gray-300); border-radius: var(--radius-md); padding: 40px 26px; text-align: center; color: var(--gray-500);
  background: var(--navy-50);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-300); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 4px; font-weight: 700; color: var(--navy-900); font-size: 1.03rem; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--navy-50); position: relative; }
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ""; position: absolute; background: var(--navy-800); left: 50%; top: 50%; transform: translate(-50%,-50%);
}
.faq-item summary .plus::before { width: 12px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 12px; transition: opacity .15s; }
.faq-item[open] summary .plus::after { opacity: 0; }
.faq-item p { padding: 0 4px 20px; color: var(--gray-500); }

/* ---------- Form ---------- */
.form-panel { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(24px, 4vw, 44px); border: 1px solid var(--gray-300); }
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--navy-900); }
.field .hint { font-weight: 400; color: var(--gray-500); font-size: 0.82rem; }
.field input[type=text], .field input[type=tel], .field input[type=email], .field input[type=date],
.field input[type=number], .field select, .field textarea, .field input[type=file] {
  font-family: var(--font-sans); font-size: 1rem; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-300); background: #fff; color: var(--gray-900); width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy-700); }
.radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-group label { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--gray-700); }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; }
.checkbox-field input { margin-top: 4px; width: 18px; height: 18px; flex-shrink: 0; }
.checkbox-field label { font-size: 0.92rem; color: var(--gray-700); }
.form-msg { display: none; margin-top: 18px; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--orange-50); color: var(--navy-900); font-weight: 600; }
.form-msg.visible { display: block; }

/* ---------- Big CTA band ---------- */
.cta-band {
  background: var(--orange-500); border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 60px); text-align: center; color: var(--navy-950);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.08rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-band .cta-row { justify-content: center; }
.cta-band .btn-primary { background: var(--navy-950); color: #fff; box-shadow: none; }
.cta-band .btn-primary:hover { background: var(--navy-900); color: #fff; }
.cta-band .btn-secondary { background: transparent; border-color: rgba(255,255,255,0.7); color: #fff; }
.cta-band .btn-secondary:hover { background: #fff; color: var(--navy-950); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--navy-50); border-bottom: 1px solid var(--gray-300); padding: 48px 0 56px; }
.page-hero .breadcrumb { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 14px; }
.page-hero .breadcrumb a { color: var(--gray-700); text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { color: var(--navy-900); margin-bottom: 14px; }
.page-hero p.lead { color: var(--gray-700); font-size: 1.1rem; max-width: 640px; }

/* ---------- Map / werkgebied ---------- */
.area-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; align-items: start; }
@media (min-width: 600px) { .area-list { grid-template-columns: repeat(3,1fr); } }
.area-list li {
  background: #fff; border: 1px solid var(--gray-300); border-radius: 999px; padding: 10px 16px;
  text-align: center; font-weight: 600; color: var(--navy-800); font-size: 0.92rem;
}
.area-list li.main { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

.map-graphic { position: relative; border-radius: 0; overflow: hidden; background: var(--navy-50); border: 1px solid var(--gray-300); }
.map-graphic svg { width: 100%; height: 100%; aspect-ratio: 4/3; display: block; }
/* aspect-ratio is set inline per photo (matching its real pixel size) so the
   full image is shown, scaled rather than cropped. */
.map-graphic img { width: 100%; height: auto; aspect-ratio: 4/3; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.72); padding: 56px 0 24px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; margin-bottom: 40px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-grid h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.site-footer .logo-tagline { color: #e2584c; }
.site-footer p { color: rgba(255,255,255,0.62); font-size: 0.94rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.94rem; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.48); }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); color: #fff; transition: background .15s ease, color .15s ease, transform .15s ease;
}
.social-row a:hover { background: var(--orange-500); color: #fff; transform: translateY(-2px); }
.social-row-light a { background: var(--navy-50); color: var(--navy-800); }
.social-row-light a:hover { background: var(--orange-500); color: #fff; }

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: flex;
  background: #fff; border-top: 1px solid var(--gray-300); box-shadow: 0 -4px 18px rgba(43,38,32,0.10);
}
@media (min-width: 900px) { .mobile-bar { display: none; } }
.mobile-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 8px; font-weight: 700; font-size: 0.92rem; text-decoration: none;
}
.mobile-bar a.call { color: var(--navy-900); background: var(--navy-50); }
.mobile-bar a.whatsapp { color: #fff; background: var(--green-600); }
.mobile-bar a.quote { color: #fff; background: var(--orange-500); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px; background: var(--orange-50); color: var(--orange-600);
  font-weight: 700; font-size: 0.78rem; padding: 6px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em;
}
.two-col-text { columns: 1; }
.contact-details { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.contact-details li { display: flex; gap: 14px; align-items: flex-start; }
.contact-details .icon-badge { flex-shrink: 0; }
.contact-details strong { display: block; color: var(--navy-900); }
.contact-details a { color: var(--navy-800); text-decoration: none; font-weight: 600; }
.contact-details a:hover { text-decoration: underline; }

.photo-placeholder {
  background: repeating-linear-gradient(135deg, var(--navy-100), var(--navy-100) 10px, #fff 10px, #fff 20px);
  border: 1px dashed var(--gray-300); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); font-size: 0.85rem; text-align: center; padding: 20px;
}
