/* Cosy Cozy Party Room — Premium Entertainment Design System */
:root {
  --primary: #7c3aed;
  --secondary: #a855f7;
  --accent: #ec4899;
  --bg: #09090b;
  --surface: #18181b;
  --surface-2: #1f1f23;
  --text: #ffffff;
  --text-muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(24, 24, 27, 0.55);
  --glass-border: rgba(168, 85, 247, 0.25);
  --glow: 0 0 24px rgba(124, 58, 237, 0.45);
  --glow-strong: 0 0 40px rgba(124, 58, 237, 0.65), 0 0 80px rgba(236, 72, 153, 0.25);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 72px;
  --container: 1180px;
  --font-display: "Syne", "Noto Sans TC", sans-serif;
  --font-body: "Outfit", "Noto Sans TC", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.section-head h2,
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.section-head p,
.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ========== Loading ========== */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

#page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pulse-glow 1.4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.4));
    opacity: 0.7;
  }
  50% {
    filter: drop-shadow(0 0 22px rgba(168, 85, 247, 0.9));
    opacity: 1;
  }
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s, backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(9, 9, 11, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo img {
  width: auto;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: var(--glow);
}

.logo-text {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.45rem 0.7rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
  background: rgba(124, 58, 237, 0.15);
}

.nav-cta {
  margin-left: 0.5rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--glass);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: 0.3s var(--ease);
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary) 55%, var(--accent));
  color: #fff;
  box-shadow: var(--glow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  box-shadow: var(--glow-strong);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--secondary);
  background: rgba(124, 58, 237, 0.12);
}

.btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
}

/* ========== Glass ========== */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(124, 58, 237, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(236, 72, 153, 0.22), transparent 50%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.55) 0%, rgba(9, 9, 11, 0.72) 45%, rgba(9, 9, 11, 0.95) 100%);
}

.hero-disco {
  position: absolute;
  width: min(280px, 40vw);
  height: min(280px, 40vw);
  right: 8%;
  top: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45), transparent 25%),
    conic-gradient(from 0deg, #7c3aed, #ec4899, #a855f7, #22d3ee, #7c3aed);
  opacity: 0.35;
  filter: blur(1px);
  animation: disco-spin 18s linear infinite;
  z-index: -1;
  box-shadow: 0 0 80px rgba(168, 85, 247, 0.35);
  pointer-events: none;
}

@keyframes disco-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-content {
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 4rem;
  max-width: 900px;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 5.5rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  margin-bottom: 0.35rem;
  text-shadow: 0 0 40px rgba(124, 58, 237, 0.55);
}

.hero-brand em {
  display: block;
  font-style: normal;
  font-size: 0.38em;
  letter-spacing: 0.45em;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 0.55rem;
}

.hero-tagline {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 1.35rem 0 1.75rem;
  font-weight: 500;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.1rem;
  margin-bottom: 2.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}

.scroll-indicator .mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--secondary);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ========== Feature Cards ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  padding: 1.85rem 1.4rem;
  text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: var(--glow);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.45));
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========== About ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-media:hover img {
  transform: scale(1.06);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: inherit;
  pointer-events: none;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin: 0.5rem 0 1.25rem;
}

.about-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-list {
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.65rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.about-list li::before {
  content: "✦";
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ========== Amenity Icon Grid ========== */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.amenity-item {
  padding: 1.35rem 0.85rem;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}

.amenity-item:hover {
  transform: translateY(-5px);
  border-color: rgba(236, 72, 153, 0.4);
  background: rgba(124, 58, 237, 0.12);
}

.amenity-item .icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.35), rgba(236, 72, 153, 0.2));
  color: var(--secondary);
  font-size: 1.25rem;
}

.amenity-item span {
  font-size: 0.88rem;
  font-weight: 500;
}

/* ========== Gallery Masonry ========== */
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  transition: transform 0.55s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: "＋";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(9, 9, 11, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 1.5rem;
  color: #fff;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ========== Facility Feature Cards ========== */
.facility-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.facility-card {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--border);
}

.facility-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  z-index: -2;
}

.facility-card:hover img {
  transform: scale(1.12);
}

.facility-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.15), rgba(9, 9, 11, 0.85));
  z-index: -1;
}

.facility-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
}

.facility-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.facility-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ========== Pricing ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price-card {
  padding: 2rem 1.6rem;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

.price-card.is-featured {
  border-color: rgba(168, 85, 247, 0.55);
  background: linear-gradient(165deg, rgba(124, 58, 237, 0.22), rgba(24, 24, 27, 0.7));
  box-shadow: var(--glow);
}

.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  font-weight: 600;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.price-card .price {
  font-size: 1.85rem;
  font-weight: 700;
  margin: 1rem 0;
  font-family: var(--font-display);
}

.price-card .price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-card ul {
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.55rem;
}

.price-card li {
  color: var(--text-muted);
  font-size: 0.92rem;
  padding-left: 1.3rem;
  position: relative;
}

.price-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 0.8rem;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========== Reviews ========== */
.review-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 2.5rem;
}

.review-card {
  padding: 1.75rem 1.5rem;
}

.stars {
  color: #fbbf24;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.review-card blockquote {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.review-card cite {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.85rem;
}

.story-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.story-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

.story-slide {
  flex: 0 0 min(280px, 72vw);
  scroll-snap-align: start;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--border);
}

.story-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  transition: border-color 0.25s, background 0.25s;
}

.carousel-btn:hover {
  border-color: var(--secondary);
  background: rgba(124, 58, 237, 0.2);
}

/* ========== Timeline ========== */
.timeline {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0.5;
}

.timeline-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  box-shadow: var(--glow);
  position: relative;
  z-index: 1;
}

.step-body {
  padding: 1rem 1.25rem;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.step-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ========== FAQ Accordion ========== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.3s;
}

.faq-item.is-open {
  border-color: rgba(168, 85, 247, 0.45);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.35rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
}

.faq-q .plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--secondary);
}

.faq-item.is-open .faq-q .plus {
  transform: rotate(45deg);
  background: rgba(124, 58, 237, 0.25);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a-inner {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========== CTA Banner ========== */
.cta-banner {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem;
  text-align: center;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(9, 9, 11, 0.88), rgba(124, 58, 237, 0.55), rgba(9, 9, 11, 0.88));
  z-index: -1;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
}

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
}

.contact-card {
  padding: 2rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.contact-list {
  display: grid;
  gap: 1.1rem;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-list .label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}

.contact-list a:hover {
  color: var(--secondary);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
  background: var(--surface);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* ========== Footer ========== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.5rem;
  background: linear-gradient(180deg, #0c0c0f, #09090b);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 280px;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}

.footer-nav ul,
.footer-contact ul {
  display: grid;
  gap: 0.55rem;
}

.footer-nav a,
.footer-contact a,
.footer-contact li {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--secondary);
}

.socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.socials a:hover {
  border-color: var(--secondary);
  background: rgba(124, 58, 237, 0.2);
  box-shadow: var(--glow);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--secondary);
}

/* ========== Floating widgets ========== */
.float-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease);
}

.float-wa:hover {
  transform: scale(1.08);
}

.float-wa svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.back-top {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(24, 24, 27, 0.85);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s var(--ease);
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  border-color: var(--secondary);
  box-shadow: var(--glow);
}

/* ========== Lightbox ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(9, 9, 11, 0.92);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.4rem;
}

/* ========== Page hero (inner) ========== */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124, 58, 237, 0.28), transparent 70%),
    var(--bg);
  text-align: center;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.4;
}

/* ========== Reveal ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.counter {
  font-variant-numeric: tabular-nums;
}

/* ========== Background accents ========== */
.bg-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 30% at 10% 20%, rgba(124, 58, 237, 0.12), transparent),
    radial-gradient(ellipse 35% 25% at 90% 70%, rgba(236, 72, 153, 0.1), transparent);
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .facility-cards,
  .pricing-grid,
  .review-quotes,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    aspect-ratio: 16 / 10;
    max-height: 420px;
  }

  .gallery-masonry {
    columns: 2;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 11, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s var(--ease);
  }

  body.nav-open .nav {
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    font-size: 1.15rem;
    padding: 0.75rem 1.25rem;
  }

  .nav-cta {
    margin: 1rem 0 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-disco {
    opacity: 0.22;
    right: -5%;
  }
}

@media (max-width: 640px) {
  .feature-grid,
  .facility-cards,
  .pricing-grid,
  .review-quotes,
  .footer-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-masonry {
    columns: 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .nav-cta .btn {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
