:root {
  --forest-green: #1B4D3E;
  --light-green: #52B788;
  --gold: #D4A017;
  --cream: #FDFBF7;
  --dark: #1F2937;
}

html {
  scroll-behavior: smooth;
}

.font-heading {
  font-family: 'Montserrat', sans-serif;
}

.font-body {
  font-family: 'Open Sans', sans-serif;
}

.bg-forest { background-color: var(--forest-green); }
.bg-light-green { background-color: var(--light-green); }
.bg-gold { background-color: var(--gold); }
.bg-cream { background-color: var(--cream); }
.text-forest { color: var(--forest-green); }
.text-light-green { color: var(--light-green); }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }

body {
  padding-top: 5rem;
}

.fixed.bottom-6.right-6:hover {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.language-toggle {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
}

.language-toggle button,
.mobile-language-button {
  min-width: 2.25rem;
  padding: 0.4rem 0.55rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.language-toggle button[aria-pressed="true"],
.mobile-language-button[aria-pressed="true"] {
  background: var(--gold);
}

.mobile-language-button {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
}

.accessibility-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.14);
}

.section-kicker {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gallery-slider {
  width: 100%;
}

.gallery-slider__viewport {
  height: min(56.25vw, 558px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(31, 41, 55, 0.16);
  touch-action: pan-y;
}

.gallery-slider__track {
  display: flex;
  transition: transform 0.45s ease;
}

.gallery-slider__slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-slider__slide:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.gallery-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-slider__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--forest-green);
  border-radius: 6px;
  color: var(--forest-green);
}

.gallery-slider__button:hover {
  background: var(--forest-green);
  color: white;
}

.gallery-slider__button svg {
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.gallery-slider__dots {
  display: flex;
  gap: 0.5rem;
}

.gallery-slider__dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #cbd5d1;
}

.gallery-slider__dot[aria-current="true"] {
  background: var(--gold);
}
.gallery-modal {
  width: min(92vw, 1000px);
  max-width: none;
  max-height: 92vh;
  padding: 3.5rem 1rem 1rem;
  border: 0;
  background: rgba(20, 28, 25, 0.96);
  color: white;
}

.gallery-modal::backdrop {
  background: rgba(10, 18, 15, 0.8);
}

.gallery-modal img {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
}

.gallery-modal p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  text-align: center;
}

.gallery-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 6px;
  background: white;
  color: var(--dark);
  font-size: 1.75rem;
  line-height: 1;
}

.gallery-close:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .contact-map {
    display: none;
  }
}
