/* =========================================================
   Ayush Society — Component stylesheet
   Tailwind (CDN, configured in each page's <head>) handles layout,
   spacing and most colour utilities. This file covers the things
   Tailwind's utility classes don't reach: the hero carousel, the
   animated mobile drawer, the accessibility widget, scroll-reveal
   motion and a few bespoke card treatments.
   Palette: brand (deep teal) · accent (warm coral) · paper (warm neutral)
   Typefaces: Bitter (headings) + Karla (body)
   ========================================================= */

:root {
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --text-scale: 1;
}

html[data-text-size="lg"] { --text-scale: 1.12; }
html[data-text-size="xl"] { --text-scale: 1.26; }

html { scroll-behavior: smooth; }
body {
  font-family: 'Karla', 'Segoe UI', Arial, sans-serif;
  font-size: calc(1rem * var(--text-scale));
  color: #16211F;
  background: #FBFAF7;
}
h1, h2, h3, h4, .font-head { font-family: 'Bitter', Georgia, serif; }

img { max-width: 100%; }

::selection { background: #B3DFD5; color: #0F3835; }

:focus { outline: none; }
:focus-visible {
  outline: 3px solid #F4642B;
  outline-offset: 3px;
  border-radius: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion, either OS-level or the widget toggle */
html[data-motion="reduced"] *, html[data-motion="reduced"] *::before, html[data-motion="reduced"] *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------- Skip link -------------------- */
.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  background: #F4642B;
  color: #fff;
  padding: 0.8em 1.4em;
  font-weight: 800;
  border-radius: 0 0 10px 10px;
  z-index: 200;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 0; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,247,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,56,53,0.08);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header[data-scrolled="true"] {
  box-shadow: 0 8px 30px -14px rgba(15,56,53,0.35);
  background: rgba(251,250,247,0.96);
}

.nav-link {
  position: relative;
  font-weight: 700;
  color: #154C47;
  padding-bottom: 4px;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: #F4642B;
  transition: right 0.3s var(--ease);
}
.nav-link:hover::after, .nav-link[aria-current="page"]::after { right: 0; }
.nav-link[aria-current="page"] { color: #0F3835; }

/* Animated hamburger */
.hamburger { width: 26px; height: 20px; position: relative; }
.hamburger span {
  position: absolute; left: 0; width: 100%; height: 2.5px;
  background: currentColor; border-radius: 2px;
  transition: transform 0.32s var(--ease-premium), opacity 0.2s var(--ease), top 0.32s var(--ease-premium);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* =========================================================
   Mobile drawer
   ========================================================= */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(11,26,24,0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.nav-backdrop[data-open="true"] { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  z-index: 95;
  width: min(22rem, 88vw);
  background: linear-gradient(175deg, #0F3835 0%, #154C47 62%, #185F58 100%);
  color: #fff;
  transform: translateX(105%);
  transition: transform 0.42s var(--ease-premium);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 50px rgba(0,0,0,0.25);
}
.mobile-drawer[data-open="true"] { transform: translateX(0); }

.mobile-drawer .drawer-link {
  opacity: 0; transform: translateX(16px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mobile-drawer[data-open="true"] .drawer-link { opacity: 1; transform: translateX(0); }
.mobile-drawer[data-open="true"] .drawer-link:nth-child(1) { transition-delay: 0.12s; }
.mobile-drawer[data-open="true"] .drawer-link:nth-child(2) { transition-delay: 0.18s; }
.mobile-drawer[data-open="true"] .drawer-link:nth-child(3) { transition-delay: 0.24s; }
.mobile-drawer[data-open="true"] .drawer-link:nth-child(4) { transition-delay: 0.3s; }
.mobile-drawer[data-open="true"] .drawer-link:nth-child(5) { transition-delay: 0.36s; }

.drawer-link { display: flex; align-items: center; gap: 0.85rem; padding: 0.95rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-weight: 700; font-size: 1.05rem; color: #fff; text-decoration: none; }
.drawer-link .icon-box {
  width: 2.3rem; height: 2.3rem; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.drawer-link:hover .icon-box, .drawer-link[aria-current="page"] .icon-box { background: #F4642B; transform: scale(1.06); }
.drawer-link[aria-current="page"] { color: #FFD9C4; }

.drawer-cta {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: #fff; text-decoration: none; font-weight: 700;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.drawer-cta:hover { background: #F4642B; transform: translateY(-2px); }

.drawer-social a {
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.drawer-social a:hover { border-color: #F4642B; background: #F4642B; transform: translateY(-2px); }
.drawer-social svg { width: 1rem; height: 1rem; fill: currentColor; }

.drawer-close {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; background: rgba(255,255,255,0.08);
  transition: background 0.25s var(--ease), transform 0.3s var(--ease);
}
.drawer-close:hover { background: rgba(255,255,255,0.18); transform: rotate(90deg); }

@media (min-width: 881px) {
  .mobile-only-nav { display: none !important; }
}

/* =========================================================
   Desktop dropdown (Conclave)
   ========================================================= */
.dropdown-wrap { position: relative; }
.dropdown-trigger { display: inline-flex; align-items: center; gap: 0.35rem; background: none; border: none; cursor: pointer; font: inherit; }
.dropdown-trigger .chevron { transition: transform 0.25s var(--ease); }
.dropdown-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.dropdown-panel {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 15rem;
  background: #fff;
  border: 1px solid #E4EEEC;
  border-radius: 14px;
  box-shadow: 0 20px 45px -12px rgba(15,56,53,0.28);
  padding: 0.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  z-index: 110;
}
.dropdown-panel[data-open="true"] { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown-panel a {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: 9px;
  font-weight: 700;
  color: #154C47;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.dropdown-panel a:hover, .dropdown-panel a:focus-visible { background: #EFF6F4; color: #0F3835; }
.dropdown-panel .dropdown-divider { height: 1px; background: #EEF2F1; margin: 0.4rem 0.2rem; }

@media (prefers-reduced-motion: reduce) {
  .dropdown-trigger .chevron { transition: none; }
}

/* =========================================================
   Mobile drawer accordion (Conclave)
   ========================================================= */
.drawer-accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  background: none; border: none; cursor: pointer;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 700; font-size: 1.05rem; color: #fff;
}
.drawer-accordion-trigger .chevron { transition: transform 0.28s var(--ease); flex-shrink: 0; }
.drawer-accordion-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.drawer-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s var(--ease);
}
.drawer-accordion-panel[data-open="true"] { max-height: 16rem; }
.drawer-accordion-panel a {
  display: block;
  padding: 0.7rem 0 0.7rem 3.15rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.drawer-accordion-panel a:hover, .drawer-accordion-panel a[aria-current="page"] { color: #FF7F49; }

/* =========================================================
   Hero carousel
   ========================================================= */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease-premium);
  pointer-events: none;
}
.hero-slide[data-active="true"] { opacity: 1; pointer-events: auto; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 7s linear;
}
.hero-slide[data-active="true"] img { transform: scale(1); }
.hero-slide .slide-copy > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.hero-slide[data-active="true"] .slide-copy > * { opacity: 1; transform: translateY(0); }
.hero-slide[data-active="true"] .slide-copy > *:nth-child(1) { transition-delay: 0.15s; }
.hero-slide[data-active="true"] .slide-copy > *:nth-child(2) { transition-delay: 0.28s; }
.hero-slide[data-active="true"] .slide-copy > *:nth-child(3) { transition-delay: 0.4s; }
.hero-slide[data-active="true"] .slide-copy > *:nth-child(4) { transition-delay: 0.52s; }

.hero-dots button {
  width: 0.55rem; height: 0.55rem; border-radius: 999px;
  background: rgba(255,255,255,0.45);
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.hero-dots button[aria-current="true"] { background: #F4642B; width: 1.6rem; }
.hero-arrow {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.hero-arrow:hover { background: #F4642B; border-color: #F4642B; transform: scale(1.06); }

.hero-slide .slide-copy h1,
.hero-slide .slide-copy p,
.hero-slide .slide-copy span.inline-block {
  text-shadow: 0 2px 18px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.5);
}

html[data-motion="reduced"] .hero-slide img { transition: none; transform: none; }
html[data-motion="reduced"] .hero-slide .slide-copy > * { transition: opacity 0.3s var(--ease); transform: none; }

/* =========================================================
   Micro-interactions
   ========================================================= */
.btn { transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.arrow-link { display: inline-flex; align-items: center; gap: 0.4em; }
.arrow-link .arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.arrow-link:hover .arrow, .arrow-link:focus-visible .arrow { transform: translateX(5px); }

.lift { transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.lift:hover, .lift:focus-within { transform: translateY(-6px); }

.zoom-media { overflow: hidden; display: block; }
.zoom-media img { transition: transform 0.6s var(--ease); will-change: transform; }
.zoom-media:hover img, .zoom-media:focus-within img { transform: scale(1.07); }

.icon-pop { transition: transform 0.3s var(--ease), background 0.3s var(--ease); }
.service-card:hover .icon-pop, .service-card:focus-within .icon-pop { transform: scale(1.08) rotate(-4deg); }

.pill-tag { transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease); }
.pill-tag:hover { transform: translateY(-2px); }

.social-row a, .footer-social a { transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease); }
.social-row a:hover, .footer-social a:hover { transform: translateY(-3px); }

@media (prefers-reduced-motion: reduce) {
  .btn:hover, .lift:hover, .zoom-media:hover img, .icon-pop, .pill-tag:hover, .social-row a:hover, .footer-social a:hover, .arrow-link:hover .arrow { transform: none !important; }
}
html[data-motion="reduced"] .btn:hover, html[data-motion="reduced"] .lift:hover, html[data-motion="reduced"] .zoom-media:hover img,
html[data-motion="reduced"] .service-card:hover .icon-pop, html[data-motion="reduced"] .pill-tag:hover,
html[data-motion="reduced"] .social-row a:hover, html[data-motion="reduced"] .footer-social a:hover, html[data-motion="reduced"] .arrow-link:hover .arrow { transform: none !important; }

/* =========================================================
   Scroll-reveal
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"] > * { opacity: 0; transform: translateY(20px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
[data-reveal="stagger"].is-visible > * { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"].is-visible > *:nth-child(2) { transition-delay: 0.09s; }
[data-reveal="stagger"].is-visible > *:nth-child(3) { transition-delay: 0.18s; }
[data-reveal="stagger"].is-visible > *:nth-child(4) { transition-delay: 0.27s; }
[data-reveal="stagger"].is-visible > *:nth-child(5) { transition-delay: 0.36s; }
[data-reveal="stagger"].is-visible > *:nth-child(6) { transition-delay: 0.45s; }
[data-reveal="stagger"].is-visible > *:nth-child(7) { transition-delay: 0.54s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal="stagger"] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html[data-motion="reduced"] [data-reveal], html[data-motion="reduced"] [data-reveal="stagger"] > * {
  opacity: 1 !important; transform: none !important; transition: none !important;
}

/* =========================================================
   Cards & photo components
   ========================================================= */
.card-premium {
  background: #fff;
  border: 1px solid #E4EEEC;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15,56,53,0.04);
}
.lift.card-premium:hover { box-shadow: 0 24px 48px -20px rgba(15,56,53,0.28); border-color: #B3DFD5; }

.photo-frame { position: relative; border-radius: 16px; overflow: hidden; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.service-jump { position: sticky; top: 72px; z-index: 40; background: rgba(251,250,247,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid #E4EEEC; overflow-x: auto; }
.jump-pill { transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease); white-space: nowrap; }
.jump-pill[aria-current="true"] { background: #154C47; border-color: #154C47; color: #fff; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 1.9em; margin-bottom: 0.75em; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.4em;
  width: 0.85em; height: 0.85em;
  background: #F4642B; border-radius: 4px;
}

[data-form-status][data-state="success"] { color: #1F776E; }
[data-form-status][data-state="error"] { color: #B33E17; }

/* =========================================================
   Accessibility widget
   ========================================================= */
.a11y-launcher {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 300;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #154C47; color: #fff;
  border: 3px solid #F4642B;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15,56,53,0.3);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.a11y-launcher:hover { transform: scale(1.06); background: #185F58; }
.a11y-launcher svg { width: 1.6rem; height: 1.6rem; }

.a11y-panel {
  position: fixed; right: 1.25rem; bottom: 5.5rem; z-index: 300;
  width: min(21rem, calc(100vw - 2.5rem));
  max-height: min(32rem, calc(100vh - 8rem));
  overflow-y: auto;
  background: #fff; color: #16211F;
  border: 1px solid #E4EEEC;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(15,56,53,0.28);
}
.a11y-panel[hidden] { display: none; }
.a11y-panel h2 { font-family: 'Karla', sans-serif; font-size: 1.05rem; font-weight: 800; margin-bottom: 0.9rem; display: flex; align-items: center; justify-content: space-between; color: #0F3835; }
.a11y-panel .close-panel { background: none; border: none; cursor: pointer; width: 2rem; height: 2rem; color: #0F3835; border-radius: 50%; transition: background 0.2s var(--ease); }
.a11y-panel .close-panel:hover { background: #EFF6F4; }
.a11y-group { margin-bottom: 1.1rem; }
.a11y-group > span { display: block; font-weight: 800; font-size: 0.85rem; margin-bottom: 0.5rem; color: #154C47; text-transform: uppercase; letter-spacing: 0.03em; }
.a11y-segmented { display: flex; border: 2px solid #154C47; border-radius: 10px; overflow: hidden; }
.a11y-segmented button { flex: 1; padding: 0.55em 0; background: #fff; border: none; border-right: 2px solid #154C47; cursor: pointer; font-weight: 700; min-height: 40px; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.a11y-segmented button:last-child { border-right: none; }
.a11y-segmented button[aria-pressed="true"] { background: #154C47; color: #fff; }
.a11y-toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.55rem 0; border-bottom: 1px solid #EEF2F1; }
.a11y-toggle-row:last-child { border-bottom: none; }
.a11y-toggle-row span.label { font-weight: 600; font-size: 0.92rem; }
.switch { position: relative; width: 3rem; height: 1.7rem; flex-shrink: 0; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: #D7E4E1; border-radius: 999px; border: 2px solid #154C47; transition: background 0.2s var(--ease); }
.switch .thumb { position: absolute; top: 2px; left: 2px; width: 1.1rem; height: 1.1rem; background: #fff; border-radius: 50%; transition: transform 0.2s var(--ease); }
.switch input:checked + .track { background: #154C47; }
.switch input:checked + .track .thumb { transform: translateX(1.3rem); }
.switch input:focus-visible + .track { outline: 3px solid #F4642B; outline-offset: 2px; }
.a11y-reset { width: 100%; margin-top: 0.4rem; padding: 0.65em; border-radius: 10px; border: 2px solid #154C47; background: #fff; font-weight: 800; cursor: pointer; min-height: 44px; transition: background 0.2s var(--ease); }
.a11y-reset:hover { background: #EFF6F4; }

/* -------------------- Back to top -------------------- */
.back-to-top {
  position: fixed; left: 1.25rem; bottom: 1.25rem; z-index: 250;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: #fff; color: #154C47; border: 2px solid #154C47;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15,56,53,0.2);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.25s var(--ease);
}
.back-to-top[data-visible="true"] { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: #EFF6F4; }
html[data-motion="reduced"] .back-to-top { transform: none !important; }

/* =========================================================
   High-contrast mode
   ========================================================= */
html[data-contrast="high"] body { background: #000 !important; color: #fff !important; }
html[data-contrast="high"] .site-header, html[data-contrast="high"] .service-jump,
html[data-contrast="high"] .a11y-panel, html[data-contrast="high"] .card-premium,
html[data-contrast="high"] .mobile-drawer { background: #000 !important; border-color: #FFEA00 !important; }
html[data-contrast="high"] h1, html[data-contrast="high"] h2, html[data-contrast="high"] h3, html[data-contrast="high"] h4,
html[data-contrast="high"] .a11y-panel h2 { color: #FFEA00 !important; }
html[data-contrast="high"] p, html[data-contrast="high"] li, html[data-contrast="high"] span, html[data-contrast="high"] dd { color: #fff !important; }
html[data-contrast="high"] a { color: #FFEA00 !important; }
html[data-contrast="high"] section, html[data-contrast="high"] .hero-slide, html[data-contrast="high"] footer { background: #000 !important; }
html[data-contrast="high"] .btn { background: #000 !important; color: #FFEA00 !important; border: 2px solid #FFEA00 !important; }
html[data-contrast="high"] .icon-pop, html[data-contrast="high"] .drawer-link .icon-box { background: #000 !important; border: 1px solid #FFEA00 !important; }
html[data-contrast="high"] .check-list li::before { background: #FFEA00; }
html[data-contrast="high"] .back-to-top { background: #000 !important; color: #FFEA00 !important; border-color: #FFEA00 !important; }
html[data-contrast="high"] .hero-slide::after { background: rgba(0,0,0,0.75) !important; }

/* -------------------- Print -------------------- */
@media print {
  .a11y-launcher, .a11y-panel, .site-header, .service-jump, .skip-link, .nav-backdrop, .mobile-drawer, .back-to-top, .hero-arrow, .hero-dots { display: none !important; }
}
