/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
:root {
  --gold: #c9a96e;
  --gold-light: #e0c898;
  --gold-dark: #a07840;
  --cream: #fdf8f2;
  --dark: #1a1612;
  --mid: #4a3f35;
  --text: #2e2621;
  --muted: #8a7a6e;
  --white: #ffffff;
  --border: rgba(201,169,110,0.2);
}
 
html {
  scroll-behavior: smooth;
}
 
body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
 
/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 40px;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
 
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: padding 0.4s ease, border-color 0.4s ease;
}
 
.header.scrolled {
  background: rgba(253,248,242,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
 
.header.scrolled .header-inner {
  padding: 16px 0;
  border-color: var(--border);
}
 
/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.4s;
}
 
.header.scrolled .brand {
  color: var(--dark);
}
 
.brand-icon {
  font-size: 20px;
}
 
/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 44px;
}
 
.nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
 
.header.scrolled .nav a {
  color: var(--mid);
}
 
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
 
.nav a:hover::after,
.nav a.nav-book::after {
  width: 100%;
}
 
.nav a.nav-book {
  color: var(--gold-light);
}
 
.header.scrolled .nav a.nav-book {
  color: var(--gold-dark);
}
 
.nav a:hover {
  color: var(--white);
}
 
.header.scrolled .nav a:hover {
  color: var(--dark);
}
 
/* HEADER RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
 
/* LANGUAGE */
.language {
  position: relative;
}
 
.language-selected {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  user-select: none;
}
 
.header.scrolled .language-selected {
  color: var(--mid);
}
 
.language-selected img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
}
 
.arrow {
  font-size: 9px;
  opacity: 0.7;
}
 
.language-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 6px 0;
  min-width: 80px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
 
.language-dropdown.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
 
.language-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  transition: background 0.2s;
}
 
.language-dropdown a:hover {
  background: var(--cream);
}
 
.language-dropdown img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
}
 
/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 28px;
  height: 24px;
  z-index: 10;
}
 
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
 
.header.scrolled .menu-toggle span {
  background: var(--dark);
}
 
.menu-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
 
 
/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
 
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
 
.hero:hover .hero-bg {
  transform: scale(1.0);
}
 
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,0.35) 0%,
    rgba(10,8,5,0.55) 60%,
    rgba(10,8,5,0.7) 100%
  );
}
 
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding: 0 20px;
}
 
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s ease forwards;
}
 
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(70px, 10vw, 110px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}
 
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
 
.hero-sub {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s ease forwards;
}
 
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s ease forwards;
  opacity: 0;
}
 
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
 
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.6); opacity: 1; }
}
 
 
/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 8px 25px rgba(201,169,110,0.35);
  font-family: 'Jost', sans-serif;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s ease forwards;
}
 
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(201,169,110,0.45);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
 
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  box-shadow: none;
  animation: none;
  opacity: 1;
}
 
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(201,169,110,0.3);
}
 
 
/* ===== BOOKING DROPDOWN ===== */
.booking {
  position: relative;
  display: inline-block;
}
 
.booking-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 20;
}
 
.booking-menu.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
 
.booking-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
}
 
.booking-menu a:hover {
  background: var(--cream);
  color: var(--gold-dark);
}
 
.booking-icon {
  font-style: normal;
  font-size: 9px;
  color: var(--gold);
}
 
 
/* ===== SECTION LABEL ===== */
.section-label,
.about-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
 
 
/* ===== ABOUT ===== */
.about {
  background: var(--dark);
  color: var(--white);
  padding: 120px 40px;
}
 
.about-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 60px 100px;
  align-items: start;
}
 
.about-label {
  grid-column: 1 / -1;
}
 
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--white);
}
 
.about-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}
 
.about-text p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}
 
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 10px;
  border-left: 1px solid rgba(201,169,110,0.25);
  padding-left: 60px;
  grid-column: 2;
  grid-row: 2;
}
 
.stat {
  display: flex;
  flex-direction: column;
}
 
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: -1px;
}
 
.stat-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
 
 
/* ===== GALLERY ===== */
.gallery {
  padding: 120px 40px;
  background: var(--cream);
}
 
.gallery-header {
  max-width: 1100px;
  margin: 0 auto 50px;
}
 
.gallery-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 300;
  color: var(--dark);
}
 
.gallery-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
 
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
 
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
 
.gallery-item:hover img {
  transform: scale(1.06);
}
 
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
 
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
 
.gallery-item--large {
  grid-row: 1 / 3;
}
 
.gallery-item--wide {
  grid-column: 2 / 4;
}

/* GALLERY FOOTER */
.gallery-footer {
  text-align: center;
  margin-top: 40px;
}

.btn-gallery-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gallery-all:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(201,169,110,0.3);
}

.gallery-all-icon {
  font-size: 16px;
}
 
/* ===== FEATURES ===== */
.features {
  background: var(--dark);
  padding: 120px 40px;
  color: var(--white);
}
 
.features-inner {
  max-width: 1100px;
  margin: auto;
}
 
.features h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 60px;
  color: var(--white);
}
 
.features h2 em {
  font-style: italic;
  color: var(--gold-light);
}
 
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 16px;
  overflow: hidden;
}
 
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 36px 32px;
  border-right: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  transition: background 0.3s;
}
 
.feature-item:hover {
  background: rgba(201,169,110,0.07);
}
 
.feature-icon {
  font-size: 26px;
}
 
.feature-name {
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
 
 
/* ===== CONTACT ===== */
.contact {
  background: var(--cream);
  padding: 140px 40px;
  text-align: center;
}
 
.contact-inner {
  max-width: 600px;
  margin: auto;
}
 
.contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 66px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
}
 
.contact h2 em {
  font-style: italic;
  color: var(--gold);
}
 
.contact p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 44px;
}
 
.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
 
.contact-actions .btn {
  opacity: 1;
  animation: none;
}
 
.booking-contact .booking-menu {
  top: auto;
  bottom: calc(100% + 14px);
}
 
 
/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 60px 40px;
  text-align: center;
  border-top: 1px solid rgba(201,169,110,0.15);
}
 
.footer-inner {
  max-width: 400px;
  margin: auto;
}
 
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 10px;
}
 
.footer-tagline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
 
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}
 
 
/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
 
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
 
.gallery-item.fade-up { transition-delay: calc(var(--i, 0) * 0.1s); }
.feature-item.fade-up { transition-delay: calc(var(--i, 0) * 0.07s); }
.stat.fade-up         { transition-delay: calc(var(--i, 0) * 0.15s); }
 
 
/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
 
@media (max-width: 768px) {
  .header {
    padding: 0 20px;
  }
 
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    display: none;
    z-index: 50;
  }
 
  .nav.active {
    display: flex;
  }
 
  .nav a {
    font-size: 14px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.8);
  }
 
  .menu-toggle {
    display: flex;
    z-index: 60;
  }
 
  .header.scrolled .menu-toggle.open span {
    background: var(--white);
  }
 
  .hero h1 {
    font-size: 62px;
  }
 
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
 
  .about-stats {
    flex-direction: row;
    grid-column: 1;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(201,169,110,0.25);
    padding-top: 40px;
    gap: 30px;
  }
 
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
 
  .gallery-item--large {
    grid-row: 1;
    grid-column: 1 / -1;
  }
 
  .gallery-item--wide {
    grid-column: 1 / -1;
  }
 
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .about, .gallery, .features, .contact {
    padding: 80px 20px;
  }
 
  .gallery {
    padding-left: 20px;
    padding-right: 20px;
  }
}
 
@media (max-width: 480px) {
  .hero h1 {
    font-size: 48px;
  }
 
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
 
  .contact-actions {
    flex-direction: column;
  }
}


/* ===== NAV BOOKING DROPDOWN ===== */
.nav-booking-wrap {
  position: relative;
}

.nav-booking-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  padding: 8px 0;
  min-width: 180px;
  display: none;
  z-index: 9999;
}

.nav-booking-menu.active {
  display: block;
}

.nav-booking-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
}

.nav-booking-menu a:hover {
  background: var(--cream);
  color: var(--gold-dark);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.95);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  margin: auto;
}

.lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 16px;
}

.lightbox-counter {
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 2px;
  margin-top: 8px;
}

.lightbox-close {
  position: fixed;
  top: 28px;
  right: 36px;
  z-index: 3;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 22px;
  cursor: pointer;
  transition: color 0.2s;
}

.lightbox-close:hover { color: white; }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.18);
}

@media (max-width: 768px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 16px; right: 16px; }
}