.text-eyebrow {
  font-size: clamp(0.75rem, 1.2vw, 0.8125rem);
}

.text-eyebrow-sm {
  font-size: clamp(0.6875rem, 1vw, 0.75rem);
}

.text-body {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
}

.text-body-sm {
  font-size: clamp(1rem, 1.35vw, 1.0625rem);
}

.text-caption {
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
}

.text-ui {
  font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
}

body {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.animate-fade-up {
  animation: fade-up 0.9s ease both;
}

.animate-fade-up-delay-1 { animation-delay: 0.35s; }
.animate-fade-up-delay-2 { animation-delay: 0.55s; }
.animate-fade-up-delay-3 { animation-delay: 0.8s; }
.animate-fade-up-delay-4 { animation-delay: 1s; }
.animate-fade-up-delay-5 { animation-delay: 1.5s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.15s; }
[data-reveal-delay="3"] { transition-delay: 0.2s; }
[data-reveal-delay="4"] { transition-delay: 0.25s; }

.faq-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.3s ease;
}

.faq-item.open .faq-body {
  max-height: 400px;
  opacity: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.header-scrolled {
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.6);
}

.safe-area-pb {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

#mobile-cta-bar a {
  min-height: 3.25rem;
}

.hero-overlay {
  background: linear-gradient(
    to right,
    rgba(8, 8, 6, 0.5) 0%,
    rgba(8, 8, 6, 0.5) 33.333%,
    transparent 100%
  );
}

@media (max-width: 767px) {
  .hero-overlay {
    background:
      linear-gradient(to top, rgba(8, 8, 6, 0.72) 0%, rgba(8, 8, 6, 0.45) 42%, transparent 72%),
      linear-gradient(to right, rgba(8, 8, 6, 0.55) 0%, rgba(8, 8, 6, 0.35) 55%, transparent 100%);
  }

  .hero-text-shadow {
    text-shadow:
      0 2px 20px rgba(0, 0, 0, 0.65),
      0 1px 6px rgba(0, 0, 0, 0.5);
  }

  .hero-text-shadow-soft {
    text-shadow:
      0 1px 16px rgba(0, 0, 0, 0.6),
      0 1px 4px rgba(0, 0, 0, 0.45);
  }

  .hero-text-shadow-muted {
    text-shadow:
      0 1px 12px rgba(0, 0, 0, 0.55),
      0 1px 3px rgba(0, 0, 0, 0.4);
  }
}

.hero-text-shadow {
  color: #ffffff;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.5),
    0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero-text-shadow-soft {
  color: rgba(255, 255, 255, 0.88);
  text-shadow:
    0 1px 14px rgba(0, 0, 0, 0.45),
    0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-text-shadow-muted {
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.amenity-icon {
  font-family: 'Material Symbols Outlined';
  font-size: 1.5rem;
  line-height: 1;
  color: #2B5F8A;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
