@import 'variables.css';

/* ── Override font tokens ──────────────────────────────────── */
:root {
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --bg-base: #080D15;
  --bg-surface: #0D1520;
  --bg-card: #121C2B;
  --text-primary: #F2EDE6;
  --text-muted: rgba(242, 237, 230, 0.55);
  --border-subtle: rgba(255, 255, 255, 0.07);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--bg-base);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Grain overlay ─────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.025;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
}

/* ── Utilities ─────────────────────────────────────────────── */
.container { width: min(1280px, 100% - 3rem); margin-inline: auto; }
.section { padding-block: var(--space-section); }

.section-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 2rem + 2.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
  margin-top: 0.75rem;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--color-gold-light); font-weight: 300; }

.section-subtitle {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 48ch;
  margin-top: 1.25rem;
  line-height: 1.85;
  font-weight: 300;
}

.gold-line {
  width: 36px;
  height: 1px;
  background: var(--color-gold);
  margin-top: 1.5rem;
  opacity: 0.5;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0;
}
.btn-primary {
  background: var(--color-gold);
  color: #060912;
  border-color: var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  box-shadow: 0 0 32px rgba(201, 168, 76, 0.35);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: rgba(242, 237, 230, 0.7);
  border-color: rgba(242, 237, 230, 0.2);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
}
.btn-gold {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn-gold:hover {
  background: var(--color-gold);
  color: #060912;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.75rem 0;
  transition: background 0.45s ease, backdrop-filter 0.45s ease, padding 0.35s ease, border-color 0.45s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(6, 9, 15, 0.85);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  padding: 1rem 0;
  border-bottom-color: rgba(201, 168, 76, 0.12);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--text-primary);
}
.nav-logo .brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
}
.nav-logo .tagline {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  color: rgba(242, 237, 230, 0.55);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--color-gold-light); }
.nav-cta {
  border: 1px solid rgba(201, 168, 76, 0.45) !important;
  color: var(--color-gold) !important;
  padding: 0.55rem 1.3rem;
  font-size: 0.68rem !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--color-gold) !important;
  color: #060912 !important;
  border-color: var(--color-gold) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg-base);
    align-items: center;
    justify-content: center;
    gap: 3rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.1rem; letter-spacing: 0.15em; }
  .nav-toggle { display: flex; z-index: 101; }
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-base);
}
.hero-bg {
  position: absolute;
  inset: -10%;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: opacity 1s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 13, 21, 0.84) 0%,
    rgba(8, 13, 21, 0.58) 55%,
    rgba(13, 35, 64, 0.38) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 5rem;
  max-width: 820px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.hero-eyebrow::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.45;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.75rem, 2.5rem + 8vw, 9.5rem);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.03em;
  margin-bottom: 2.25rem;
}
.hero-title .line-sm {
  display: block;
  font-size: 0.35em;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.06em;
  color: rgba(242, 237, 230, 0.45);
  margin-bottom: 0.2em;
}
.hero-title .line-main {
  display: block;
  font-style: italic;
  color: var(--text-primary);
}
.hero-title .gold-word { color: var(--color-gold-light); }

.hero-subtitle {
  font-size: var(--text-base);
  color: rgba(242, 237, 230, 0.65);
  max-width: 36ch;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.85;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  display: flex;
  gap: 3.5rem;
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-gold-light);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-stat .label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.5);
  margin-top: 0.4rem;
}

@media (max-width: 768px) {
  .hero-stats { gap: 2.5rem; flex-wrap: wrap; margin-top: 3rem; }
}

/* ── Hotels strip ───────────────────────────────────────────── */
.hotels-strip {
  background: var(--bg-surface);
  padding: 0.9rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.hotels-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
}
.hotels-strip .hotel-name {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.28);
  white-space: nowrap;
  transition: color 0.3s ease;
}
.hotels-strip .hotel-name:hover { color: var(--color-gold); }
.hotels-strip .sep { color: var(--color-gold); opacity: 0.2; }

/* ── About ─────────────────────────────────────────────────── */
.about { background: var(--bg-base); }
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: visible;
  background: var(--bg-card);
}
.about-image-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-image-inner img { width: 100%; height: 100%; object-fit: cover; opacity: 0.88; }
.about-badge {
  position: absolute;
  bottom: 2.5rem;
  right: -2.5rem;
  background: var(--color-gold);
  color: #060912;
  padding: 1.5rem 2rem;
  text-align: center;
  z-index: 3;
}
.about-badge .num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1;
}
.about-badge .txt {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.about-features { margin-top: 2.75rem; display: flex; flex-direction: column; gap: 0; }
.about-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.about-feature:last-child { border-bottom: none; }
.about-feature-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--color-gold);
}
.about-feature-text strong {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}
.about-feature-text span {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .about .container { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-badge { right: 0; }
}

/* ── Hotels Bento Grid ─────────────────────────────────────── */
.hotels { background: var(--bg-base); }
.hotels-header { margin-bottom: 3.5rem; }

.hotels-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 420px 420px;
  gap: 3px;
}

/* Equal-size 3+2 centered layout */
.hotel-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.hotel-card:nth-child(2) { grid-column: 3 / 5; grid-row: 1; }
.hotel-card:nth-child(3) { grid-column: 5 / 7; grid-row: 1; }
.hotel-card:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
.hotel-card:nth-child(5) { grid-column: 4 / 6; grid-row: 2; }

.hotel-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
}

/* Full-area invisible link covers whole card */
.hotel-card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
}

.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.hotel-card:hover .card-bg { transform: scale(1.06); }

/* Dark gradient, transitions to hotel color on hover */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 13, 21, 0.92) 0%,
    rgba(6, 9, 15, 0.38) 50%,
    rgba(6, 9, 15, 0.08) 100%
  );
  transition: background 0.55s ease;
  z-index: 1;
}
.hotel-card:hover .card-overlay {
  background: linear-gradient(
    to top,
    var(--card-accent, rgba(13, 35, 64, 0.92)) 0%,
    rgba(6, 9, 15, 0.25) 55%,
    rgba(6, 9, 15, 0.04) 100%
  );
}

.card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem 2rem;
  z-index: 2;
}

.card-zone {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  opacity: 0.75;
}

.card-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 1rem + 1vw, 2rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hotel-card:hover .card-bottom {
  opacity: 1;
  transform: translateY(0);
}

.card-amenities {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.card-amenity-tag {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.2rem 0.55rem;
}

.card-cta {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.card-cta::after {
  content: '→';
  transition: transform 0.3s ease;
}
.hotel-card:hover .card-cta::after { transform: translateX(4px); }

@media (max-width: 960px) {
  .hotels-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 300px);
    gap: 3px;
  }
  .hotel-card:nth-child(1) { grid-column: 1 / 2; grid-row: 1; }
  .hotel-card:nth-child(2) { grid-column: 2 / 3; grid-row: 1; }
  .hotel-card:nth-child(3) { grid-column: 1 / 2; grid-row: 2; }
  .hotel-card:nth-child(4) { grid-column: 2 / 3; grid-row: 2; }
  .hotel-card:nth-child(5) { grid-column: 1 / 3; grid-row: 3; display: block; }
}

@media (max-width: 560px) {
  .hotels-bento {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .hotel-card { height: 280px; }
  .hotel-card:nth-child(5) { display: block; }
}

/* ── Services ───────────────────────────────────────────────── */
.services {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.services-list {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr 1.8fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.service-row:last-child { border-bottom: none; }

.service-num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  opacity: 0.5;
  line-height: 1;
}

.service-title-col h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 0.9rem + 1vw, 1.85rem);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.25s ease;
}
.service-row:hover .service-title-col h3 { color: var(--color-gold-light); }

.service-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
  max-width: 52ch;
}

@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 2.5rem 1fr;
    gap: 1.5rem;
  }
  .service-desc {
    grid-column: 2 / 3;
    margin-top: 0.35rem;
    max-width: none;
  }
}
@media (max-width: 480px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .service-num { display: none; }
  .service-desc { grid-column: 1; }
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-base);
  padding: 9rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.cta-label::before, .cta-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.4;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 2rem + 3.5vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.cta-banner p {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 300;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact { background: var(--bg-surface); }
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 7rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: rgba(242, 237, 230, 0.45);
}
.contact-item-text strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 400;
  margin-bottom: 0.35rem;
}
.contact-item-text span {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 300;
}

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 3rem;
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 2.25rem;
  letter-spacing: -0.015em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.55);
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-primary);
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(201, 168, 76, 0.45); }
.form-group select option { background: var(--bg-surface); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

@media (max-width: 900px) {
  .contact .container { grid-template-columns: 1fr; gap: 4rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem; }
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: #030508;
  color: rgba(242, 237, 230, 0.35);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-brand .brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}
.footer-brand .tagline {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.3rem;
  margin-bottom: 1.5rem;
}
.footer-brand p { font-size: var(--text-sm); line-height: 1.85; max-width: 30ch; font-weight: 300; }
.footer-col h4 {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.25);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: var(--text-sm); font-weight: 300; transition: color 0.25s ease; }
.footer-col ul a:hover { color: var(--color-gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { transition: color 0.25s ease; }
.footer-legal a:hover { color: var(--color-gold); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Scroll Reveals ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: none; }

/* ── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 90;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  animation: waPulse 3.5s ease-out infinite;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; box-shadow: 0 0 0 3px rgba(37,211,102,0.3); }
.whatsapp-float svg { width: 25px; height: 25px; fill: white; }

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  65% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ── Marquee strip ───────────────────────────────────────── */
.hotels-strip {
  overflow: hidden;
  cursor: default;
}
.hotels-strip:hover .hotels-strip-track {
  animation-play-state: paused;
}
.hotels-strip-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  padding: 0.875rem 0;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}
.hotels-strip .hotel-name {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.22);
  white-space: nowrap;
  transition: color 0.25s ease;
}
.hotels-strip .hotel-name:hover { color: var(--color-gold); }
.hotels-strip .sep {
  color: var(--color-gold);
  opacity: 0.18;
  font-size: 0.55rem;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hotels-strip-track { animation: none; }
}

/* ── Booking Widget ──────────────────────────────────────── */
.booking-widget {
  display: flex;
  align-items: stretch;
  background: rgba(13, 21, 32, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(194, 163, 90, 0.22);
  margin-top: 3.5rem;
  max-width: 820px;
  overflow: hidden;
}
.bw-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.5rem;
  min-width: 0;
}
.bw-field label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 400;
  white-space: nowrap;
}
.bw-field input,
.bw-field select {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-primary);
  padding: 0;
  cursor: pointer;
  width: 100%;
  color-scheme: dark;
}
.bw-field select option { background: var(--bg-surface); }
.bw-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  margin-block: 0.75rem;
}
.bw-btn {
  background: var(--color-gold);
  color: #060912;
  border: none;
  padding: 0 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.bw-btn:hover {
  background: var(--color-gold-light);
  box-shadow: 0 0 32px rgba(194, 163, 90, 0.4);
}
@media (max-width: 700px) {
  .booking-widget { flex-direction: column; max-width: 100%; }
  .bw-sep { width: calc(100% - 3rem); height: 1px; margin: 0 1.5rem; }
  .bw-btn { padding: 1.1rem; }
}

/* ── Gallery Button on Cards ─────────────────────────────── */
.card-gallery-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 6;
  background: rgba(8, 13, 21, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(194, 163, 90, 0.3);
  color: var(--color-gold-light);
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease, border-color 0.25s ease;
}
.hotel-card:hover .card-gallery-btn {
  opacity: 1;
  transform: translateY(0);
}
.card-gallery-btn:hover {
  background: rgba(194, 163, 90, 0.15);
  border-color: var(--color-gold);
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.lightbox[hidden] { display: none; }
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, 0.97);
  cursor: pointer;
}
.lb-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  z-index: 2;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(242,237,230,0.6);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lb-close:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }
.lb-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: min(1100px, 100vw - 4rem);
  max-height: 78vh;
}
.lb-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-height: 78vh;
}
.lb-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}
.lb-arrow {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(242,237,230,0.65);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.lb-arrow:hover { background: rgba(194,163,90,0.12); border-color: rgba(194,163,90,0.4); color: var(--color-gold-light); }
.lb-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1100px, 100vw - 4rem);
  padding: 0 4.5rem;
}
.lb-hotel-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  font-weight: 300;
}
.lb-counter {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(242,237,230,0.35);
}
@media (max-width: 600px) {
  .lb-content { gap: 0.5rem; }
  .lb-arrow { width: 38px; height: 38px; }
  .lb-footer { padding: 0 0.5rem; }
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials { background: var(--bg-surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.test-card {
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.35s ease;
}
.test-card:hover { border-color: rgba(194,163,90,0.2); }
.test-stars {
  color: var(--color-gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}
.test-card blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 0.85rem + 0.5vw, 1.15rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.75;
  flex: 1;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(194,163,90,0.2);
}
.test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
}
.test-info strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.test-info span {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .test-card { padding: 1.75rem; }
}

/* ── Footer — unified hotels+WA column ───────────────────── */
.footer-grid { grid-template-columns: 2fr 1.3fr 1fr; }
.footer-hotels-list { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-hotels-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-hotels-list li a:first-child {
  font-size: var(--text-sm);
  font-weight: 300;
  transition: color 0.25s ease;
}
.footer-hotels-list li a:first-child:hover { color: var(--color-gold-light); }
.footer-wa-link {
  color: #25D366;
  opacity: 0.65;
  display: flex;
  align-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.footer-wa-link:hover { opacity: 1; transform: scale(1.15); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
