/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Jost', sans-serif; background: #fff; color: #2d2d2d; line-height: 1.7; font-size: 17px; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ============ VARIABLES ============ */
:root {
  --gold: #c9a063;
  --gold-light: #e8d5b0;
  --rose: #8b4a5a;
  --dark: #1c1c1c;
  --cream: #fdf8f3;
  --section-pad: 96px 20px;
}

/* ============ CONTAINER ============ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  padding: 16px 38px; border-radius: 50px;
  font-family: 'Jost', sans-serif; font-weight: 500; font-size: 1rem;
  letter-spacing: 0.5px; transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: #b8894e; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(255,255,255,0.7); color: #fff;
  padding: 13px 34px; border-radius: 50px;
  font-family: 'Jost', sans-serif; font-weight: 400; font-size: 0.92rem;
  transition: all 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ============ SECTION LABELS ============ */
.section-label {
  font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 600;
  color: var(--dark); line-height: 1.1; margin-bottom: 16px;
}
.section-sub { color: #888; font-size: 1.05rem; max-width: 520px; }
.section { padding: var(--section-pad); }
.section:nth-child(even) { background: var(--cream); }

/* ============ FLOATING WHATSAPP ============ */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled { background: rgba(20,20,20,0.97); box-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 70px; width: auto; display: block; mix-blend-mode: screen; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 400; letter-spacing: 0.4px; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.btn-nav {
  background: var(--gold) !important; color: #fff !important;
  padding: 10px 24px; border-radius: 50px;
  font-weight: 500 !important; font-size: 0.88rem !important;
  transition: background 0.3s !important;
}
.btn-nav:hover { background: #b8894e !important; }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }
.mobile-menu { display: none; list-style: none; background: rgba(20,20,20,0.98); flex-direction: column; }
.mobile-menu.open { display: flex; }
.mobile-menu li a { display: block; padding: 14px 24px; color: rgba(255,255,255,0.8); font-size: 0.93rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-menu li a:hover { color: var(--gold); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0e0709 0%, #1e0f14 35%, #12121e 70%, #0a0a12 100%);
}
.hero-video {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
  transform: scale(1.25);
  transform-origin: center center;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 30%, rgba(201,160,99,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(139,74,90,0.1) 0%, transparent 55%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,160,99,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 0 24px; }
.hero-scroll { z-index: 2; }
.hero-logo {
  height: 140px; width: auto;
  mix-blend-mode: screen;
  margin: 0 auto 28px;
  display: block;
  filter: drop-shadow(0 0 40px rgba(201,160,99,0.3));
}
.hero-tagline {
  font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 18px;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 600; color: #fff; line-height: 1.02; margin-bottom: 22px;
}
.hero-content h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-sub { color: rgba(255,255,255,0.55); font-size: 1.1rem; margin-bottom: 48px; letter-spacing: 2px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.35); font-size: 0.9rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(9px); }
}

/* ============ PILLARS STRIP ============ */
.pillars { background: var(--dark); padding: 0; }
.pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.pillar {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s;
}
.pillar:last-child { border-right: none; }
.pillar.visible { opacity: 1; transform: translateY(0); }
.pillar i { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; }
.pillar strong { display: block; color: #fff; font-size: 1rem; font-weight: 500; margin-bottom: 3px; }
.pillar span { color: rgba(255,255,255,0.45); font-size: 0.88rem; }

/* ============ SERVICES ============ */
.services { background: #fff; text-align: center; }
.services .section-sub { margin: 0 auto 52px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 50px;
}
.service-card {
  background: #fff; border: 1px solid #f0e8df;
  border-radius: 16px; overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
  opacity: 0; transform: translateY(20px);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 20px 50px rgba(201,160,99,0.15); }
.service-img { position: relative; height: 210px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-img img { transform: scale(1.07); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 14px;
  font-size: 1.2rem; color: var(--gold);
}
.service-body { padding: 22px 26px 28px; text-align: left; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; margin-bottom: 10px; color: var(--dark); }
.service-card p { color: #888; font-size: 1rem; line-height: 1.75; }

/* ============ ABOUT ============ */
.about { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; }
.about-img-block {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}
.about-img-block img {
  width: 100%; height: 420px;
  object-fit: cover; object-position: center;
  display: block;
}
.about-quote {
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.05rem;
  color: var(--gold); text-align: center;
  line-height: 1.6;
}
.about-text p { color: #777; font-size: 1.05rem; margin-bottom: 16px; }
.about-stats { display: flex; gap: 36px; margin-top: 34px; }
.stat span { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; }
.stat p { font-size: 0.78rem; color: #999; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ============ TEAM ============ */
.team { background: var(--dark); text-align: center; }
.team .section-label { color: var(--gold); }
.team .section-title { color: #fff; }
.team .section-sub { color: rgba(255,255,255,0.45); margin: 0 auto 52px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,160,99,0.15);
  border-radius: 16px; padding: 36px 24px;
  transition: transform 0.3s, background 0.3s;
  opacity: 0; transform: translateY(20px);
}
.team-card.visible { opacity: 1; transform: translateY(0); }
.team-card:hover { transform: translateY(-5px); background: rgba(201,160,99,0.07); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600; color: #fff;
}
.team-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; color: #fff; font-weight: 600; margin-bottom: 10px; }
.team-card p { color: rgba(255,255,255,0.45); font-size: 0.98rem; line-height: 1.65; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: #fff; text-align: center; }
.testimonials .section-sub { margin: 0 auto 50px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; margin-bottom: 28px; }
.testimonial-card {
  background: var(--cream); border: 1px solid #f0e8df;
  border-radius: 16px; padding: 34px 28px; text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0; transform: translateY(20px);
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(201,160,99,0.1); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { color: #666; font-size: 1.02rem; line-height: 1.8; font-style: italic; margin-bottom: 22px; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e8c47a);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 0.95rem; flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.9rem; color: var(--dark); }
.reviewer span { font-size: 0.75rem; color: #bbb; }
.reviews-note { color: #bbb; font-size: 0.8rem; margin-top: 8px; }
.reviews-note a { color: var(--gold); }
.reviews-note a:hover { text-decoration: underline; }

/* ============ PHOTO STRIP ============ */
.photo-strip { overflow: hidden; padding: 40px 0 0; }
.strip-track {
  display: flex; gap: 14px;
  width: max-content;
  animation: strip-scroll 35s linear infinite;
}
.photo-strip:hover .strip-track { animation-play-state: paused; }
.strip-item { flex-shrink: 0; width: 260px; height: 180px; border-radius: 12px; overflow: hidden; }
.strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.strip-item:hover img { transform: scale(1.06); }
@keyframes strip-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ GALLERY ============ */
.section.gallery { background: var(--dark); text-align: center; }
.gallery .section-label { color: var(--gold); }
.gallery .section-title { color: #fff; }
.gallery .section-sub { color: rgba(255,255,255,0.45); margin: 0 auto 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 12px; cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item span {
  position: absolute; bottom: 14px; left: 14px;
  color: #fff; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; opacity: 0; transition: opacity 0.3s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s; border-radius: 12px;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover span { opacity: 1; z-index: 1; }

/* ============ BOOKING ============ */
.section.booking { background: var(--dark); }
.booking .section-label { color: var(--gold); }
.booking-inner { display: grid; grid-template-columns: 1fr 1.7fr; gap: 64px; align-items: start; }
.booking-intro .section-title { color: #fff; line-height: 1.15; }
.booking-desc { color: rgba(255,255,255,0.45); font-size: 1rem; margin-top: 18px; line-height: 1.8; }
.booking-note { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: #25D366; font-size: 0.9rem; }
.booking-note i { font-size: 1.15rem; }
.booking-alts { margin-top: 36px; }
.booking-alts-label { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.booking-alt-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.alt-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); font-size: 0.88rem;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.alt-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,160,99,0.06); }

.booking-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,160,99,0.15);
  border-radius: 20px;
  padding: 40px 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,160,99,0.18);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  transition: border-color 0.25s, background 0.25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: rgba(201,160,99,0.06); }
.form-group select option { background: #1c1c1c; color: #fff; }
.form-group textarea { resize: vertical; min-height: 88px; }
.form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.6); cursor: pointer; }

.btn-book-wa {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 16px 32px; border-radius: 50px; border: none;
  font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 500;
  cursor: pointer; margin-top: 6px;
  transition: background 0.3s, transform 0.2s;
}
.btn-book-wa:hover { background: #1da851; transform: translateY(-2px); }
.btn-book-wa i { font-size: 1.2rem; }

/* ============ CONTACT ============ */
.contact { background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-detail { display: flex; gap: 18px; margin-bottom: 26px; align-items: flex-start; }
.contact-detail i { font-size: 1.1rem; color: var(--gold); margin-top: 4px; width: 20px; flex-shrink: 0; }
.contact-detail strong { display: block; font-weight: 500; font-size: 0.88rem; margin-bottom: 3px; }
.contact-detail p { color: #777; font-size: 0.9rem; }
.contact-detail a { color: var(--rose); }
.contact-detail a:hover { text-decoration: underline; }
.whatsapp-btn { background: #25D366; margin-top: 10px; }
.whatsapp-btn:hover { background: #1da851; }

/* ============ FOOTER ============ */
.footer { background: var(--dark); padding: 52px 20px; text-align: center; }
.footer-tagline { color: rgba(255,255,255,0.35); font-size: 0.78rem; letter-spacing: 2px; margin-bottom: 28px; }
.footer-links { display: flex; gap: 28px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.2); font-size: 0.75rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .booking-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.tall { grid-row: span 1; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .logo-img { height: 36px; }
  .nav-inner { padding: 10px 20px; }
  .hero-content { padding-top: 64px; }
  .about-img-block img { height: 260px; }
  .booking-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  :root { --section-pad: 64px 16px; }
  .float-wa { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
}
