.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Mobile menu */
.mobile-menu { display: none; }
.mobile-menu.open { display: flex; }
.mobile-sub { display: none; }
.mobile-sub.open { display: flex; }

/* Desktop dropdown menus */
.nav-dropdown { display: none; }
.nav-dropdown-trigger:hover .nav-dropdown,
.nav-dropdown-trigger:focus-within .nav-dropdown { display: block; }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(16, 28, 42, 0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}

/* Clickable gallery images */
.gallery-img { cursor: zoom-in; transition: transform 0.2s ease; }
.gallery-img:hover { transform: scale(1.03); }

/* FAQ accordion */
.faq-item summary { cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon { transition: transform 0.2s ease; }
.faq-item[open] summary .faq-icon { transform: rotate(180deg); }
.faq-item .faq-answer { animation: faq-open 0.2s ease; }
@keyframes faq-open { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* Review carousel */
.review-track {
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animated counter (used by JS) */
.counter-value {
  font-variant-numeric: tabular-nums;
}

/* Slideshow dots */
.slideshow-dots { display: flex; gap: 8px; }
.slideshow-dot {
  width: 8px; height: 8px;
  background: rgba(60, 72, 88, 0.25);
  transition: background 0.3s ease, width 0.3s ease;
}
.slideshow-dot.active {
  background: #3c4858;
  width: 24px;
}

/* Noise texture overlay */
.noise-bg { position: relative; }
.noise-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: 1;
}
.noise-bg > * { position: relative; z-index: 2; }

/* Text selection */
::selection { background: #2a4d52; color: #fff; }

/* Sticky mobile CTA */
.mobile-cta { display: flex; }
@media (min-width: 1024px) { .mobile-cta { display: none; } }

/* WCAG: Focus indicators */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid #2a4d52;
  outline-offset: 2px;
}

/* WCAG: Skip link (sr-only until focused) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* WCAG: Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-slide { transition-duration: 0ms !important; }
  .review-track { transform: none !important; }
}
