/* ============================================
   KEY LUXE INTERNATIONAL — Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --gold: #178da6;
  --gold-light: #3bacc4;
  --gold-dark: #126f84;
  --dark: #1f2937;
  --dark-light: #374151;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --overlay-dark: rgba(0, 0, 0, 0.50);
  --overlay-light: rgba(0, 0, 0, 0.30);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Sizing */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --header-height: 72px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--bg-white);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-md) auto;
}

.text-center {
  text-align: center;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--gray {
  background-color: var(--bg-light);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--bg-white);
  border: 2px solid var(--gold);
}

.btn--primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn--outline:hover {
  background-color: var(--bg-white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn--outline-dark:hover {
  background-color: var(--dark);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn--dark {
  background-color: var(--dark);
  color: var(--bg-white);
  border: 2px solid var(--dark);
}

.btn--dark:hover {
  background-color: #111827;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--full {
  width: 100%;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
  padding: var(--space-sm) 0;
}

.header--scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header--scrolled .nav__logo,
.header--scrolled .nav__link,
.header--scrolled .hamburger span {
  color: var(--dark);
}

.header--scrolled .hamburger span {
  background-color: var(--dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--bg-white);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bg-white);
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: var(--space-sm);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--bg-white);
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(31, 41, 55, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--bg-white);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover {
  color: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.25) 50%,
      rgba(0, 0, 0, 0.5) 100%);
  z-index: -1;
}

.hero__content {
  color: var(--bg-white);
  max-width: 700px;
  padding: 0 var(--space-md);
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  opacity: 0.9;
}

.hero__location svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--bg-white);
  margin-bottom: var(--space-xs);
  line-height: 1.1;
}

.hero__divider {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: var(--space-sm) auto;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
  line-height: 1.5;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__stat svg {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s infinite;
}

.hero__scroll-indicator svg {
  width: 28px;
  height: 28px;
  color: var(--bg-white);
  opacity: 0.7;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */
.about {
  padding: var(--space-3xl) 0;
  text-align: center;
}

.about__text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--dark-light);
}

/* ============================================
   DUAL CARDS (Stays / Events)
   ============================================ */
.dual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  padding: 0 var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto var(--space-2xl);
}

.dual-card {
  position: relative;
  min-height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  cursor: pointer;
  transition: transform var(--transition-base);
}

.dual-card:hover {
  transform: scale(1.02);
}

.dual-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.dual-card:hover .dual-card__bg {
  transform: scale(1.05);
}

.dual-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.dual-card__content {
  position: relative;
  z-index: 1;
  color: var(--bg-white);
}

.dual-card__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--bg-white);
  margin-bottom: var(--space-xs);
}

.dual-card__desc {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features {
  padding: var(--space-3xl) 0;
  background: var(--bg-light);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--gold);
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.feature-card__text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   PHOTO GALLERY
   ============================================ */
.gallery {
  padding: var(--space-3xl) 0;
}

.gallery__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.gallery__filter {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  transition: all var(--transition-fast);
  background: transparent;
  cursor: pointer;
}

.gallery__filter:hover,
.gallery__filter--active {
  background-color: var(--gold);
  color: var(--bg-white);
  border-color: var(--gold);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: opacity var(--transition-base);
}

.gallery__item.hidden {
  display: none;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-slow);
  filter: saturate(80%);
}

.gallery__item:hover img {
  transform: scale(1.05);
  filter: saturate(100%);
}

.gallery__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}

.gallery__item:hover .gallery__item-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.gallery__item-overlay svg {
  width: 32px;
  height: 32px;
  color: white;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-base);
}

.gallery__item:hover .gallery__item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
}

.lightbox__close:hover {
  opacity: 0.7;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
}

.lightbox__nav:hover {
  opacity: 0.7;
}

.lightbox__nav--prev {
  left: 1.5rem;
}

.lightbox__nav--next {
  right: 1.5rem;
}

/* ============================================
   AMENITIES
   ============================================ */
.amenities {
  padding: var(--space-3xl) 0;
  background: var(--bg-light);
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
}

.amenity-item__icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.amenity-item__text {
  font-size: 0.95rem;
  color: var(--dark-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--space-3xl) 0;
}

.testimonials__carousel {
  position: relative;
  max-width: 700px;
  margin: var(--space-xl) auto 0;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial {
  min-width: 100%;
  padding: 0 var(--space-md);
  text-align: center;
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--dark-light);
  margin-bottom: var(--space-lg);
  position: relative;
}

.testimonial__quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  line-height: 1;
}

.testimonial__author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial__occasion {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.testimonials__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-lg);
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.testimonials__dot--active {
  background-color: var(--gold);
  transform: scale(1.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--dark);
  color: var(--bg-white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--bg-white);
  margin-bottom: var(--space-sm);
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 350px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--gray-light);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--gold);
}

.footer__socials {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.footer__social {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: all var(--transition-fast);
}

.footer__social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(23, 141, 166, 0.1);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   SUB-PAGE HERO (Smaller)
   ============================================ */
.hero--sub {
  min-height: 60vh;
}

.hero--sub .hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

/* ============================================
   CONTENT SECTION (Sub-pages)
   ============================================ */
.content-section {
  padding: var(--space-2xl) 0;
}

.content-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.content-section__body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--dark-light);
}

/* Stats Row */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item__icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin: 0 auto var(--space-xs);
}

.stat-item__value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--dark);
}

.stat-item__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

/* ============================================
   PRICING / RATES
   ============================================ */
.rates {
  padding: var(--space-2xl) 0;
}

.rates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  max-width: 700px;
  margin: var(--space-xl) auto 0;
  justify-items: center;
}

.rate-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  width: 100%;
  max-width: 400px;
}

.rate-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.rate-card--preferred {
  border: 2px solid var(--gold);
  position: relative;
  box-shadow: var(--shadow-md);
}

.rate-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: #fff;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
}

.rate-card__season {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.rate-card__dates {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: var(--space-md);
}

.rate-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
}

.rate-card__unit {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray);
}

.rate-card__details {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.rate-card__list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
  text-align: left;
}

.rate-card__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.rate-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.rates__footnote {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.85rem;
  color: var(--gray);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   INQUIRY FORM
   ============================================ */
.inquiry {
  padding: var(--space-2xl) 0;
  background: var(--bg-light);
}

.inquiry__form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  color: var(--dark);
  transition: border-color var(--transition-fast);
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(23, 141, 166, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  text-align: left;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--dark-light);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq {
  padding: var(--space-2xl) 0;
}

.faq__list {
  max-width: 700px;
  margin: var(--space-xl) auto 0;
}

.faq__item {
  border-bottom: 1px solid #e5e7eb;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--gray);
}

.faq__item.active .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq__item.active .faq__answer {
  max-height: 500px;
  padding-bottom: var(--space-md);
}

.faq__answer p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   EVENT CARDS
   ============================================ */
.event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.event-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.event-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.event-card__body {
  padding: var(--space-lg);
}

.event-card__icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.event-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.event-card__capacity {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.event-card__price {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: var(--space-md);
}

/* ============================================
   HIGHLIGHTS (Why Choose Us)
   ============================================ */
.highlights {
  padding: var(--space-2xl) 0;
  background: var(--bg-light);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 600px;
  margin: var(--space-xl) auto 0;
}

.highlight-item {
  text-align: center;
  padding: var(--space-md);
}

.highlight-item__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin: 0 auto var(--space-sm);
}

.highlight-item__text {
  font-size: 0.95rem;
  color: var(--dark-light);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.service-card {
  padding: var(--space-xl);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin: 0 auto var(--space-md);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.service-card__text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   LOCATION MAP
   ============================================ */
.map-section {
  padding: var(--space-2xl) 0;
}

.map-section__embed {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.location-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.location-detail {
  text-align: center;
  padding: var(--space-md);
}

.location-detail__icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin: 0 auto var(--space-sm);
}

.location-detail__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.location-detail__text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   WHAT'S NEARBY
   ============================================ */
.nearby {
  padding: var(--space-xl) 0 var(--space-lg);
}

.nearby__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.nearby__filter {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
  white-space: nowrap;
}

.nearby__filter:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nearby__filter--active {
  background-color: var(--gold);
  color: var(--bg-white);
  border-color: var(--gold);
}

.nearby__map-wrapper {
  text-align: center;
  width: 100%;
}

.nearby__map {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.nearby__map-caption {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--gray-light);
  font-style: italic;
}

.nearby__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  width: 100%;
  /* Safari flex/grid rendering fix */
  display: -webkit-grid;
}

.nearby__card {
  padding: var(--space-lg);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
  /* Safari fix to prevent children disappearing */
  -webkit-transform: translateZ(0);
  opacity: 1;
  visibility: visible;
}

.nearby__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold-light);
}

.nearby__card.hidden {
  display: none;
}

.nearby__badge {
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: var(--space-sm);
}

.nearby__badge--dining {
  background-color: rgba(239, 108, 0, 0.1);
  color: #ef6c00;
}

.nearby__badge--beaches {
  background-color: rgba(0, 172, 193, 0.1);
  color: #00acc1;
}

.nearby__badge--hikes {
  background-color: rgba(76, 175, 80, 0.1);
  color: #388e3c;
}

.nearby__badge--watersports {
  background-color: rgba(30, 136, 229, 0.1);
  color: #1565c0;
}

.nearby__badge--landmarks {
  background-color: rgba(142, 36, 170, 0.1);
  color: #7b1fa2;
}

.nearby__badge--shopping {
  background-color: rgba(233, 30, 99, 0.1);
  color: #c2185b;
}

.nearby__badge--wellness {
  background-color: rgba(0, 150, 136, 0.1);
  color: #00796b;
}

.nearby__badge--essentials {
  background-color: rgba(121, 85, 72, 0.1);
  color: #5d4037;
}

.nearby__card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.nearby__card-type {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: var(--space-xs);
  font-weight: 400;
}

.nearby__card-address {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  flex-grow: 1;
}

.nearby__card-link {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition-fast);
}

.nearby__card-link:hover {
  color: var(--gold-dark);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background-color: var(--gold);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 500;
  box-shadow: var(--shadow-md);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--gold-dark);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .event-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .location-details {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .nearby__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* Disable scroll animations on mobile for better performance and reliability */
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    visibility: visible !important;
  }

  .nav__links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 100vh;
  }

  .hero__stats {
    gap: var(--space-sm);
  }

  .hero__stat {
    font-size: 0.8rem;
  }

  .dual-cards {
    grid-template-columns: 1fr;
  }

  .dual-card {
    min-height: 350px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__filters {
    gap: 0.5rem;
  }

  .amenities__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial__quote {
    font-size: 1.1rem;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand-desc {
    margin: 0 auto;
  }

  .footer__links {
    align-items: center;
  }

  .footer__socials {
    justify-content: center;
  }

  .nearby__grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .nearby__map {
    height: 350px;
  }

  .rates__grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-checkboxes {
    grid-template-columns: 1fr;
  }

  .service-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .highlights__grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .stats-row {
    gap: var(--space-md);
  }

  .stat-item__value {
    font-size: 1.5rem;
  }

  .section {
    padding: var(--space-xl) 0;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .gallery__filter {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .nearby__filter {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .nearby__map {
    height: 280px;
  }

  .amenities__grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .stat-item {
    min-width: 120px;
  }

  .rate-card__price {
    font-size: 2rem;
  }

  .rate-card__season {
    font-size: 1.2rem;
  }
}