/* Motivana Ontstoppingsdiensten — design system
   Palette + type per brand-guidelines: navy #173279 authority, orange #ff751b CTA-only,
   Outfit 900 headings, Plus Jakarta Sans 400 body. */

:root {
  --navy: #173279;
  --navy-dark: #0F2260;
  --navy-hover: #122a68;
  --ice: #EEF2FA;
  --orange: #ff751b;
  --orange-hover: #e05f0a;
  --droplet: #1BA9E8;
  --white: #ffffff;
  --offwhite: #f7f8fa;
  --ink: #1a1a1a;
  --muted: #5a616e;
  --border: #e5e7eb;
  --success: #16a34a;
  --error: #dc2626;
  --radius-card: 8px;
  --radius-btn: 6px;
  --shadow-card: 0 10px 30px rgba(15, 34, 96, 0.10);
  --ease: cubic-bezier(0.25, 1, 0.5, 1); /* ease-out-quart */
  /* z-scale: dropdown < sticky nav < mobile bar < drawer */
  --z-sticky: 20;
  --z-mobilebar: 30;
  --z-drawer: 40;
}

html { scroll-behavior: smooth; }
body { font-size: 1rem; line-height: 1.65; padding-bottom: 0; }
img { max-width: 100%; height: auto; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(48px, 8vw, 80px) 0; }
.section--ice { background: var(--ice); }
.section--offwhite { background: var(--offwhite); }
.section--navy { background: var(--navy); color: #fff; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); letter-spacing: -0.015em; color: var(--navy); }
.section--navy h2, .ctaband h2, .hero h2 { color: #fff; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); color: var(--navy); }
.lead { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 62ch; text-wrap: pretty; }
.section--navy .lead, .hero .lead, .pagehero .lead { color: rgba(255, 255, 255, 0.85); }
.sectionhead { max-width: 720px; margin-bottom: clamp(28px, 5vw, 48px); }
.sectionhead--center { margin-left: auto; margin-right: auto; text-align: center; }
.sectionhead p { margin-top: 12px; }
.accent-word { color: var(--orange); } /* only inside navy hero H1s: 3.9:1 on navy, large bold text */

.skiplink { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 10px 18px; z-index: 100; }
.skiplink:focus { left: 12px; top: 12px; }

/* ---------- Utility bar ---------- */
.utility__msg { display: flex; align-items: center; gap: 8px; margin: 0; }
.utility a { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px; padding: 8px 0; }
.utility a:hover strong { text-decoration: underline; }
@media (max-width: 640px) { .utility__msg { display: none; } .utility .wrap { justify-content: center; } }

/* ---------- Navigation ---------- */
.nav__links { display: flex; gap: clamp(14px, 2vw, 28px); }
.nav__links a { color: var(--ink); text-decoration: none; font-size: 0.9375rem; padding: 8px 2px; border-bottom: 2px solid transparent; transition: color 0.2s var(--ease), border-color 0.2s var(--ease); }
.nav__links a:hover { color: var(--navy); }
.nav__links a[aria-current="page"] { color: var(--navy); border-bottom-color: var(--orange); font-weight: 700; }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__tel { font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--navy); text-decoration: none; font-size: 1.0625rem; white-space: nowrap; }
.nav__tel:hover { text-decoration: underline; }
.btn--compact { padding: 11px 20px; min-height: 44px; font-size: 0.875rem; }
.nav__burger { display: none; }

@media (max-width: 960px) {
  .nav__links, .nav__tel { display: none; }
  .nav .wrap { min-height: 64px; gap: 12px; }
  .nav__logo img { width: 132px; height: auto; }
  .btn--compact { padding: 11px 14px; }
  .btn--compact .btn__label { display: none; }
  .nav__burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 48px; height: 48px; padding: 12px; background: none; border: 0; cursor: pointer; }
  .nav__burger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s; }
  .nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
.drawer { display: none; }
.drawer:not([hidden]) { display: flex; flex-direction: column; gap: 4px; padding: 16px 20px 24px; background: #fff; border-bottom: 1px solid var(--border); position: relative; z-index: var(--z-drawer); }
.drawer a { color: var(--ink); text-decoration: none; padding: 13px 8px; border-radius: 6px; font-size: 1.0625rem; }
.drawer a:hover { background: var(--ice); color: var(--navy); }
.drawer .btn { margin-top: 10px; }

/* ---------- Buttons ---------- */
.btn { transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease); cursor: pointer; text-align: center; }
.btn:active { transform: translateY(1px); }
.btn--primary:hover { background: var(--orange-hover); color: #fff; }
.btn--outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--outline:hover { background: rgba(23, 50, 121, 0.06); }
.btn--outline-white { border-color: #fff; color: #fff; background: transparent; }
.btn--outline-white:hover { background: rgba(255, 255, 255, 0.12); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btnrow { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 520px) { .btnrow { flex-direction: column; align-items: stretch; } .btnrow .btn { width: 100%; } }
.btn .icon { flex: none; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 80% 30%; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(92deg, rgba(15, 34, 96, 0.95) 0%, rgba(23, 50, 121, 0.88) 42%, rgba(23, 50, 121, 0.6) 72%, rgba(23, 50, 121, 0.38) 100%); }
.hero__inner { position: relative; z-index: 1; padding-block: clamp(56px, 8vw, 104px); }
.hero__content { max-width: 640px; }
.hero__pill { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px; padding: 8px 16px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 999px; background: rgba(255, 255, 255, 0.1); color: #fff; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.12em; }
.pill__dot { position: relative; display: inline-flex; width: 10px; height: 10px; }
.pill__dot span { position: relative; display: inline-flex; width: 10px; height: 10px; border-radius: 50%; background: #34d399; }
.pill__dot::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #34d399; opacity: 0.75; animation: pill-ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes pill-ping { 75%, 100% { transform: scale(2.4); opacity: 0; } }
.hero h1 { color: #fff; max-width: 16ch; }
.accent-word--underline { position: relative; display: inline-block; }
.accent-word--underline::after { content: ""; position: absolute; left: 2px; right: 6px; bottom: -0.12em; height: 0.16em; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 12' preserveAspectRatio='none'%3E%3Cpath d='M3 9c40-6 80-6 117-3 38 3 78 2 117-4' fill='none' stroke='%23ff751b' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat; opacity: 0.9; }
.hero .lead { margin-top: 18px; max-width: 52ch; }
.hero .btnrow { margin-top: 28px; }
.hero__checks { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 26px 0 0; font-size: 0.875rem; color: rgba(255, 255, 255, 0.82); }
.hero__checks li { display: flex; align-items: center; gap: 7px; }
.hero__checks .icon { color: #7ee2a8; }
.hero__checks--stacked { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 24px; font-size: 0.9375rem; color: rgba(255, 255, 255, 0.92); }
.hero__checks--stacked li { gap: 11px; }
.checkdisc { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(255, 117, 27, 0.24); }
.checkdisc .icon { color: #ffb27a; }
.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin: 22px 0 0; font-size: 0.875rem; color: rgba(255, 255, 255, 0.8); }
.hero__trust .icon { color: #7ee2a8; vertical-align: -3px; }
.hero__trust-sep { opacity: 0.5; }
.hero__trust-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
@media (max-width: 880px) {
  .hero__overlay { background: linear-gradient(180deg, rgba(15, 34, 96, 0.93) 0%, rgba(23, 50, 121, 0.88) 100%); }
  .hero__bg { object-position: 74% 30%; }
}
@media (prefers-reduced-motion: reduce) {
  .pill__dot::before { animation: none; opacity: 0; }
}

/* ---------- Werkgebied map (NL) ---------- */
.nlmap { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.nlmap__cardwrap { position: relative; max-width: 440px; width: 100%; margin-inline: auto; }
.nlmap__card { position: relative; aspect-ratio: 4 / 5; border: 1px solid var(--border); border-radius: 20px; background: #fff; padding: clamp(16px, 3vw, 28px); box-shadow: var(--shadow-card); }
.nlmap__card::before { content: ""; position: absolute; inset: 0; border-radius: 20px; background-image: radial-gradient(var(--navy) 1px, transparent 1px); background-size: 16px 16px; opacity: 0.05; pointer-events: none; }
.nlmap__svg { position: relative; width: 100%; height: 100%; }
.nlmap__float { position: absolute; display: flex; align-items: center; gap: 10px; margin: 0; padding: 12px 16px; border: 1px solid var(--border); border-radius: 14px; background: #fff; box-shadow: 0 14px 34px rgba(15, 34, 96, 0.16); }
.nlmap__float--tl { top: 28px; left: -18px; }
.nlmap__float--br { bottom: -16px; right: 16px; }
.nlmap__floaticon { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px; background: rgba(255, 117, 27, 0.12); color: var(--orange); flex: none; }
.nlmap__float strong { display: block; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1rem; line-height: 1; color: var(--navy); }
.nlmap__float span span { display: block; margin-top: 3px; font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.nlmap__live { position: absolute; top: 10px; right: 10px; display: inline-flex; align-items: center; gap: 7px; margin: 0; padding: 5px 12px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255, 255, 255, 0.92); font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); }
@media (max-width: 880px) {
  .nlmap { grid-template-columns: 1fr; }
  .nlmap__cardwrap { max-width: 380px; margin-inline: 0; }
  .nlmap__float--tl { left: -8px; }
}

/* ---------- Trust strip ---------- */
.truststrip { background: var(--ice); }
.truststrip__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; padding-block: 22px; }
.trustitem { display: flex; gap: 14px; align-items: flex-start; }
.trustitem .icon { color: var(--navy); flex: none; margin-top: 2px; }
.trustitem strong { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 0.9375rem; color: var(--navy); display: block; }
.trustitem span { font-size: 0.8125rem; color: var(--muted); }

/* ---------- Service cards ---------- */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.card { background: #fff; border: 1px solid var(--border); border-top: 3px solid var(--navy); border-radius: var(--radius-card); padding: 26px; display: flex; flex-direction: column; gap: 12px; transition: border-top-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease); }
.card:hover { border-top-color: var(--orange); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.card .icon { color: var(--navy); }
.card p { color: var(--muted); font-size: 0.9375rem; flex: 1; }
.card__ideal { font-size: 0.8125rem; color: var(--muted); font-style: italic; }
.card__link { color: var(--navy); text-decoration: none; font-weight: 700; font-size: 0.9375rem; display: inline-flex; align-items: center; gap: 6px; }
.card__link:hover { text-decoration: underline; }
.card__link .icon { transition: transform 0.2s var(--ease); }
.card:hover .card__link .icon { transform: translateX(4px); }

/* Photo-topped variant (diensten overview) */
.card--photo { padding: 0; overflow: hidden; }
.card--photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.card--photo .card__body { padding: 22px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

/* ---------- Werkwijze (4 steps) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; counter-reset: stap; }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 26px; }
.step__num { counter-increment: stap; width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: #fff; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.125rem; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step__num::before { content: counter(stap); }
.step h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.9375rem; margin: 0; }

/* ---------- Waarom / split section ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 72px); align-items: center; }
.split__media img { border-radius: 12px; display: block; width: 100%; box-shadow: var(--shadow-card); }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .icon { color: var(--success); flex: none; margin-top: 3px; }
.checklist strong { color: var(--navy); }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* ---------- Beloftes (replaces reviews until real ones exist) ---------- */
.promises { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.promise { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 26px; }
.promise .icon { color: var(--orange); margin-bottom: 12px; }
.promise h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.promise p { color: var(--muted); font-size: 0.9375rem; margin: 0; }

/* ---------- Werkgebied ---------- */
.gemeenten { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px; padding: 0; margin: 0; list-style: none; }
.gemeenten li { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 11px 14px; font-size: 0.9375rem; text-align: center; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); margin-bottom: 12px; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--navy); font-size: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--navy); transition: transform 0.25s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--navy-hover); }
.faq .faq__answer { padding: 0 22px 20px; color: var(--ink); font-size: 0.9375rem; }
.faq .faq__answer p { max-width: 68ch; }

/* ---------- CTA band ---------- */
.ctaband { background: var(--navy); color: #fff; padding: clamp(48px, 7vw, 72px) 0; }
.ctaband__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.ctaband p { color: rgba(255, 255, 255, 0.85); max-width: 55ch; margin: 0; }
.ctaband .btnrow { justify-content: center; }
.microtrust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 24px; padding: 0; margin: 4px 0 0; font-size: 0.8125rem; }
.microtrust li { display: flex; align-items: center; gap: 6px; }
.microtrust--light { color: rgba(255, 255, 255, 0.75); }
.microtrust--light .icon { color: #7ee2a8; }
.microtrust--dark { color: var(--muted); }
.microtrust--dark .icon { color: var(--success); }

/* ---------- Page hero (interior pages) ---------- */
.pagehero { background: var(--navy); color: #fff; padding: clamp(40px, 6vw, 64px) 0; }
.pagehero h1 { color: #fff; }
.pagehero .lead { margin-top: 14px; }
.pagehero .btnrow { margin-top: 24px; }
.breadcrumb { font-size: 0.8125rem; margin-bottom: 18px; color: rgba(255, 255, 255, 0.65); }
.breadcrumb a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Dienst detail ---------- */
.dienst-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.dienst-layout__media { position: sticky; top: 100px; }
.dienst-layout__media img { border-radius: 12px; display: block; width: 100%; box-shadow: var(--shadow-card); }
.stappen-inline { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; counter-reset: stap; }
.stappen-inline li { display: flex; gap: 14px; align-items: flex-start; }
.stappen-inline .step__num { width: 34px; height: 34px; font-size: 0.9375rem; margin: 0; flex: none; }
@media (max-width: 880px) { .dienst-layout { grid-template-columns: 1fr; } .dienst-layout__media { position: static; order: -1; max-width: 560px; } }

/* ---------- Forms ---------- */
.formcard { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-card); }
.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.formgrid .field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .formgrid { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 0.875rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.field label span.req { color: var(--error); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #c9ced6; border-radius: var(--radius-btn); padding: 13px 14px; font: inherit; font-size: 0.9375rem; color: var(--ink); background: #fff; }
.field input::placeholder, .field textarea::placeholder { color: #6b7280; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--navy); outline-offset: 1px; border-color: var(--navy); }
.field .fielderror { color: var(--error); font-size: 0.8125rem; margin-top: 5px; display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--error); }
.field.is-invalid .fielderror { display: block; }
.form__spoed { margin-top: 18px; font-size: 0.9375rem; }
.form__spoed a { color: var(--orange-hover); font-weight: 700; text-decoration: none; } /* #e05f0a on white: 4.6:1 */
.form__spoed a:hover { text-decoration: underline; }

/* Contact cards */
.contactcards { display: grid; gap: 16px; }
.contactcard { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 20px 22px; text-decoration: none; color: var(--ink); transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease); }
.contactcard:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.contactcard .icon { color: var(--navy); flex: none; }
.contactcard--tel { background: var(--navy); color: #fff; border-color: var(--navy); }
.contactcard--tel .icon { color: #fff; }
.contactcard strong { font-family: 'Outfit', sans-serif; font-weight: 900; display: block; font-size: 1.125rem; }
.contactcard span { font-size: 0.8125rem; opacity: 0.75; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.65); font-size: 0.875rem; padding: clamp(48px, 7vw, 64px) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 48px); padding-bottom: 40px; }
.footer__logocard { background: #fff; border-radius: 8px; padding: 10px 14px; display: inline-block; margin-bottom: 16px; }
.footer__brand p { max-width: 34ch; }
.footer__kvk { margin-top: 10px; color: rgba(255, 255, 255, 0.8); }
.footer__col { display: flex; flex-direction: column; gap: 9px; }
.footer__col h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.45); margin-bottom: 6px; }
.footer__col a { color: rgba(255, 255, 255, 0.72); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.footer__col a:hover { color: #fff; text-decoration: underline; }
.footer__more { font-weight: 700; color: #fff !important; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-top: 20px; padding-bottom: 20px; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.45); }
.footer__bottom a { color: rgba(255, 255, 255, 0.6); }
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile phone bar ---------- */
.mobilebar { display: none; }
@media (max-width: 768px) {
  body { padding-bottom: 68px; }
  .mobilebar { position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-mobilebar); display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--orange); color: #fff; text-decoration: none; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.0625rem; padding: 16px 20px; box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.15); }
  .mobilebar:active { background: var(--orange-hover); }
}

/* ---------- Motion: hero entrance only (content elsewhere is always visible) ---------- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
  .hero__content { animation: rise 0.7s var(--ease) both; }
}

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
.section--navy a:focus-visible, .ctaband a:focus-visible, .footer a:focus-visible { outline-color: #fff; }
