/* ─────────────────────────────────────────────────────────────
   TERRAZZA ISIDE  –  Main Stylesheet
   ───────────────────────────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --gold:       #b8955a;
  --gold-light: #d4af7a;
  --gold-pale:  #e8d5b0;
  --navy:       #0d1b2a;
  --navy-mid:   #172840;
  --off-white:  #f9f6f0;
  --text:       #2c2c2c;
  --text-mid:   #555;
  --border:     rgba(184, 149, 90, 0.25);
  --radius:     4px;
  --transition: 0.35s ease;
  --max-w:      1200px;
  --section-py: 100px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }
p  { font-size: 1rem; line-height: 1.8; color: var(--text-mid); font-weight: 300; }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.center { text-align: center; }

/* ── h2 DECORATIONS ── */
h2.decorated {
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
}
h2.decorated::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
h2.decorated-left {
  position: relative;
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
}
h2.decorated-left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 1.5px;
  background: var(--gold);
}

/* ── ORNAMENT DIVIDER ── */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2.5rem 0 1rem;
  font-size: 0.45rem;
  color: var(--gold);
  opacity: 0.65;
}
.ornament-divider::before,
.ornament-divider::after {
  content: '';
  display: block;
  height: 1px;
  width: 70px;
  background: currentColor;
}
.ornament-divider.wide::before,
.ornament-divider.wide::after { width: 110px; }
.ornament-divider.light { color: var(--gold-light); }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── BUTTONS ── */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
/* Shimmer sweep */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-15deg);
  transition: left 0.55s ease;
}
.btn:hover::after { left: 160%; }

.btn-light        { background: #fff; color: var(--navy); border-color: #fff; }
.btn-light:hover  { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-dark         { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-dark:hover   { background: var(--gold); border-color: var(--gold); }
.btn-gold         { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover   { background: var(--gold-light); border-color: var(--gold-light); }
.btn-full         { width: 100%; text-align: center; }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
/* scrolled state → see glassmorphism section below */
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; height: 72px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300;
  color: #fff; letter-spacing: 0.1em;
  font-style: italic;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a:hover { color: #fff; }
.nav-links .nav-cta {
  padding: 0.5rem 1.4rem;
  border: 1px solid rgba(184,149,90,0.6);
  color: var(--gold-light);
}
.nav-links .nav-cta:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: #fff; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  background: url('images/hero.jpg') center center / cover no-repeat;
  overflow: hidden;
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(8,15,26,0.4) 0%, rgba(8,15,26,0.1) 50%, rgba(8,15,26,0.65) 100%),
    radial-gradient(ellipse 90% 60% at 50% 70%, rgba(80,150,220,0.07) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 0 2rem; max-width: 820px;
}
.hero-sub {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.4rem;
}
.hero-content h1 {
  color: #fff; font-style: italic;
  text-shadow: 0 2px 60px rgba(0,0,0,0.4);
  margin-bottom: 0;
}
.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.4rem 0 1.6rem;
  font-size: 0.42rem;
  color: var(--gold-light);
  opacity: 0.75;
}
.hero-ornament::before,
.hero-ornament::after {
  content: '';
  display: block;
  width: 70px;
  height: 1px;
  background: rgba(212,175,122,0.55);
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.82); margin-bottom: 2.8rem;
  letter-spacing: 0.02em;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  display: block; width: 20px; height: 20px;
  border-right: 1.5px solid rgba(255,255,255,0.5);
  border-bottom: 1.5px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.8; }
  50%       { transform: rotate(45deg) translateY(7px); opacity: 0.25; }
}

/* ── ABOUT ── */
#about {
  padding: var(--section-py) 0 0;
  background: var(--off-white);
}
.about-text p { margin-bottom: 1.2rem; }
.quick-facts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 2.5rem;
  border-top: 1px solid var(--border); padding-top: 2rem;
}
.fact { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; text-align: center; }
.fact-icon  { font-size: 1.3rem; }
.fact-value { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--navy); }
.fact-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); }

.listing-rating {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 0 !important;
  margin-top: -0.4rem;
}
.listing-rating strong { color: var(--navy); }

.image-frame {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}
.image-frame::before {
  content: '';
  position: absolute; inset: -14px -14px auto auto; z-index: -1;
  width: 55%; height: 55%;
  border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold);
  opacity: 0.6;
}
.image-frame::after {
  content: '';
  position: absolute; inset: auto auto -14px -14px; z-index: -1;
  width: 55%; height: 55%;
  border-bottom: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold);
  opacity: 0.6;
}

/* Image placeholders */
.img-placeholder { background: linear-gradient(135deg, #c4a882 0%, #7a93ae 100%); }
.img-placeholder img { display: none; }
.placeholder-label {
  display: none;
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  color: rgba(255,255,255,0.85);
}
.img-placeholder .placeholder-label { display: flex; }

/* ── VIEWS STRIP ── */
.views-strip {
  padding: var(--section-py) 0 0;
  background: var(--navy);
  color: #fff;
}
.views-strip .section-label { color: var(--gold-light); }
.views-strip h2 { color: #fff; }
.views-strip h2.decorated::after {
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.views-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 3.5rem;
}
.view-card {
  text-align: center; padding: 2.5rem 1.5rem;
  border: 1px solid rgba(184,149,90,0.18);
  position: relative; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.view-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,149,90,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.view-card:hover { border-color: rgba(184,149,90,0.5); transform: translateY(-5px); }
.view-card:hover::before { opacity: 1; }
.view-icon { font-size: 1.6rem; color: var(--gold-light); margin-bottom: 1.2rem; display: block; }
.view-card h3 { color: #fff; margin-bottom: 0.8rem; font-size: 1.5rem; }
.view-card p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ── FEATURES ── */
#features { padding: var(--section-py) 0; background: #fff; }
#features h2.decorated { margin-bottom: 3.5rem; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.feature-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.feature-card:hover { box-shadow: 0 12px 50px rgba(0,0,0,0.08); transform: translateY(-4px); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 44px; height: 44px; margin-bottom: 1.2rem; color: var(--gold); }
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 { margin-bottom: 0.8rem; color: var(--navy); font-size: 1.25rem; }
.feature-card p  { font-size: 0.92rem; }

/* ── PARALLAX QUOTE ── */
#parallax-quote {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #080f1a;
}
.parallax-bg {
  position: absolute;
  top: -80px; left: 0; right: 0; bottom: -80px;
  background:
    radial-gradient(ellipse 70% 70% at 25% 50%, rgba(184,149,90,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 75% 40%, rgba(70,140,210,0.06) 0%, transparent 65%),
    radial-gradient(circle at 1px 1px, rgba(184,149,90,0.08) 1px, transparent 0);
  background-size: auto, auto, 48px 48px;
  will-change: transform;
}
.parallax-content {
  position: relative; z-index: 1;
  text-align: center;
}
.parallax-content blockquote {
  margin: 0.5rem 0;
}
.parallax-content blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3.2vw, 2.3rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  max-width: 720px;
  margin: 1.5rem auto;
  line-height: 1.65;
  letter-spacing: 0.01em;
}
.parallax-content cite {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
  display: block;
  margin-top: 0.5rem;
}

/* ── GALLERY ── */
#gallery { padding: var(--section-py) 0; background: var(--off-white); }
#gallery h2.decorated { margin-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 260px) 220px;
  gap: 10px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item {
  position: relative; overflow: hidden;
  cursor: zoom-in;
  background: linear-gradient(135deg, #c4a882 0%, #7a93ae 100%);
}
.gallery-item.large { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-item.wide  { grid-column: 1 / -1; }
.gallery-item img { transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,15,26,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem;
  color: #fff; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0; transition: opacity var(--transition), transform var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-zoom-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  font-size: 2rem; color: rgba(255,255,255,0.9);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-item:hover .gallery-zoom-icon { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
.gallery-item.img-placeholder .placeholder-label { display: flex; font-size: 0.9rem; }
.gallery-note {
  text-align: center; font-size: 0.82rem;
  color: rgba(85,85,85,0.55); margin-top: 1.5rem;
  font-style: italic;
}
.gallery-note code {
  background: rgba(0,0,0,0.06); padding: 0.1rem 0.4rem;
  border-radius: 3px; font-size: 0.78rem;
}

/* ── TESTIMONIALS ── */
#testimonials { padding: var(--section-py) 0 0; background: #fff; }
#testimonials h2.decorated { margin-bottom: 1rem; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem; margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--off-white);
  padding: 2.8rem 2.2rem 2rem;
  position: relative;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: 0 12px 50px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 0.8rem; left: 1.4rem;
  line-height: 1;
  pointer-events: none;
}
.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.4rem;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.8rem;
  font-weight: 400;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.author-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.author-origin {
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* ── LOCATION ── */
#location { padding: var(--section-py) 0; background: #fff; }
.location-text p  { margin-bottom: 2rem; }
.location-list { display: flex; flex-direction: column; gap: 0.9rem; }
.location-list li {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.95rem; color: var(--text-mid);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.location-list li:last-child { border-bottom: none; }
.location-list span { font-size: 1.1rem; min-width: 1.4rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }

/* ── BOOKING (Guesty widget) ── */
#booking {
  padding: var(--section-py) 0 0;
  background: var(--navy);
  color: #fff;
}
#booking .section-label { color: var(--gold-light); }
#booking h2 { color: #fff; }
#booking h2.decorated::after {
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.booking-subtitle {
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 3rem;
}
.guesty-widget-wrap {
  width: fit-content;  /* shrink to the widget's own width */
  max-width: 100%;     /* don't overflow on mobile */
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,149,90,0.18);
  border-radius: 8px;
}
#booking .ornament-divider { color: var(--gold-light); }

/* ── CONTACT ── */
#contact { padding: var(--section-py) 0; background: #fff; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start;
}
.contact-text p  { margin-bottom: 1.5rem; }
.contact-details p { font-size: 0.95rem; margin-bottom: 0.5rem; }
.contact-details a { color: var(--gold); transition: color var(--transition); }
.contact-details a:hover { color: var(--navy); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif; font-size: 0.95rem;
  color: var(--text); background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184,149,90,0.1);
}
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.85rem; text-align: center; min-height: 1.4rem; color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.55);
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(184,149,90,0.15);
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.8rem; text-align: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; color: #fff; font-weight: 300;
  letter-spacing: 0.1em; font-style: italic; margin-bottom: 0.3rem;
}
.footer-brand p:last-child { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 2.2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.22); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(5, 10, 20, 0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-inner {
  max-width: 88vw; max-height: 85vh;
  text-align: center;
  animation: lightboxIn 0.35s ease;
}
@keyframes lightboxIn {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.lightbox-inner img {
  max-width: 88vw; max-height: 78vh;
  width: auto; height: auto;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.lightbox-caption {
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; margin-top: 1.2rem;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--gold);
  background: rgba(184,149,90,0.12);
  color: #fff;
}
.lightbox-close {
  top: 1.5rem; right: 2rem;
  font-size: 1.4rem; width: 46px; height: 46px;
}
.lightbox-prev {
  left: 2rem; top: 50%; transform: translateY(-50%);
  font-size: 2.2rem; width: 52px; height: 52px;
}
.lightbox-next {
  right: 2rem; top: 50%; transform: translateY(-50%);
  font-size: 2.2rem; width: 52px; height: 52px;
}

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(10, 18, 32, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(184,149,90,0.25);
  padding: 0.9rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-left { display: flex; flex-direction: column; gap: 0.1rem; }
.sticky-bar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: #fff; font-style: italic;
  font-weight: 300; letter-spacing: 0.06em;
}
.sticky-bar-sub {
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.sticky-bar-facts {
  display: flex; gap: 2rem;
  font-size: 0.72rem; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

/* ── FADE-IN ANIMATION ── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── FLOATING ACTION BUTTONS ── */
.floating-actions {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  z-index: 1100;
  display: flex;
  gap: 0;
}
.floating-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  padding: 0.7rem 1.6rem;
  border: none;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.floating-btn--request {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-radius: var(--radius) 0 0 var(--radius);
}
.floating-btn--request:hover,
.floating-btn--request.floating-btn--active {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.floating-btn--book {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.floating-btn--book:hover {
  background: var(--gold);
  color: #fff;
}

/* ── REQUEST OVERLAY ── */
.request-overlay {
  position: fixed;
  inset: 0;
  z-index: 10500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.request-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.request-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: var(--off-white);
}
.request-overlay-container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.request-overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  flex-shrink: 0;
}
.request-overlay-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-mid);
  cursor: pointer;
  transition: color 0.3s ease;
}
.request-overlay-close:hover {
  color: var(--navy);
}
.request-overlay-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--text);
}
.request-overlay-top .floating-btn {
  border-radius: var(--radius);
  pointer-events: none;
}
.request-overlay-body {
  flex: 1;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 2.5rem 4rem;
}
.request-overlay-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 3rem;
}

/* Request form */
.request-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: rgba(255,255,255,0.7);
  padding: 3rem 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}
.request-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.request-form-row--3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.request-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.request-form-group label {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}
.request-form-group label .req {
  color: #c0392b;
}
.request-form-group input,
.request-form-group select,
.request-form-group textarea {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  -webkit-appearance: none;
}
.request-form-group input:focus,
.request-form-group select:focus,
.request-form-group textarea:focus {
  border-bottom-color: var(--gold);
}
.request-form-group textarea {
  resize: vertical;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 0.8rem;
  border-radius: 4px;
  min-height: 120px;
}
.request-form-group textarea:focus {
  border-color: var(--gold);
}
.request-form-note {
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2rem;
  color: var(--gold);
}
.request-form-footer {
  display: flex;
  justify-content: flex-end;
}
.request-send-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  padding: 0.85rem 3.5rem;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.request-send-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Responsive request overlay */
@media (max-width: 768px) {
  .request-overlay-body {
    padding: 1.5rem 1.2rem 3rem;
  }
  .request-form {
    padding: 2rem 1.5rem 1.5rem;
  }
  .request-form-row,
  .request-form-row--3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .request-overlay-top {
    padding: 1rem 1.2rem;
  }
  .request-overlay-top .floating-btn {
    display: none;
  }
  .floating-actions {
    top: 0.8rem;
    right: 0.8rem;
  }
  .floating-btn {
    padding: 0.55rem 1rem;
    font-size: 0.62rem;
  }
}

/* ── BOOKING MODAL ── */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.booking-modal.active {
  opacity: 1;
  pointer-events: all;
}
.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.92);
  backdrop-filter: blur(8px);
}
.booking-modal-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  transform: translateY(30px);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.booking-modal.active .booking-modal-container {
  transform: translateY(0);
}
.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(184, 149, 90, 0.2);
  flex-shrink: 0;
}
.booking-modal-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.booking-modal-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.08em;
}
.booking-modal-sep {
  color: rgba(184, 149, 90, 0.5);
  font-size: 1rem;
}
.booking-modal-dates {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.booking-modal-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.booking-modal-close:hover {
  border-color: var(--gold);
  background: rgba(184, 149, 90, 0.12);
  color: #fff;
}
.booking-modal-body {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.booking-modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.booking-modal-iframe.loaded {
  opacity: 1;
}
.booking-modal-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  transition: opacity 0.4s ease;
}
.booking-modal-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
.booking-modal-loader p {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.booking-loader-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(184, 149, 90, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: bookingSpin 0.9s linear infinite;
}
@keyframes bookingSpin {
  to { transform: rotate(360deg); }
}

/* Responsive modal */
@media (max-width: 768px) {
  .booking-modal-container {
    max-width: 100%;
  }
  .booking-modal-header {
    padding: 0.8rem 1rem;
  }
  .booking-modal-sep,
  .booking-modal-dates {
    display: none;
  }
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.preloader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.12em;
  animation: preloaderPulse 1.8s ease infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}
.preloader-line {
  width: 120px;
  height: 1.5px;
  background: rgba(184, 149, 90, 0.2);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: preloaderFill 1.6s ease-out forwards;
}
@keyframes preloaderFill {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.8rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ── FOOTER SOCIAL ── */
.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.45);
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.footer-social a:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(184,149,90,0.1);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ── CLIP-PATH REVEAL ── */
.clip-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.77, 0, 0.175, 1);
}
.clip-reveal.revealed {
  clip-path: inset(0 0% 0 0);
}

/* ── CHARACTER REVEAL ── */
.char-reveal .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.char-reveal .char.space {
  width: 0.3em;
}
.char-reveal.chars-visible .char {
  opacity: 1;
  transform: translateY(0);
}

/* ── GLASSMORPHISM NAVBAR ── */
#navbar.scrolled {
  background: rgba(11, 22, 36, 0.72);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  box-shadow: 0 1px 0 rgba(184,149,90,0.12), 0 4px 30px rgba(0,0,0,0.25);
}

/* ── MAGNETIC BUTTON EFFECT ── */
.btn.magnetic {
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── CUSTOM CURSOR ── */
@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease,
              background 0.3s ease, border-color 0.3s ease,
              opacity 0.3s ease;
  will-change: left, top;
}
.cursor-ring.hover {
  width: 52px; height: 52px;
  background: rgba(212, 175, 122, 0.12);
}
.cursor-ring.clicking {
  width: 22px; height: 22px;
  background: rgba(212, 175, 122, 0.25);
}
.cursor-ring.hidden { opacity: 0; }
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: left, top;
}
.cursor-dot.hidden { opacity: 0; }
@media (hover: none), (pointer: coarse) {
  .cursor-ring, .cursor-dot { display: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .two-col { gap: 3rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .views-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-bar-facts { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 70px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: fixed;
    inset: 72px 0 0 0; background: rgba(10,18,32,0.99);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.05rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .views-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-column: 1 / 3; grid-row: auto; }
  .gallery-item.wide  { grid-column: 1 / 3; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .lightbox-prev { left: 0.8rem; }
  .lightbox-next { right: 0.8rem; }
  .sticky-bar { padding: 0.8rem 1.2rem; }
  .sticky-bar-left .sticky-bar-sub { display: none; }
  #parallax-quote { padding: 90px 0; }
  .whatsapp-float { bottom: 4.8rem; right: 1rem; width: 46px; height: 46px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .views-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: auto; }
  .gallery-item.wide  { grid-column: auto; }
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev, .lightbox-next { display: none; }
}

/* ── Success popup ──────────────────────────────────────────── */
.success-popup {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.success-popup.active {
  opacity: 1;
  pointer-events: all;
}
.success-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.success-popup-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  text-align: center;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.success-popup.active .success-popup-card {
  transform: translateY(0) scale(1);
}
.success-popup-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  font-size: 1.9rem;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}
.success-popup-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,90,0.08) 0%, transparent 70%);
}
.success-popup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.success-popup-body {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.success-popup-body strong {
  color: var(--navy);
  font-weight: 500;
}
.success-popup-btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  background: var(--navy);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform 0.2s;
}
.success-popup-btn:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

/* Honeypot — visually hidden but not display:none (bots fill it) */
.bot-trap { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
