/* ============================================
   STELLAR WINDOW CLEANING — Main Stylesheet
   Brand colors: Deep Blue (#004080) & Gold (#C0A040)
   ============================================ */

/* OpenDyslexic typeface — dyslexia-friendly font, loaded from CDN */
@font-face {
  font-family: 'OpenDyslexic';
  src: url('https://cdn.jsdelivr.net/gh/antijingoist/open-dyslexic@master/ttf/OpenDyslexic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'OpenDyslexic';
  src: url('https://cdn.jsdelivr.net/gh/antijingoist/open-dyslexic@master/ttf/OpenDyslexic-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'OpenDyslexic';
  src: url('https://cdn.jsdelivr.net/gh/antijingoist/open-dyslexic@master/ttf/OpenDyslexic-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  /* OpenDyslexic font (loaded on demand) */
  --navy: #002060;
  --blue: #004080;
  --blue-light: #0060a0;
  --blue-bright: #0080c0;
  --sky: #00a0e0;
  --gold: #c0a040;
  --gold-light: #e0c060;
  --gold-bright: #f0d070;
  --dark: #0a1929;
  --dark-2: #112233;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --gray-lighter: #f3f4f6;
  --white: #ffffff;
  --off-white: #fafbfc;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
  --shadow-blue: 0 4px 20px rgba(0, 64, 128, 0.3);
  --shadow-gold: 0 4px 20px rgba(192, 160, 64, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
  --nav-height: 80px;
  --font-head: 'Armstrong', 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  color: var(--dark-2);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 3rem;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-tint { background: var(--gray-lighter); }
.section-blue { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); color: var(--white); }
.section-blue h1, .section-blue h2, .section-blue h3 { color: var(--white); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(192, 160, 64, 0.4);
}
.btn-secondary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-secondary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark-2);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
}
.nav-phone svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 32, 96, 0.88) 0%, rgba(0, 64, 128, 0.78) 50%, rgba(0, 96, 160, 0.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}
.hero-tag {
  display: inline-block;
  background: rgba(192, 160, 64, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 .highlight { color: var(--gold-bright); }
.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-bright);
}
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  opacity: 0.7;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-icon {
  position: absolute;
  bottom: 16px; left: 24px;
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
}
.service-card-icon svg { width: 24px; height: 24px; color: var(--white); }
.service-card-body { padding: 28px 24px 24px; }
.service-card-body h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.service-card-body p { color: var(--gray); font-size: 0.95rem; margin-bottom: 0; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  transition: var(--transition);
}
.service-card-link:hover { color: var(--gold); gap: 12px; }

/* Services list (services page) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}
.service-detail:nth-child(even) .service-detail-img { order: 2; }
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-detail-img img { width: 100%; height: 400px; object-fit: cover; }
.service-detail-content h3 { margin-bottom: 1rem; }
.service-detail-content ul { margin: 1.5rem 0; }
.service-detail-content ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--dark-2);
}
.service-detail-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 8px;
  width: 20px; height: 20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== FEATURES / WHY US ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.feature-item { text-align: center; padding: 24px; }
.feature-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
}
.feature-icon svg { width: 34px; height: 34px; color: var(--white); }
.feature-item h4 { margin-bottom: 0.5rem; color: var(--navy); }
.feature-item p { color: var(--gray); font-size: 0.95rem; margin-bottom: 0; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  transition: var(--transition);
}
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.08); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-stars svg { width: 20px; height: 20px; color: var(--gold); }
.testimonial-text { font-size: 1rem; color: var(--dark-2); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
}
.testimonial-author-info h5 { font-size: 0.95rem; color: var(--navy); }
.testimonial-author-info span { font-size: 0.85rem; color: var(--gray); }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-alt.webp') center/cover;
  opacity: 0.15;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255, 255, 255, 0.9); font-size: 1.2rem; margin-bottom: 2rem; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding-top: calc(var(--nav-height) + 60px);
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  color: var(--white);
}
.about-hero h1 { color: var(--white); }
.about-hero .section-tag { color: var(--gold-bright); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: auto; }

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
}
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 0; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card-img {
  height: 320px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-img span {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--white);
}
.team-card-img img {
  object-position: top;
}
.team-card-body { padding: 24px; }
.team-card-body h4 { margin-bottom: 0.25rem; }
.team-card-body .role { color: var(--gold); font-family: var(--font-head); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info-card h2 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item .icon {
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .icon svg { width: 22px; height: 22px; color: var(--gold-bright); }
.contact-info-item h3 { color: var(--gold-bright); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: rgba(255, 255, 255, 0.95); font-size: 1.05rem; }
.contact-info-item a:hover { color: var(--gold-bright); }

.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-links a {
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); }
.social-links a:hover svg { color: var(--navy); }
.social-links svg { width: 20px; height: 20px; color: var(--white); transition: var(--transition); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 64, 128, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: #e8f5e9;
  border: 2px solid #4caf50;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success h3 { color: #2e7d32; margin-bottom: 0.5rem; }

.form-error {
  display: none;
  background: #ffeef0;
  border: 2px solid #e53935;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.form-error.show { display: block; }
.form-error h3 { color: #c62828; margin-bottom: 0.5rem; }
.form-error a { color: var(--blue); text-decoration: underline; }

.btn-loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}
.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  margin: -10px 0 0 -10px;
  border: 3px solid rgba(0,32,96,0.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Map */
.map-container {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-container iframe { width: 100%; height: 400px; border: 0; display: block; }

/* Service area section */
.service-area-section { margin-top: 80px; }
.service-area-header { margin-bottom: 40px; }
.service-area-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.service-area-grid .map-container { margin-top: 0; }
.service-area-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-area-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--gray-lighter);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.service-area-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.service-area-icon {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-area-icon svg { width: 22px; height: 22px; color: var(--white); }
.service-area-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.service-area-item p { font-size: 0.9rem; color: var(--gray); margin-bottom: 0; }
.service-area-cta { margin-top: 40px; }
.service-area-cta p { font-size: 1.05rem; color: var(--gray); margin-bottom: 16px; }

@media (max-width: 768px) {
  .service-area-grid { grid-template-columns: 1fr; }
  .service-area-grid .map-container { order: 2; }
}

/* ===== BEFORE/AFTER SLIDER ===== */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 4/3;
}
.ba-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-resize {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
}
.ba-resize img {
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: cover;
}
.ba-handle {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  margin-left: -2px;
  background: rgba(255, 255, 255, 0.8);
  cursor: ew-resize;
  z-index: 2;
  transition: background 0.2s ease;
}
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M8 12h8M8 12l3-3M8 12l3 3M16 12l-3-3M16 12l-3 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
.ba-handle.draggable::after { transform: scale(0.9); }
.ba-handle:hover::after { transform: scale(1.1); }
.ba-label {
  position: absolute;
  top: 12px;
  padding: 6px 16px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(0, 32, 96, 0.75);
  border-radius: 50px;
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(4px);
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}
@media (max-width: 640px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-handle::after { width: 40px; height: 40px; margin: -20px 0 0 -20px; background-size: 20px; }
  .ba-label { font-size: 0.65rem; padding: 4px 10px; }
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p { color: rgba(255, 255, 255, 0.85); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}
/* Page header section-tag — gold on dark background */
.page-header .section-tag { color: var(--gold-bright); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h3, .footer-col h4 {
  color: var(--gold-bright);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 12px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-bright); padding-left: 4px; }
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 50px; filter: brightness(0) invert(1); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow);
  }

  .about-grid, .contact-grid, .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-img { order: 0; }
  .form-row { grid-template-columns: 1fr; }

  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 2rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap, .contact-info-card { padding: 24px; }
}

/* ============================================
   ACCESSIBILITY & COMPLIANCE STYLES
   ============================================ */

/* Skip-to-content link (visible on focus) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 3000;
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 8px 0;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Visible focus indicators for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Screen-reader-only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-indicator { display: none; }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px 24px;
  z-index: 2500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
}
.cookie-banner p a {
  color: var(--gold-bright);
  text-decoration: underline;
}
.cookie-banner-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner .btn { padding: 10px 24px; font-size: 0.85rem; }
.btn-cookie-accept { background: var(--gold); color: var(--navy); }
.btn-cookie-accept:hover { background: var(--gold-bright); }
.btn-cookie-decline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-cookie-decline:hover { border-color: var(--white); }

/* Legal pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-content p, .legal-content li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-2);
  margin-bottom: 0.75rem;
}
.legal-content ul, .legal-content ol {
  margin-bottom: 1rem;
  padding-left: 24px;
}
.legal-content li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content a { color: var(--blue); text-decoration: underline; }
.legal-content a:hover { color: var(--gold); }
.legal-meta {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.legal-back:hover { color: var(--gold); }

/* Footer legal links */
.footer-legal {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold-bright); }

/* ============================================
   ACCESSIBILITY WIDGET
   ============================================ */
.a11y-btn {
  position: fixed;
  top: 50%; right: 24px;
  transform: translateY(-50%);
  background: var(--blue);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 12px 16px;
  cursor: grab;
  z-index: 2400;
  box-shadow: var(--shadow-lg);
  transition: background 0.2s;
  border: 3px solid var(--white);
}
.a11y-btn:active { cursor: grabbing; }
.a11y-btn:hover { background: var(--blue-light); }
.a11y-btn.active { background: var(--navy); }
.a11y-btn svg { width: 24px; height: 24px; color: var(--white); flex-shrink: 0; }
.a11y-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.a11y-btn.dragging { transition: none; }
.a11y-btn-text {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.a11y-panel {
  position: fixed;
  top: 50%; right: 130px;
  transform: translateY(-50%);
  width: 340px;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2401;
  overflow: hidden;
  display: none;
  flex-direction: column;
}
.a11y-panel.open { display: flex; }

.a11y-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.a11y-header h3 { color: var(--white); font-size: 1.1rem; margin: 0; }
.a11y-header p { font-size: 0.75rem; color: rgba(255,255,255,0.8); margin: 4px 0 0; }
.a11y-close {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--white);
  flex-shrink: 0;
}
.a11y-close:hover { background: rgba(255,255,255,0.25); }

.a11y-body {
  padding: 8px 0;
  overflow-y: auto;
  flex: 1;
}
.a11y-section-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 16px 24px 8px;
}

.a11y-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.a11y-toggle:hover { background: var(--gray-lighter); }
.a11y-toggle:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }
.a11y-toggle-left { display: flex; align-items: center; gap: 14px; }
.a11y-toggle-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gray-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.a11y-toggle-icon svg { width: 20px; height: 20px; color: var(--blue); }
.a11y-toggle-label { font-size: 0.9rem; font-weight: 500; color: var(--dark-2); }
.a11y-toggle-desc { font-size: 0.75rem; color: var(--gray); margin-top: 2px; }

/* Toggle switch */
.a11y-switch {
  position: relative;
  width: 42px; height: 24px;
  flex-shrink: 0;
}
.a11y-switch input {
  opacity: 0;
  position: absolute;
  width: 100%; height: 100%;
  cursor: pointer;
  margin: 0;
}
.a11y-switch-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-light);
  border-radius: 12px;
  transition: var(--transition);
}
.a11y-switch-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.a11y-switch input:checked + .a11y-switch-slider { background: var(--blue); }
.a11y-switch input:checked + .a11y-switch-slider::before { transform: translateX(18px); }
.a11y-switch input:focus-visible + .a11y-switch-slider { outline: 3px solid var(--gold); outline-offset: 2px; }

.a11y-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--gray-light);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.a11y-reset {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--blue);
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.a11y-reset:hover { background: var(--gray-lighter); }
.a11y-footer-link {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: underline;
}
.a11y-footer-link:hover { color: var(--blue); }

/* ===== ACCESSIBILITY WIDGET — ACTIVE STATES ===== */

/* Bigger text */
body.a11y-bigger-text { font-size: 1.15em; }
body.a11y-bigger-text h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
body.a11y-bigger-text h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
body.a11y-bigger-text h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
body.a11y-bigger-text p, body.a11y-bigger-text li { font-size: 1.05rem; }

/* High contrast */
body.a11y-contrast {
  --navy: #000000;
  --blue: #0000cc;
  --dark: #000000;
  --dark-2: #000000;
  --gray: #333333;
  --gray-light: #cccccc;
  --gray-lighter: #f5f5f5;
}
body.a11y-contrast .hero-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.85) 100%);
}
body.a11y-contrast .btn-primary {
  background: #0000cc;
  color: #ffff00;
  border: 2px solid #ffff00;
}
body.a11y-contrast .btn-outline {
  border: 2px solid #ffff00;
  color: #ffff00;
}
body.a11y-contrast a { text-decoration: underline; }

/* Smart contrast (stronger) — applied to content wrapper, not body, to preserve widget stacking */
body.a11y-smart-contrast main,
body.a11y-smart-contrast .hero,
body.a11y-smart-contrast .navbar,
body.a11y-smart-contrast .footer,
body.a11y-smart-contrast .page-header,
body.a11y-smart-contrast .cookie-banner {
  filter: contrast(1.4) saturate(1.2);
}
body.a11y-smart-contrast .hero-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,32,96,0.85) 100%);
}

/* Highlight links */
body.a11y-highlight-links a:not(.nav-logo):not(.btn):not(.a11y-reset):not(.a11y-footer-link):not(.skip-link) {
  background: #ffff00 !important;
  color: #0000cc !important;
  text-decoration: underline !important;
  padding: 2px 4px;
  border-radius: 3px;
}

/* Text spacing */
body.a11y-text-spacing p,
body.a11y-text-spacing li,
body.a11y-text-spacing span:not(.section-tag):not(.hero-tag):not(.breadcrumb span) {
  letter-spacing: 0.12em;
  word-spacing: 0.16em;
  line-height: 2;
}

/* Pause animations */
body.a11y-pause-animations *,
body.a11y-pause-animations *::before,
body.a11y-pause-animations *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}
body.a11y-pause-animations .scroll-indicator { display: none; }
body.a11y-pause-animations .fade-up { opacity: 1 !important; transform: none !important; }

/* Hide images */
body.a11y-hide-images img:not([alt="Stellar Window Cleaning logo"]):not([alt*="logo"]) {
  visibility: hidden;
}
body.a11y-hide-images .hero-bg img,
body.a11y-hide-images .service-card-img img,
body.a11y-hide-images .gallery-item img,
body.a11y-hide-images .about-img img,
body.a11y-hide-images .service-detail-img img {
  display: none;
}
body.a11y-hide-images .hero-bg,
body.a11y-hide-images .service-card-img,
body.a11y-hide-images .gallery-item,
body.a11y-hide-images .about-img,
body.a11y-hide-images .service-detail-img {
  background: var(--gray-lighter);
  min-height: 100px;
}

/* Dyslexia friendly — loads OpenDyslexic (real dyslexia typeface) with weighted fallbacks */
body.a11y-dyslexia { font-family: 'OpenDyslexic', 'Lexia', 'Comic Sans MS', sans-serif !important; }
body.a11y-dyslexia p,
body.a11y-dyslexia li { line-height: 1.8; letter-spacing: 0.04em; word-spacing: 0.08em; }
body.a11y-dyslexia h1, body.a11y-dyslexia h2, body.a11y-dyslexia h3, body.a11y-dyslexia h4 {
  font-family: 'OpenDyslexic', 'Lexia', 'Comic Sans MS', sans-serif !important;
  letter-spacing: 0.02em;
}

/* Big cursor */
body.a11y-cursor { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='18' fill='rgba(0,64,128,0.3)' stroke='%23004080' stroke-width='2'/%3E%3Ccircle cx='20' cy='20' r='3' fill='%23004080'/%3E%3C/svg%3E") 20 20, auto; }
body.a11y-cursor a,
body.a11y-cursor button { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='18' fill='rgba(192,160,64,0.3)' stroke='%23c0a040' stroke-width='2'/%3E%3Ccircle cx='20' cy='20' r='3' fill='%23c0a040'/%3E%3C/svg%3E") 20 20, pointer; }

/* Tooltips */
body.a11y-tooltips [title] { position: relative; }
body.a11y-tooltips [title]::after {
  content: attr(title);
  position: absolute;
  bottom: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  margin-bottom: 6px;
  z-index: 100;
}
body.a11y-tooltips [title]:hover::after,
body.a11y-tooltips [title]:focus::after { opacity: 1; }

/* Page structure */
body.a11y-structure [role] { outline: 2px dashed var(--blue) !important; outline-offset: 2px; }
body.a11y-structure nav::before,
body.a11y-structure main::before,
body.a11y-structure footer::before,
body.a11y-structure header::before {
  position: absolute;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  top: -12px; left: 8px;
  z-index: 10;
}
body.a11y-structure nav::before { content: 'NAV'; }
body.a11y-structure main::before { content: 'MAIN'; }
body.a11y-structure footer::before { content: 'FOOTER'; }
body.a11y-structure header::before { content: 'HEADER'; }
body.a11y-structure { position: relative; }

/* Line height */
body.a11y-line-height p { line-height: 2 !important; }
body.a11y-line-height li { line-height: 2 !important; }

/* Text align */
body.a11y-text-align p,
body.a11y-text-align li,
body.a11y-text-align h1,
body.a11y-text-align h2,
body.a11y-text-align h3 { text-align: left !important; }

/* Saturation — applied to content elements, not body, to preserve widget stacking */
body.a11y-saturation main,
body.a11y-saturation .hero,
body.a11y-saturation .navbar,
body.a11y-saturation .footer,
body.a11y-saturation .page-header {
  filter: saturate(1.6);
}

/* Mobile: adjust widget position */
@media (max-width: 640px) {
  .a11y-btn { top: 50%; right: 16px; padding: 10px 16px 10px 12px; }
  .a11y-btn svg { width: 20px; height: 20px; }
  .a11y-btn-text { font-size: 0.65rem; }
  .a11y-panel {
    top: 50%; right: 16px;
    width: calc(100vw - 32px);
    max-height: calc(100vh - 48px);
  }
}