/* ============================================================
   DrivOlution — working copy (1:1 recreation)
   Clean, hand-written CSS. Font + colors + layout mirror the
   live site (drivolution.be/nl). Do not publish.
   ============================================================ */

/* ---------- Font ---------- */
@font-face {
  font-family: "Gabarito";
  src: url("../assets/fonts/Gabarito-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --blue: #3838df;
  --blue-dark: #262699;
  --purple: #8844ff;
  --purple-dark: #4700c4;
  --green: #33cc99;
  --green-dark: #1a664d;

  --ink: #0a0a0a;          /* headings */
  --text: #1c1c1c;         /* body */
  --muted: #67676f;        /* small grey labels (WCAG AA op wit) */
  --grey: #f3f3f3;         /* card surfaces */
  --grey-2: #e9e9ec;       /* image placeholders */
  --line: #ececec;

  --container: 1480px;
  --gutter: 24px;
  --radius: 32px;
  --radius-sm: 18px;
  --pill: 999px;

  --shadow-soft: 0 30px 60px -30px rgba(20, 20, 60, .25);

  font-family: "Gabarito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Gabarito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.56;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 700; margin: 0; line-height: 1.12; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
}
.topbar__left { display: flex; align-items: center; gap: 10px; }
.topbar__left svg { width: 15px; height: 15px; }
.topbar__left .hours { font-weight: 700; }
.topbar__phone { display: inline-flex; align-items: center; gap: 8px; }
.topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__search {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border-radius: var(--pill);
  padding: 6px 16px; width: 210px;
}
.topbar__search input {
  background: transparent; border: 0; outline: 0; color: #fff;
  width: 100%; font: inherit; font-size: 13px;
}
.topbar__search input::placeholder { color: rgba(255,255,255,.7); }
.topbar__search svg { width: 15px; height: 15px; opacity: .85; }
.topbar__lang { display: flex; gap: 10px; font-weight: 700; }
.topbar__lang a { opacity: .6; }
.topbar__lang a.is-active { opacity: 1; }

/* redesign topbar: trust + taal-toggle (vervangt de zoekbalk) */
.topbar__trust { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 13px; color: #fff; }
.topbar__trust .star { color: #ffd23f; font-size: 15px; }
.topbar__trust:hover { text-decoration: underline; }
.lang-toggle { display: inline-flex; background: rgba(255,255,255,.16); border-radius: var(--pill); padding: 3px; }
.lang-toggle a { padding: 5px 14px; border-radius: var(--pill); font-weight: 700; font-size: 13px; color: rgba(255,255,255,.8); line-height: 1; transition: background-color .15s ease, color .15s ease; }
.lang-toggle a.is-active { background: #fff; color: var(--blue); }
.lang-toggle a:not(.is-active):hover { color: #fff; }

/* header-CTA rechtsboven, ook op de binnenpagina's (die alleen styles.css laden) */
.header-cta { order: 2; }
.site-header .nav__links { order: 1; }
@media (max-width: 640px) { .topbar__trust { display: none; } }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 96px; gap: 24px;
}
.logo { display: inline-flex; align-items: center; gap: 13px; color: var(--blue); }
.logo svg, .logo img { width: 46px; height: 46px; }
.logo__word {
  display: block; width: 150px; height: 26px; background-color: #2b2b2b;
  -webkit-mask: url("../assets/icons/logo-wordmark.svg") left center/contain no-repeat;
  mask: url("../assets/icons/logo-wordmark.svg") left center/contain no-repeat;
}
@media (max-width: 560px) { .logo__word { display: none; } }
.nav { display: flex; align-items: center; gap: 30px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-weight: 600; font-size: 16px; color: var(--ink);
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--blue); }
.nav__links a.is-active { color: var(--blue); }

.nav-toggle { display: none; }
.hamburger { display: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 16px; line-height: 1;
  padding: 15px 26px; border-radius: var(--pill);
  border: 2px solid transparent; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 14px; flex: none; }
.btn .arrow { display: inline-flex; }

.btn--primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.btn--purple { background: var(--purple); color: #fff; border-radius: var(--pill); padding: 11px 22px; }
.btn--purple:hover { background: var(--purple-dark); }

.btn--dark { background: var(--blue-dark); color: #fff; }
.btn--dark:hover { background: #1a1a6e; }

.btn--white { background: #fff; color: var(--green); }
.btn--white:hover { background: #f0fff9; }

.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: #fff; }
.btn--outline.green { color: var(--green); border-color: var(--green); }
.btn--outline.green:hover { background: var(--green); color: #fff; }
.btn--outline.purple { color: var(--purple); border-color: var(--purple); }
.btn--outline.purple:hover { background: var(--purple); color: #fff; }

/* circular arrow */
.circle-arrow {
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff; flex: none;
  transition: transform .18s ease, background-color .18s ease;
}
.circle-arrow svg { width: 20px; height: 15px; }
.circle-arrow.green { background: var(--green); }
.circle-arrow:hover { transform: translateX(3px); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--muted); font-weight: 600;
  padding: 28px 0 0;
}
.breadcrumb a { color: #cfcfcf; }
.breadcrumb .sep { color: #cfcfcf; }
.breadcrumb .current { color: var(--ink); }

/* ============================================================
   SECTIONS / HELPERS
   ============================================================ */
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section-title {
  text-align: center; font-size: 42px; font-weight: 700; color: var(--ink);
  margin-bottom: 12px;
}
.section-lead { text-align: center; color: var(--text); max-width: 640px; margin: 0 auto; }

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero { padding-top: 8px; padding-bottom: 40px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 24px;
}
.hero__main {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 470px; display: flex; align-items: center;
  background: #111;
}
.hero__main img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__main::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.5) 42%, rgba(0,0,0,.05) 100%);
}
.hero__content { position: relative; z-index: 2; color: #fff; padding: 48px; max-width: 560px; }
.hero__content h1 { color: #fff; font-size: 40px; font-weight: 600; line-height: 1.15; margin-bottom: 18px; }
.hero__content p { color: rgba(255,255,255,.92); font-size: 17px; margin-bottom: 22px; max-width: 430px; }
.hero__usps { display: grid; gap: 12px; margin-bottom: 28px; }
.hero__usps li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.hero__usps .check {
  width: 22px; height: 22px; flex: none;
  background: var(--green); border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
}
.hero__usps .check svg { width: 12px; height: 12px; }

.hero__aside { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }
.promo-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 223px; display: flex; align-items: flex-end;
  color: #fff;
}
.promo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.55) 100%);
}
.promo-card__body {
  position: relative; z-index: 2; padding: 26px 28px;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.promo-card__body h3 { color: #fff; font-size: 26px; font-weight: 700; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: #fafafb; }
.stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 44px;
}
.stat-card {
  background: var(--grey); border-radius: var(--radius);
  padding: 34px 34px 30px; min-height: 168px;
}
.stat-card .num { font-size: 42px; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: 16px; }
.stat-card .label { font-weight: 700; color: var(--ink); }
.stat-card .sub { color: var(--muted); font-size: 15px; }
.stat-card--cta { display: flex; flex-direction: column; justify-content: center; }
.stat-card--cta .label { margin-bottom: 18px; font-size: 20px; }

/* ============================================================
   PROFILE SELECTOR (dark bg + blue card)
   ============================================================ */
.profile {
  position: relative; color: #fff;
  background: #4a4a4a center/cover no-repeat;
  padding: 72px 0 96px;
}
.profile::before {
  content: ""; position: absolute; inset: 0; background: rgba(38,38,46,.62);
}
.profile > .container { position: relative; z-index: 2; }
.profile h2 { color: #fff; font-size: 42px; margin-bottom: 26px; }
.profile__card {
  background: var(--blue); border-radius: var(--radius);
  padding: 44px 48px;
}
.profile__card > p { font-size: 20px; font-weight: 600; margin-bottom: 34px; }
.profile__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
/* mask-based icons (url resolves relative to THIS stylesheet, so ../assets) */
.ico { display: block;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain; }
.i-wheel { -webkit-mask-image: url("../assets/icons/ic-wheel.svg"); mask-image: url("../assets/icons/ic-wheel.svg"); }
.i-team { -webkit-mask-image: url("../assets/icons/ic-team.svg"); mask-image: url("../assets/icons/ic-team.svg"); }
.i-party { -webkit-mask-image: url("../assets/icons/ic-party.svg"); mask-image: url("../assets/icons/ic-party.svg"); }
.i-data { -webkit-mask-image: url("../assets/icons/ic-data.svg"); mask-image: url("../assets/icons/ic-data.svg"); }
.i-badge { -webkit-mask-image: url("../assets/icons/ic-badge.svg"); mask-image: url("../assets/icons/ic-badge.svg"); }
.i-clipboard { -webkit-mask-image: url("../assets/icons/ic-clipboard.svg"); mask-image: url("../assets/icons/ic-clipboard.svg"); }
.i-pins { -webkit-mask-image: url("../assets/icons/ic-pins.svg"); mask-image: url("../assets/icons/ic-pins.svg"); }
.i-shapes { -webkit-mask-image: url("../assets/icons/ic-shapes.svg"); mask-image: url("../assets/icons/ic-shapes.svg"); }
.i-tw { -webkit-mask-image: url("../assets/icons/soc-twitter.svg"); mask-image: url("../assets/icons/soc-twitter.svg"); }
.i-li { -webkit-mask-image: url("../assets/icons/soc-linkedin.svg"); mask-image: url("../assets/icons/soc-linkedin.svg"); }
.i-fb { -webkit-mask-image: url("../assets/icons/soc-facebook.svg"); mask-image: url("../assets/icons/soc-facebook.svg"); }

.profile__col .ic { width: 46px; height: 46px; margin-bottom: 16px; background-color: #fff; }
.profile__col h3 { color: #fff; font-size: 20px; margin-bottom: 12px; }
.profile__col p { color: rgba(255,255,255,.9); font-size: 15px; margin: 0; }
.profile__actions { display: flex; justify-content: flex-end; margin-top: 30px; }

/* ============================================================
   SOLUTION BLOCKS (alternating text / image, color themes)
   ============================================================ */
.solutions { padding: 72px 0 40px; }
.solutions__head { margin-bottom: 20px; }
.solutions__head h2 { text-align: center; font-size: 42px; margin-bottom: 12px; }
.solutions__head p { text-align: center; color: var(--text); }

.solution {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: 0; margin: 40px 0;
}
.solution__text {
  background: var(--grey); border-radius: var(--radius);
  padding: 48px 52px; z-index: 2;
}
.solution__text h2 { font-size: 30px; margin-bottom: 16px; }
.solution__text p { color: var(--text); margin-bottom: 26px; }
.solution__media {
  border-radius: var(--radius); overflow: hidden; background: var(--grey-2);
  aspect-ratio: 15 / 11; align-self: stretch;
}
.solution__media img { width: 100%; height: 100%; object-fit: cover; }

/* text left, image right (default): media overlaps text slightly */
.solution .solution__text { margin-right: -60px; }
.solution .solution__media { order: 2; margin-top: 40px; margin-bottom: 40px; }
/* image left variant */
.solution--imgleft .solution__text { order: 2; margin-right: 0; margin-left: -60px; }
.solution--imgleft .solution__media { order: 1; }

/* ============================================================
   GREEN CTA BAND
   ============================================================ */
.cta-band { background: var(--green); color: #fff; text-align: center; padding: 64px 0; position: relative; }
.cta-band h2 { color: #fff; font-size: 38px; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.95); max-width: 620px; margin: 0 auto 28px; }

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.benefits { padding: 80px 0; }
.benefits h2 { text-align: center; font-size: 42px; margin-bottom: 48px; }
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit {
  background: var(--grey); border-radius: var(--radius); padding: 34px 34px 32px;
}
.benefit .ic { width: 46px; height: 46px; margin-bottom: 22px; background-color: var(--blue); }
.benefit h3 { font-size: 19px; margin-bottom: 10px; }
.benefit p { color: var(--text); font-size: 15px; margin: 0; }

/* ============================================================
   LOCATIONS (reuses .solution look, blue chips)
   ============================================================ */
.chips { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; max-width: 460px; }
.chip {
  background: #fff; border-radius: var(--pill); padding: 12px 26px;
  font-weight: 700; color: var(--ink); box-shadow: 0 8px 24px -14px rgba(0,0,0,.25);
}

/* ============================================================
   CONTACT (dark bg, white cards)
   ============================================================ */
.contact {
  position: relative; color: #fff; padding: 96px 0;
  background: #4a4a4a center/cover no-repeat;
}
.contact::before { content: ""; position: absolute; inset: 0; background: rgba(35,35,40,.55); }
.contact > .container { position: relative; z-index: 2; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: start; }
.contact__title { font-size: 40px; color: #fff; margin-bottom: 40px; line-height: 1.12; }
.contact__card {
  background: #fff; color: var(--text); border-radius: var(--radius); padding: 40px;
}
.contact__card h2, .contact__card h3 { color: var(--ink); }
.info-card h2 { font-size: 34px; margin-bottom: 22px; }
.info-card address { font-style: normal; color: var(--text); margin-bottom: 20px; line-height: 1.7; }
.info-card .row { display: flex; align-items: center; gap: 12px; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.info-card .row svg { width: 18px; height: 18px; }

.form-card h3 { font-size: 26px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--text);
  border: 1px solid #dcdce3; border-radius: 26px; padding: 16px 22px;
  background: #fff; outline: none;
}
.field textarea { border-radius: 22px; min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-actions { display: flex; justify-content: flex-end; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--blue); color: #fff; }
.site-footer__top { padding: 64px 0 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-brand .wordmark { display: block; width: 210px; height: 48px; margin-bottom: 40px; background-color: #fff;
  -webkit-mask: url("../assets/icons/logo-wordmark.svg") left center/contain no-repeat;
  mask: url("../assets/icons/logo-wordmark.svg") left center/contain no-repeat; }
.footer-brand .socials { display: flex; gap: 22px; margin-bottom: 18px; }
.footer-brand .socials a { width: 20px; height: 20px; background-color: #fff; opacity: .95; }
.footer-brand .socials a:hover { opacity: 1; }
.footer-brand .copyright { color: rgba(255,255,255,.8); font-size: 14px; }
.footer-col h4 { text-transform: uppercase; letter-spacing: .12em; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.75); margin-bottom: 22px; }
.footer-col li { margin-bottom: 14px; }
.footer-col a { color: #fff; opacity: .95; }
.footer-col a:hover { text-decoration: underline; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.18); padding: 20px 0;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,.9);
}
.site-footer__bottom a { color: rgba(255,255,255,.9); }
.site-footer__bottom .spark { margin-left: auto; opacity: .9; }

/* ============================================================
   INNER PAGE BANNER (breadcrumb + text + swoosh)
   ============================================================ */
.page-banner { position: relative; overflow: hidden; }
.page-banner__swoosh {
  position: absolute; top: -40px; right: -60px; width: 720px; color: #eaeaea;
  pointer-events: none; z-index: 0;
}
.page-banner__swoosh svg { width: 100%; height: auto; }
.page-banner .container { position: relative; z-index: 1; }
.page-banner__inner { max-width: 620px; padding: 40px 0 70px; }
.page-banner h1 { font-size: 52px; font-weight: 700; color: var(--ink); margin-bottom: 22px; }
.page-banner p { color: var(--text); margin-bottom: 22px; }
.page-banner h2 { font-size: 28px; margin-bottom: 20px; }

/* ============================================================
   CASES GRID
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 270px; color: #fff; background: #3a3a3a; display: block;
}
.case-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,25,.45), rgba(20,20,25,.72)); }
.case-card__body { position: relative; z-index: 2; padding: 30px 30px 30px; height: 100%; display: flex; flex-direction: column; }
.case-card__cat { text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: 14px; }
.case-card__cat::after { content: ""; display: block; width: 34px; height: 3px; background: #fff; margin-top: 10px; border-radius: 2px; }
.case-card__num { font-size: 46px; font-weight: 700; line-height: 1; margin-top: auto; }
.case-card__lbl { font-size: 15px; margin-top: 4px; }
.case-card .circle-arrow { position: absolute; right: 26px; bottom: 26px; z-index: 3; width: 44px; height: 44px; }

/* ============================================================
   TEAM GRID
   ============================================================ */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.team-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--grey-2); min-height: 420px; display: flex; align-items: center;
}
.team-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card__body { position: relative; z-index: 2; padding: 0 0 0 34px; }
.team-card__name { font-size: 34px; font-weight: 400; color: var(--ink); line-height: 1.05; }
.team-card__name strong { display: block; font-weight: 700; }
.team-card__role {
  display: inline-block; margin-top: 14px; background: var(--purple); color: #fff;
  text-transform: uppercase; letter-spacing: .06em; font-size: 12px; font-weight: 700;
  padding: 7px 16px; border-radius: var(--pill);
}

/* ============================================================
   REPORTS (testverslagen) GRID
   ============================================================ */
.reports-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.report-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 300px; color: #fff; background: #555; display: flex; align-items: flex-end;
}
.report-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.report-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,25,.15) 30%, rgba(20,20,25,.8)); }
.report-card__body { position: relative; z-index: 2; padding: 30px; width: 100%; }
.report-card__date { position: absolute; top: 22px; right: 22px; background: #fff; color: var(--ink); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: var(--pill); z-index: 3; }
.report-card h3 { color: #fff; font-size: 22px; margin-bottom: 18px; }
.report-card__body .btn { background: #0a0a0a; color: #fff; border-color: #0a0a0a; padding: 11px 20px; }

/* ============================================================
   CODE 95 sub-nav + calendar
   ============================================================ */
.subnav { background: var(--purple); color: #fff; }
.subnav .container { display: flex; justify-content: flex-end; gap: 34px; min-height: 50px; align-items: center; }
.subnav a { color: #fff; font-weight: 700; font-size: 15px; opacity: .8; }
.subnav a.is-active { opacity: 1; }

.calendar { display: grid; gap: 16px; }
.cal-cat { color: var(--purple); font-weight: 700; margin: 10px 0 4px; }
.cal-row {
  background: var(--grey); border-radius: var(--radius);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto; align-items: center;
  gap: 20px; padding: 24px 30px;
}
.cal-row__title { font-weight: 700; color: var(--ink); font-size: 18px; }
.cal-row__title small { display: block; color: var(--purple); font-weight: 700; font-size: 14px; margin-top: 4px; }
.cal-row__cell { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 600; }
.cal-row__cell svg { width: 20px; height: 20px; flex: none; }
.cal-row .circle-arrow { width: 42px; height: 42px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; gap: 20px; flex-wrap: wrap; }
.cal-head h1 { font-size: 52px; }

/* map / accessibility (contact) */
.map-embed { border-radius: var(--radius); overflow: hidden; min-height: 360px; background: var(--grey-2); }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.access-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.access h2 { font-size: 32px; margin: 34px 0 18px; }
.access h3 { font-size: 18px; margin: 18px 0 6px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__aside { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .solution .solution__text, .solution--imgleft .solution__text { margin: 0; }
  .solution .solution__media { margin: 0; }
  .profile__cols { grid-template-columns: 1fr; gap: 26px; }
  .contact__grid { grid-template-columns: 1fr; }
  .cal-row { grid-template-columns: 1fr 1fr; }
  .cal-row .circle-arrow { display: none; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .hamburger {
    display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px;
  }
  .hamburger span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; }
  .nav-toggle:checked ~ .nav .nav__links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: #fff; padding: 16px 24px; box-shadow: var(--shadow-soft);
  }
  .site-header .container { position: relative; }
  .stats__grid, .benefits__grid, .cards-3, .reports-featured, .team-grid { grid-template-columns: 1fr 1fr; }
  .solution { grid-template-columns: 1fr; }
  .solution__text { order: 2 !important; }
  .solution__media { order: 1 !important; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .section-title, .benefits h2, .solutions__head h2, .profile h2 { font-size: 32px; }
  .page-banner h1, .cal-head h1 { font-size: 38px; }
  .access-grid, .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .topbar__left .hours, .topbar__search { display: none; }
  .hero__aside { grid-template-columns: 1fr; }
  .stats__grid, .benefits__grid, .cards-3, .reports-featured, .team-grid, .form-row { grid-template-columns: 1fr; }
  .hero__content { padding: 32px 24px; }
  .hero__content h1 { font-size: 30px; }
  .solution__text { padding: 32px 26px; }
  .profile__card, .contact__card { padding: 28px 22px; }
  .cal-row { grid-template-columns: 1fr; gap: 8px; }
  .section, .benefits, .solutions { padding: 44px 0; }
}
