/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  background: #0f0520;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ─── Nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(15,5,32,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo-text { font-size: 0.95rem; font-weight: 400; letter-spacing: 0.04em; color: rgba(255,255,255,0.9); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-size: 0.82rem; font-weight: 300; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); transition: color 0.3s; }
.nav-link:hover { color: rgba(255,255,255,0.9); }
.nav-cta {
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: #0f0520; background: #f59e0b; padding: 0.6rem 1.4rem;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: #fbbf24; transform: translateY(-1px); }
.menu-btn { display: none; color: rgba(255,255,255,0.8); padding: 0.5rem; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(15,5,32,0.97); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; }
.mobile-menu-link {
  font-size: 1.5rem; font-weight: 300; letter-spacing: 0.06em; color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.mobile-menu-link:hover { color: #f59e0b; }
.mobile-menu-cta {
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #0f0520; background: #f59e0b; padding: 0.8rem 2rem; margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; align-items: center; }
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  position: relative; overflow: hidden; padding: 6rem 2rem 4rem;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(91,33,182,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(245,158,11,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(124,58,237,0.3) 0%, transparent 60%),
    linear-gradient(180deg, #0f0520 0%, #1a0a3e 50%, #0f0520 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 2.5rem;
}
.hero-badge-line {
  width: 2rem; height: 1px; background: rgba(245,158,11,0.5); flex-shrink: 0;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 400; line-height: 1.15;
  color: rgba(255,255,255,0.92); margin-bottom: 1.5rem;
}
.hero-em { font-style: italic; color: #f59e0b; }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 1.8rem; border-radius: 0; transition: all 0.3s ease;
}
.btn-primary {
  background: #f59e0b; color: #0f0520;
}
.btn-primary:hover { background: #fbbf24; transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.95); }
.btn-full { width: 100%; justify-content: center; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 1;
}
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.scroll-line {
  width: 1px; height: 40px; background: rgba(255,255,255,0.15); position: relative; overflow: hidden;
}
.scroll-dot {
  position: absolute; top: -8px; left: -3px;
  width: 7px; height: 7px; border-radius: 50%;
  background: #f59e0b;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -8px; opacity: 0; }
  50% { opacity: 1; }
  100% { top: 40px; opacity: 0; }
}

/* ─── Section Dividers ─── */
.section-divider { padding: 0 2rem; }
.divider-line {
  max-width: 1200px; margin: 0 auto;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

/* ─── Section Labels & Titles ─── */
.section-label {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,158,11,0.7); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.2;
  color: rgba(255,255,255,0.9); margin-bottom: 1rem;
}
.text-amber { color: #f59e0b; }
.section-desc {
  font-size: 1rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.5); max-width: 560px;
}

/* ─── Rooms ─── */
.rooms { padding: 7rem 0; }
.rooms .container { max-width: 1200px; }
.rooms > .container > :first-child { margin-bottom: 3.5rem; }
.rooms .section-desc { margin-bottom: 3rem; }

.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.room-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden; transition: border-color 0.4s, transform 0.4s;
}
.room-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-4px); }
.room-img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.room-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-img-wrap img { transform: scale(1.04); }
.room-info { padding: 1.5rem; }
.room-meta {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 0.6rem;
}
.room-meta svg { opacity: 0.5; }
.room-divider { margin: 0 0.3rem; }
.room-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem; font-weight: 400; color: rgba(255,255,255,0.9); margin-bottom: 0.5rem;
}
.room-desc {
  font-size: 0.88rem; font-weight: 300; line-height: 1.65;
  color: rgba(255,255,255,0.45); margin-bottom: 1.2rem;
}
.room-book {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
  color: #f59e0b; display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.3s;
}
.room-book:hover { gap: 0.7rem; }
.room-book svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .room-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .room-grid { grid-template-columns: 1fr; }
}

/* ─── Stay ─── */
.stay { padding: 7rem 0; }
.stay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.stay-text > :first-child { margin-bottom: 0.75rem; }
.stay-text > :nth-child(2) { margin-bottom: 0.75rem; }
.stay-desc { font-size: 1rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; }

.amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.amenity { display: flex; gap: 0.85rem; }
.amenity-icon { flex-shrink: 0; margin-top: 0.1rem; }
.amenity-name { font-size: 0.88rem; font-weight: 400; color: rgba(255,255,255,0.85); margin-bottom: 0.2rem; }
.amenity-desc { font-size: 0.8rem; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.4); }

.stay-visual { position: relative; }
.stay-img-main { overflow: hidden; }
.stay-img-main img { width: 100%; height: 100%; object-fit: cover; }
.stay-img-stack {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 1rem;
}
.stay-img-stack img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; }

@media (max-width: 900px) {
  .stay-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stay-visual { order: -1; }
  .amenities { grid-template-columns: 1fr; }
}

/* ─── Beach ─── */
.beach { padding: 7rem 0; }
.beach > .container { max-width: 1200px; }
.beach > .container > :nth-child(2) { margin-bottom: 0.5rem; }
.beach > .container > :nth-child(3) { margin-bottom: 3rem; }
.beach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.beach-card { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.beach-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.beach-card:hover img { transform: scale(1.05); }
.beach-card-label {
  position: absolute; bottom: 1rem; left: 1rem;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(15,5,32,0.7); backdrop-filter: blur(8px);
  padding: 0.4rem 0.75rem;
}
.beach-note {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.85rem; font-weight: 300; line-height: 1.65;
  color: rgba(255,255,255,0.4); max-width: 560px;
  padding-top: 0.25rem;
}
.beach-note svg { flex-shrink: 0; margin-top: 0.15rem; opacity: 0.6; }

@media (max-width: 768px) {
  .beach-grid { grid-template-columns: 1fr; }
}

/* ─── Contact ─── */
.contact { padding: 7rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info > :first-child { margin-bottom: 0.75rem; }
.contact-info > :nth-child(2) { margin-bottom: 0.75rem; }
.contact-desc { font-size: 1rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 0.85rem;
  font-size: 0.9rem; font-weight: 300; line-height: 1.6;
  color: rgba(255,255,255,0.6); transition: color 0.3s;
}
.contact-detail:hover { color: rgba(255,255,255,0.9); }
.contact-detail svg { flex-shrink: 0; margin-top: 0.15rem; }

/* Form */
.contact-form-wrap { max-width: 480px; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.9rem; font-weight: 300;
  padding: 0.8rem 1rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none; border-radius: 0;
  width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus { border-color: rgba(245,158,11,0.5); background: rgba(255,255,255,0.06); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; font-weight: 300; color: rgba(167,139,250,0.9);
  padding: 1rem; margin-top: 0.5rem;
  border: 1px solid rgba(167,139,250,0.2);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form-wrap { max-width: 100%; }
}

/* ─── Footer ─── */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.footer-brand { max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-logo-text { font-size: 0.95rem; font-weight: 400; letter-spacing: 0.04em; color: rgba(255,255,255,0.8); }
.footer-tagline { font-size: 0.85rem; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-link {
  font-size: 0.78rem; font-weight: 300; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); transition: color 0.3s;
}
.footer-link:hover { color: #f59e0b; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.25); flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05);
}

/* ─── Animations ─── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
