﻿

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

:root {
  --charcoal: #1a1a1a;
  --gold: #d4af37;
  --gold-light: #e8cc6a;
  --bone: #f9f9f6;
  --bone-dark: #f0f0ec;
  --grey: #8a8a8a;
  --dark-bg: #111111;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bone);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(212,175,55,0.55);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
}

#page-loader {
  position: fixed; inset: 0;
  background: var(--charcoal);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
}
.loader-inner { text-align: center; }
.loader-wordmark {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 8px;
  text-transform: uppercase;
  opacity: 0;
}
.loader-bar-wrap {
  width: 160px; height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 1.5rem auto 0;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
}

#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
}
#navbar.transparent { background: transparent; }
#navbar.glass {
  background: rgba(249,249,246,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26,26,26,0.06);
  padding: 1rem 4rem;
}
#navbar.glass-dark {
  background: rgba(17,17,17,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  padding: 1rem 4rem;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 4px;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
}
.nav-logo.light { color: #fff; }
.nav-logo.dark { color: var(--charcoal); }
.nav-links {
  display: flex; align-items: center; gap: 3rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links.light a { color: rgba(255,255,255,0.8); }
.nav-links.light a:hover { color: var(--gold); }
.nav-links.dark a { color: var(--charcoal); }
.nav-links.dark a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold) !important; }

.nav-book-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1.6rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 99px;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
  white-space: nowrap;
}
.nav-book-btn:hover { background: #b5952f; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: currentColor; transition: all 0.3s; }
.hamburger.light { color: #fff; }
.hamburger.dark { color: var(--charcoal); }

#mobile-menu {
  position: fixed; inset: 0;
  background: var(--charcoal);
  z-index: 200;
  display: flex; flex-direction: column;
  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-nav-links { list-style: none; text-align: center; }
.mobile-nav-links li { margin-bottom: 2.5rem; }
.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--bone);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-book-btn {
  margin-top: 2rem;
  display: inline-flex; padding: 1rem 3rem;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.mobile-book-btn:hover { background: var(--gold); color: #fff; }

.page-hero {
  position: relative; width: 100%;
  height: 60vh; min-height: 420px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 110%;
  object-fit: cover;
  top: -5%;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.3) 70%, transparent 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 3rem 4rem 4rem;
  width: 100%;
}
.page-eyebrow {
  font-size: 0.7rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; font-weight: 500;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  color: #fff; line-height: 1;
  font-weight: 400;
}

.section-eyebrow {
  font-size: 0.7rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; font-weight: 500;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.1; font-weight: 400;
}
.section-title.light { color: #fff; }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.parallax-wrap { overflow: hidden; position: relative; }
.parallax-img { width: 100%; height: 115%; object-fit: cover; position: absolute; top: -8%; left: 0; will-change: transform; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--gold); color: #fff;
  text-decoration: none; font-size: 0.75rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 600; border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.btn-gold:hover { background: #b5952f; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border: 1.5px solid var(--charcoal); color: var(--charcoal);
  text-decoration: none; font-size: 0.75rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; background: transparent; cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-outline.light {
  border-color: rgba(255,255,255,0.5); color: #fff;
}
.btn-outline.light:hover { background: #fff; color: var(--charcoal); }
.btn-text {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500;
  color: var(--charcoal); text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-text:hover { color: var(--gold); border-color: var(--gold); }
.btn-text.light { color: #fff; border-color: #fff; }
.btn-text.light:hover { color: var(--gold); border-color: var(--gold); }

.mag-btn { display: inline-block; }

.divider { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem 0; }

.img-card {
  position: relative; overflow: hidden; border-radius: 4px;
  display: block; text-decoration: none;
}
.img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25,1,0.5,1); display: block; }
.img-card:hover img { transform: scale(1.06); }
.img-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}
.img-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem; transform: translateY(4px);
  transition: transform 0.4s ease;
}
.img-card:hover .img-card-content { transform: translateY(0); }

.stats-strip {
  background: var(--charcoal);
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; padding: 3.5rem 2rem;
}
.stat-item { padding: 1rem; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold); font-weight: 400; line-height: 1;
}
.stat-label {
  font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic; line-height: 1.5; font-weight: 400;
}

footer {
  background: var(--dark-bg);
  color: var(--bone);
  padding: 0 0 2rem;
  display: block;
}
.footer-inner-pad {
  padding: 5rem 4rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 4rem 0;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem; letter-spacing: 3px;
  color: #fff; text-decoration: none;
}
.footer-tagline {
  font-size: 0.8rem; color: var(--grey);
  line-height: 1.7; margin-top: 1rem; max-width: 280px;
}
.footer-heading {
  font-size: 0.6rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; font-weight: 600;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
  font-size: 0.82rem; color: var(--grey);
  text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 4rem 4rem 0;
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.72rem; color: var(--grey);
  text-decoration: none;
}
.footer-bg-text {
  position: absolute; bottom: -2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 12vw; color: rgba(255,255,255,0.03);
  white-space: nowrap; pointer-events: none;
  user-select: none; z-index: 0;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--grey); }
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(26,26,26,0.2);
  padding: 0.7rem 0; font-size: 0.95rem; font-family: var(--font-sans);
  color: var(--charcoal); outline: none; transition: border-color 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group.dark input,
.form-group.dark select,
.form-group.dark textarea { color: #fff; border-bottom-color: rgba(255,255,255,0.2); }
.form-group.dark input:focus,
.form-group.dark select:focus,
.form-group.dark textarea:focus { border-color: var(--gold); }

.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; letter-spacing: 1px; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--gold); }

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.6rem; letter-spacing: 3px;
  text-transform: uppercase; z-index: 5;
}
.scroll-line { width: 1px; height: 50px; background: rgba(255,255,255,0.2); overflow: hidden; }
.scroll-line-inner {
  width: 100%; height: 100%; background: #fff;
  transform: translateY(-100%);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

.hero-swiper-outer { position:absolute; inset:0; z-index:0; }
.hero-swiper { width:100%; height:100%; }
.hero-slide-bg {
  width:100%; height:100%;
  background-size:cover; background-position:center;
  transform:scale(1.08);
  transition:transform 0s;
}
.swiper-slide-active .hero-slide-bg {
  animation: heroKenBurns 7s ease-out forwards;
}
@keyframes heroKenBurns {
  from { transform:scale(1.08); }
  to   { transform:scale(1.0); }
}

.hero-swiper .swiper-pagination-bullet {
  width:8px; height:8px; border-radius:50%;
  background:rgba(255,255,255,0.45); opacity:1;
  transition:all 0.4s ease;
}
.hero-swiper .swiper-pagination-bullet-active {
  background:var(--gold); width:26px; border-radius:4px;
}
.hero-slide-counter {
  position:absolute; bottom:3rem; right:4rem; z-index:10;
  color:rgba(255,255,255,0.55); font-size:0.68rem; letter-spacing:3px;
  font-family:var(--font-sans);
}
.hero-slide-counter strong { color:var(--gold); font-weight:500; }

.footer-map-section {
  display:grid; grid-template-columns:1fr 1fr;
  gap:0; border-bottom:1px solid rgba(255,255,255,0.07);
  margin-bottom:4rem; overflow:hidden;
}
.footer-map-frame {
  height:300px; position:relative; overflow:hidden;
}
.footer-map-frame iframe {
  width:100%; height:100%; border:none;
  filter:grayscale(0.2) contrast(0.9) brightness(0.85);
}
.footer-map-info {
  padding:3rem; background:rgba(255,255,255,0.03);
  display:flex; flex-direction:column; justify-content:center;
}
.footer-map-actions { display:flex; gap:0.8rem; flex-wrap:wrap; margin-top:1.5rem; }
.map-btn {
  display:inline-flex; align-items:center; gap:0.4rem;
  font-size:0.68rem; letter-spacing:2.5px; text-transform:uppercase;
  font-weight:500; text-decoration:none;
  padding:0.6rem 1.2rem;
  border:1px solid rgba(255,255,255,0.25); color:rgba(255,255,255,0.75);
  transition:all 0.3s;
}
.map-btn:hover { border-color:var(--gold); color:var(--gold); }

.back-home-btn {
  display:inline-flex; align-items:center; gap:0.5rem;
  margin-top:1.5rem;
  padding:0.55rem 1.2rem;
  border:1px solid rgba(255,255,255,0.35);
  color:rgba(255,255,255,0.8);
  text-decoration:none; font-size:0.68rem;
  letter-spacing:2px; text-transform:uppercase;
  transition:all 0.35s; backdrop-filter:blur(4px);
  border-radius:2px;
}
.back-home-btn:hover { border-color:var(--gold); color:var(--gold); background:rgba(212,175,55,0.08); }
.back-home-btn svg { transition:transform 0.3s; }
.back-home-btn:hover svg { transform:translateX(-3px); }

#scroll-top {
  position:fixed; bottom:2rem; right:2rem; z-index:500;
  width:44px; height:44px; border-radius:50%;
  background:var(--gold); color:#fff; border:none;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  opacity:0; transform:translateY(10px);
  transition:opacity 0.3s, transform 0.3s;
  box-shadow:0 4px 20px rgba(212,175,55,0.4);
}
#scroll-top.visible { opacity:1; transform:translateY(0); }
#scroll-top:hover { background:#b5952f; }

.reveal-left  { opacity:0; transform:translateX(-40px); transition:opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal-right { opacity:0; transform:translateX(40px);  transition:opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal-scale { opacity:0; transform:scale(0.92);       transition:opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal-left.visible, .reveal-right.visible, .reveal-scale.visible { opacity:1; transform:none; }
.reveal-delay-5 { transition-delay:0.5s; }
.reveal-delay-6 { transition-delay:0.6s; }

.divider-animate {
  width:0; height:1px; background:var(--gold);
  transition:width 0.8s cubic-bezier(0.22,1,0.36,1) 0.3s;
}
.divider-animate.visible { width:60px; }

@media (max-width:1280px) {
  #navbar { padding:1.4rem 3rem; }
  #navbar.glass, #navbar.glass-dark { padding:1rem 3rem; }
}
@media (max-width:1024px) {
  #navbar { padding:1.4rem 2rem; }
  #navbar.glass, #navbar.glass-dark { padding:1rem 2rem; }
  .nav-links { gap:1.8rem; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  .stats-strip { grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right:none; }
  .footer-map-section { grid-template-columns:1fr; }
  .footer-map-frame { height:240px; }
  .footer-map-info { padding:2rem; }
}
@media (max-width:900px) {
  .page-hero { height:52vh; min-height:380px; }
  .page-hero-title { font-size:clamp(2.2rem,7vw,4rem); }
}
@media (max-width:768px) {
  #navbar { padding:1.1rem 1.25rem; }
  #navbar.glass, #navbar.glass-dark { padding:0.9rem 1.25rem; }
  .nav-links { display:none; }
  .nav-book-btn { display:none; }
  .hamburger { display:flex; }
  footer { padding: 0 0 2rem; }
  .footer-grid { padding: 3rem 1.5rem 0; grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { margin: 2.5rem 1.5rem 0; flex-direction:column; gap:1rem; text-align:center; }
  .footer-bottom div { flex-wrap:wrap; justify-content:center; gap:1rem !important; }
  .stats-strip { grid-template-columns:repeat(2,1fr); padding:2.5rem 1rem; }
  .stat-item { padding:0.75rem; }
  .stat-item:nth-child(2) { border-right:none; }
  .stat-item:nth-child(4) { border-right:none; }
  .scroll-indicator { display:none; }
  .hero-slide-counter { right:1.5rem; bottom:2rem; }
  .footer-map-info { padding:1.5rem; }
  .footer-map-actions { flex-direction:column; }
}
@media (max-width:640px) {
  .stats-strip { grid-template-columns:1fr 1fr; }
  .divider { margin:1rem 0; }
  .btn-gold, .btn-outline { padding:0.85rem 1.8rem; }
  .testimonial-quote { font-size:1.35rem; }
  .page-hero { min-height:340px; }
  .footer-bg-text { display:none; }
}
@media (max-width:480px) {
  .mobile-nav-links a { font-size:2rem; }
  .mobile-nav-links li { margin-bottom:1.8rem; }
  .back-home-btn { font-size:0.62rem; padding:0.5rem 1rem; }
  .section-title { font-size:clamp(1.7rem,6vw,3rem); }
}
