/* ===================================================================
   ASTERIA APARTMENTS — Luxury Design System  v2.0
   Consolidates: style.css · premium-gallery.css
                 premium-features.css · final-polish.css
=================================================================== */

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --gold:           #c8a96b;
  --gold-light:     #e5d4aa;
  --gold-dark:      #9a7040;

  /* Dark palette */
  --forest:         #0d1e16;
  --forest-mid:     #152b1f;
  --forest-light:   #1e3c2b;

  /* Light palette */
  --ivory:          #faf8f4;
  --cream:          #f2ede4;
  --white:          #ffffff;

  /* Text */
  --text-dark:      #1a2520;
  --text-muted:     #5a6860;
  --text-light:     rgba(255, 255, 255, 0.88);
  --text-faint:     rgba(255, 255, 255, 0.55);

  /* Borders */
  --border-light:   #e0dbd2;
  --border-dark:    rgba(255, 255, 255, 0.12);
  --border-gold:    rgba(200, 169, 107, 0.42);

  /* Spacing */
  --section-pad:    clamp(80px, 10vw, 130px);
  --container:      min(1200px, 90%);

  /* Radii */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;

  /* Shadows */
  --shadow-sm:  0 4px 16px rgba(13, 30, 22, 0.08);
  --shadow-md:  0 12px 40px rgba(13, 30, 22, 0.13);
  --shadow-lg:  0 28px 80px rgba(13, 30, 22, 0.20);

  /* Easing */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  /* Hamburger animation offset */
  --hamburger-offset: 7px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Manrope', system-ui, Arial, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
}

h1 { font-size: clamp(2.8rem, 6.5vw, 6.8rem); }
h2 { font-size: clamp(2rem,   4vw,   3.6rem); }
h3 { font-size: clamp(1.25rem,2vw,   1.85rem); }

p  { color: var(--text-muted); line-height: 1.75; }

/* ── Layout helpers ─────────────────────────────────────────────── */
.container {
  width: var(--container);
  margin: 0 auto;
}

.section { padding: var(--section-pad) 0; }

/* Section labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.section-label-center { justify-content: center; }
.section-label-center::before { display: none; }
.section-label-light { color: var(--gold-light); }

/* ── Skip link ─────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 8px 18px;
  border-radius: var(--r-sm);
  background: var(--forest);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 13px 28px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.22s var(--ease),
    background 0.22s var(--ease),
    border-color 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.8); }

.btn-dark {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}
.btn-dark:hover { background: var(--forest-light); border-color: var(--forest-light); }

.btn-ghost {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-dark);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-dark); }

.btn-gold-outline {
  background: transparent;
  border-color: var(--border-gold);
  color: var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--forest); }

.btn-sm { min-height: 40px; padding: 9px 18px; font-size: 0.8rem; }

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(13, 30, 22, 0.94);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  color: var(--white);
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo-subtitle {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.82;
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.09); }

.nav-cta {
  margin-left: 8px;
  padding: 9px 20px !important;
  background: var(--gold) !important;
  color: var(--forest) !important;
  font-weight: 800 !important;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }

/* Compact outlined Booking.com link, next to the Κράτηση button */
.nav-booking-com {
  margin-left: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(200, 169, 107, 0.55);
  border-radius: 999px;
  color: var(--gold-light) !important;
  font-size: 0.8rem;
  font-weight: 700;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.nav-booking-com:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 107, 0.12);
  color: var(--white) !important;
}

/* Hamburger */
.menu-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  transform-origin: center;
}
.menu-button.is-open span:nth-child(1) { transform: translateY(var(--hamburger-offset)) rotate(45deg); }
.menu-button.is-open span:nth-child(2) { opacity: 0; }
.menu-button.is-open span:nth-child(3) { transform: translateY(calc(-1 * var(--hamburger-offset))) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/exterior-01.jpg') center/cover no-repeat;
  transform: scale(1.06);
  transition: transform 7s ease;
  will-change: transform;
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(8, 22, 16, 0.93) 0%,
    rgba(8, 22, 16, 0.72) 45%,
    rgba(8, 22, 16, 0.34) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  /* Clears the fixed header + sticky booking bar sitting on top of the hero */
  padding-top: 170px;
  padding-bottom: 80px;
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 0.97;
  margin-bottom: 28px;
  text-wrap: balance;
}

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.82;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 44px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat small {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  45%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
  46%       { transform: scaleY(1); transform-origin: bottom; }
  90%       { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── ABOUT ──────────────────────────────────────────────────────── */
.about-section { background: var(--ivory); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 { margin-bottom: 18px; }
.about-lead {
  font-size: 1.07rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 14px;
}
.about-content p:not(.section-label, .about-lead) { margin-bottom: 22px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}
.about-feature {
  padding: 24px 20px;
  border: 1px solid rgba(200, 169, 107, 0.22);
  border-radius: var(--r-lg);
  background: var(--forest);
  box-shadow: 0 10px 26px rgba(13, 30, 22, 0.16);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.about-feature:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(13, 30, 22, 0.28);
  transform: translateY(-4px);
}

.about-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--forest);
  font-size: 1.1rem;
}
.about-feature strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.about-feature span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); line-height: 1.6; }

/* About image column */
.about-image-col { position: relative; }
.about-image-frame {
  position: relative;
  height: 600px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-image-frame:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  padding: 22px 26px;
  border-radius: var(--r-md);
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.about-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.about-badge span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

/* ── ROOMS ──────────────────────────────────────────────────────── */
.rooms-section { background: var(--forest); }
.rooms-section .section-label { color: var(--gold); }

.rooms-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 54px;
}
.rooms-section-header h2 { color: var(--white); }
.rooms-section-header > p { max-width: 400px; color: rgba(255, 255, 255, 0.62); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.room-card {
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
  border-color: var(--border-gold);
}
.room-card.featured { border-color: var(--border-gold); }

.room-image-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}
.room-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.room-card:hover .room-image-wrapper img { transform: scale(1.07); }

/* Mini photo carousel inside each room card */
.room-carousel { position: relative; width: 100%; height: 100%; }
.room-carousel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 46px;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
  pointer-events: none;
}
.room-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.room-carousel-track::-webkit-scrollbar { display: none; }
.room-carousel-track img { flex: 0 0 100%; scroll-snap-align: start; }

.room-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 6px;
}
.room-carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.room-carousel-dot.is-active { background: var(--gold); transform: scale(1.35); }

.room-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-card-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-capacity {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.room-card-content h3 {
  color: var(--white);
  font-size: 1.55rem;
  margin-bottom: 10px;
}
.room-card-content > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.room-tag {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.73rem;
  font-weight: 600;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}
.room-price small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2px;
}
.room-price strong,
.room-price a {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--gold);
  font-weight: 700;
}
.room-price a {
  text-decoration: underline;
  text-decoration-color: rgba(200, 169, 107, 0.4);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.room-price a:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
}
.room-actions { display: flex; gap: 8px; }

/* ── AMENITIES ──────────────────────────────────────────────────── */
.amenities-section { background: var(--cream); }

.amenities-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.amenities-header h2 { margin: 12px 0; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.amenity {
  padding: 30px 22px;
  border-radius: var(--r-lg);
  background: var(--forest);
  border: 1px solid rgba(200, 169, 107, 0.22);
  box-shadow: 0 10px 26px rgba(13, 30, 22, 0.16);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.amenity:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(13, 30, 22, 0.28);
  border-color: var(--gold);
}
.amenity-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 169, 107, 0.28);
  font-size: 1.15rem;
  margin-bottom: 16px;
  transition: background 0.22s, border-color 0.22s;
}
.amenity:hover .amenity-icon { border-color: var(--gold); }
.amenity h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
}
.amenity p { font-size: 0.85rem; margin: 0; color: rgba(255, 255, 255, 0.65); line-height: 1.6; }

/* ── GALLERY ────────────────────────────────────────────────────── */
.gallery-section { background: var(--ivory); }

.gallery-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 36px;
}
.gallery-section-header h2 { max-width: 460px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;
  gap: 12px;
}

/* Mosaic layout */
.gallery-item { grid-column: span 4; }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: zoom-in;
  border: 0;
  padding: 0;
  background: var(--forest-mid);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease), filter 0.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(0.82); }

.gallery-item::after {
  content: 'Προβολή';
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(9, 22, 16, 0.62);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.25s, transform 0.25s;
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; transform: translateY(0); }

.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Always show overlay on touch devices */
@media (hover: none) {
  .gallery-item::after { opacity: 1; transform: none; }
}

.gallery-categories {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gallery-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.gallery-category-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.gallery-scroll-arrows { display: flex; gap: 8px; flex-shrink: 0; }
.gallery-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--text-dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.gallery-arrow:hover {
  border-color: var(--gold);
  background: var(--forest);
  color: var(--gold);
}

.gallery-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.gallery-scroll::-webkit-scrollbar { height: 7px; }
.gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll::-webkit-scrollbar-thumb { background: rgba(200, 169, 107, 0.45); border-radius: 999px; }

.premium-gallery-card {
  position: relative;
  display: block;
  flex: 0 0 clamp(220px, 32vw, 300px);
  scroll-snap-align: start;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #0e1714;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  aspect-ratio: 4 / 3;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.premium-gallery-card:hover,
.premium-gallery-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.25);
}

.premium-gallery-card:hover img,
.premium-gallery-card:focus-visible img {
  transform: scale(1.04);
  filter: brightness(0.9);
}

.premium-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 72px 88px;
  background: rgba(5, 9, 8, 0.94);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.premium-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.premium-lightbox-figure {
  margin: 0;
  width: min(1100px, 100%);
}

.premium-lightbox-figure img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.premium-lightbox-close,
.premium-lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.premium-lightbox-close:hover,
.premium-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.premium-lightbox-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.premium-lightbox-nav {
  top: 50%;
  width: 52px;
  height: 68px;
  border-radius: 14px;
  font-size: 2.2rem;
  transform: translateY(-50%);
}

.premium-lightbox-prev { left: 24px; }
.premium-lightbox-next { right: 24px; }

body.premium-lightbox-open { overflow: hidden; }

/* ── OFFERS ─────────────────────────────────────────────────────── */
.offers-section {
  position: relative;
  overflow: hidden;
}
.offers-bg {
  position: absolute;
  inset: 0;
  background: url('images/exterior-01.jpg') center/cover no-repeat;
}
.offers-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 22, 16, 0.96) 0%,
    rgba(14, 34, 24, 0.9) 100%
  );
}
.offers-inner {
  position: relative;
  z-index: 2;
}
.offers-inner .section-label { color: var(--gold); }

.offers-header {
  text-align: center;
  margin-bottom: 52px;
}
.offers-header h2 { color: var(--white); }
.offers-header p  { color: rgba(255, 255, 255, 0.65); max-width: 500px; margin: 12px auto 0; }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-card {
  padding: 30px 26px;
  border: 1px solid rgba(200, 169, 107, 0.22);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.offer-card:hover {
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.offer-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.offer-card h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 10px; }
.offer-card > p { color: rgba(255, 255, 255, 0.63); font-size: 0.87rem; line-height: 1.7; margin-bottom: 22px; }
.offer-card ul { margin-bottom: 26px; }
.offer-card li {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  padding: 4px 0;
  display: flex;
  gap: 8px;
}
.offer-card li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }

/* ── REVIEWS ────────────────────────────────────────────────────── */
.reviews-section { background: var(--white); }
.reviews-section .section-label { color: var(--gold-dark); }

.reviews-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 44px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.review-card {
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  background: var(--ivory);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }

.review-card-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-card-stars span { color: var(--gold); font-size: 1rem; }

.review-card blockquote {
  font-style: italic;
  color: var(--text-dark);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 18px;
  border: 0;
  padding: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--forest-light);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}
.review-author-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
}
.review-author-info span { font-size: 0.76rem; color: var(--text-muted); }

/* Reviews placeholder (shown when no reviews exist yet) */
.reviews-placeholder {
  grid-column: span 3;
  padding: 44px 32px;
  border: 2px dashed var(--border-light);
  border-radius: var(--r-lg);
  text-align: center;
}
.reviews-placeholder-stars {
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.reviews-placeholder h3 { font-size: 1.3rem; margin-bottom: 10px; }
.reviews-placeholder p { max-width: 480px; margin: 0 auto 24px; }

/* Review submission form */
.review-form-wrapper {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 56px;
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
}
.review-form-wrapper h3 { font-size: 1.65rem; margin-bottom: 8px; }
.review-form-wrapper > p { margin-bottom: 32px; font-size: 0.94rem; }

.review-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-col-full { grid-column: span 2; }

.form-field { display: grid; gap: 6px; }
.form-field label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--text-dark);
  font: inherit;
  font-size: 0.94rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.18);
}
.form-field textarea { resize: vertical; min-height: 110px; }

/* Star rating widget */
.star-rating-field .star-widget {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
}
.star-rating-field input[type="radio"] { display: none; }
.star-rating-field label {
  font-size: 1.9rem;
  color: var(--border-light);
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
  transition: color 0.15s;
}
.star-rating-field input:checked ~ label,
.star-rating-field label:hover,
.star-rating-field label:hover ~ label { color: var(--gold); }

/* Consent checkbox */
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  grid-column: span 2;
}
.consent-row input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; }
.consent-row label {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
}

/* Moderation notice */
.form-notice {
  grid-column: span 2;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: rgba(200, 169, 107, 0.1);
  border-left: 3px solid var(--gold);
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* Success / error states */
.form-message {
  grid-column: span 2;
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.form-message.is-success {
  display: block;
  background: rgba(34, 120, 70, 0.1);
  border: 1px solid rgba(34, 120, 70, 0.3);
  color: #1a6040;
}
.form-message.is-error {
  display: block;
  background: rgba(180, 50, 50, 0.08);
  border: 1px solid rgba(180, 50, 50, 0.3);
  color: #b03030;
}

/* ── STICKY BOOKING BAR (compact) ──────────────────────────────── */
.sticky-booking-bar {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  width: min(1200px, 92vw);
  margin-top: 10px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  border: 1px solid rgba(200, 169, 107, 0.28);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.sticky-booking-form {
  display: flex;
  align-items: stretch;
  gap: 6px;
  padding: 5px;
}

.sticky-booking-fields {
  display: flex;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.sticky-booking-fields::-webkit-scrollbar { display: none; }

.sticky-booking-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  flex: 1 1 108px;
  min-width: 96px;
  padding: 5px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.sticky-booking-field:last-child { border-right: 0; }

.sticky-booking-field span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
}

.sticky-booking-field input,
.sticky-booking-field select {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}
.sticky-booking-field input:focus,
.sticky-booking-field select:focus { outline: none; }
.sticky-booking-field input::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.7);
  cursor: pointer;
}
.sticky-booking-field select option { background: var(--forest); color: var(--white); }

.sticky-booking-submit {
  flex: 0 0 auto;
  align-self: center;
  white-space: nowrap;
  min-height: 38px !important;
  padding: 0 20px !important;
  font-size: 0.78rem !important;
  border-radius: 10px !important;
}

.sticky-booking-summary {
  padding: 0 16px 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  text-align: center;
}

/* Booking platform links (now shown in the Contact section) */
.booking-platforms {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
}
.booking-platform-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 0.87rem;
  font-weight: 700;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.booking-platform-card:hover {
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.booking-platform-card .p-icon { font-size: 1.3rem; }

/* ── LOCATION ───────────────────────────────────────────────────── */
.location-section { background: var(--white); }
.location-section .section-label { color: var(--gold-dark); }

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.location-content h2 { margin-bottom: 18px; }
.location-content > p { margin-bottom: 24px; }

.location-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 32px;
}
.location-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(200, 169, 107, 0.22);
  border-radius: var(--r-md);
  background: var(--forest);
  box-shadow: 0 10px 24px rgba(13, 30, 22, 0.14);
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.location-highlight:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(13, 30, 22, 0.22);
}
.location-highlight-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 169, 107, 0.28);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.location-highlight-text strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--white); margin-bottom: 2px; }
.location-highlight-text span  { font-size: 0.8rem; color: rgba(255, 255, 255, 0.65); }

.location-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.location-visual { position: relative; }
.map-frame-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}
.map-frame { width: 100%; height: 100%; border: 0; }

.location-card {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-md);
  max-width: 190px;
}
.location-card-label {
  display: block;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.location-card strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--text-dark); margin-bottom: 2px; }
.location-card span  { font-size: 0.78rem; color: var(--text-muted); }

/* Nearby attractions */
.nearby-section { background: var(--ivory); }
.nearby-section .section-label { color: var(--gold-dark); }

.nearby-header { text-align: center; max-width: 560px; margin: 0 auto 44px; }
.nearby-header h2 { margin: 12px 0; }

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.nearby-card {
  padding: 26px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.nearby-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.nearby-card > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.nearby-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.nearby-card p { font-size: 0.84rem; margin: 0; }
.nearby-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.nearby-card-links:empty { display: none; }

/* ── CONTACT ────────────────────────────────────────────────────── */
.contact-section { background: var(--forest); }
.contact-section .section-label { color: var(--gold); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
}

.contact-content h2 { color: var(--white); margin-bottom: 14px; }
.contact-content > p { color: rgba(255, 255, 255, 0.65); margin-bottom: 34px; }

.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

.contact-links { display: grid; gap: 12px; }
.contact-link-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.contact-link-row:hover {
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.09);
}
.contact-link-icon { font-size: 1.2rem; flex-shrink: 0; }
.contact-link-info strong {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2px;
}
.contact-link-info span { font-size: 0.95rem; font-weight: 600; color: var(--white); }

/* Contact info card */
.contact-info-card {
  padding: 34px;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  background: rgba(200, 169, 107, 0.05);
}
.contact-info-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 6px; }
.contact-info-card > p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; margin-bottom: 26px; }

.contact-info-list { display: grid; gap: 0; margin-bottom: 28px; }
.contact-info-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
}
.contact-info-list li strong { color: var(--white); font-weight: 700; text-align: right; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background: url('images/exterior-05.jpg') center/cover no-repeat;
}
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 8, 0.95);
}
.footer-inner {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 275px;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 9px; }
.social-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,169,107,0.1); }

.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a,
.footer-col span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.87rem;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

/* Newsletter */
.footer-newsletter p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 14px;
}
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font: inherit;
  font-size: 0.88rem;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.32); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-notice {
  margin-top: 8px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.36);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.48); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 18px; }

/* ── Lightbox ───────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 70px 88px 50px;
  background: rgba(4, 10, 7, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox-figure {
  width: min(1100px, 100%);
  margin: 0;
  text-align: center;
}
.lightbox-figure img {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.6);
  transform: scale(0.965);
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.lightbox.is-open .lightbox-figure img { transform: scale(1); opacity: 1; }
.lightbox-figure figcaption { margin-top: 14px; color: rgba(255,255,255,0.65); font-size: 0.88rem; }

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.16); }

.lightbox-close {
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 68px;
  border-radius: var(--r-md);
  font-size: 2.3rem;
  transform: translateY(-50%);
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.04); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

body.lightbox-open { overflow: hidden; }

/* ── Floating contact dock ──────────────────────────────────────── */
.contact-dock {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9500;
  display: grid;
  gap: 10px;
}
.contact-dock a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--forest-mid);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s var(--ease), background 0.2s, filter 0.2s;
}
.contact-dock a:hover { transform: translateY(-3px); filter: brightness(1.1); }
.contact-dock a:nth-child(1) { background: var(--forest-mid); }
.contact-dock a:nth-child(2) { background: #157347; }
.contact-dock a:nth-child(3) { background: #665cac; }
.contact-dock svg { width: 22px; height: 22px; fill: currentColor; }

/* ── Scroll-to-top ──────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 210px;
  z-index: 9400;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: rgba(13, 30, 22, 0.85);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
  backdrop-filter: blur(8px);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--forest-mid); }

/* ── Animations ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */

/* ── Tablet (≤1100px) ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-grid { gap: 50px; }
  .about-image-frame { height: 480px; }

  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .rooms-section-header { flex-direction: column; align-items: flex-start; gap: 14px; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(1) { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 3; }
  .gallery-item:nth-child(3) { grid-column: span 3; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 4; }
  .offers-grid { grid-template-columns: 1fr 1fr; }

  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-placeholder { grid-column: span 2; }

  .location-grid { gap: 50px; }
  .contact-grid  { gap: 50px; }

  .nearby-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .hero-stats { gap: 28px; }
}

/* ── Tablet-small / Mobile nav (≤900px) ───────────────────────── */
@media (max-width: 900px) {
  .menu-button { display: flex; }

  /* Below tablet width, a fixed header + fixed booking bar stacked
     together eat too much of the screen permanently. Let the bar
     scroll away with the page instead — it still sits right below
     the header on load, just not pinned there while scrolling. */
  .sticky-booking-bar {
    position: static;
    transform: none;
    width: 94vw;
    margin: 90px auto 0;
  }
  .hero-content { padding-top: 90px; }

  .site-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: rgba(11, 24, 18, 0.98);
    backdrop-filter: blur(22px);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    max-height: 0;
    transition: max-height 0.4s var(--ease);
  }
  .site-nav.open { max-height: 520px; }

  .site-nav a { padding: 16px 24px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-cta { margin: 12px 24px; border-radius: 999px; text-align: center; }
  .nav-booking-com { margin: 0 24px 12px; border-radius: 999px; text-align: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { order: -1; }
  .about-image-frame { height: 360px; }
  .about-badge { bottom: -14px; left: 14px; }

  .location-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }

  .gallery-section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .reviews-section-header  { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ── Mobile (≤640px) ───────────────────────────────────────────── */
@media (max-width: 640px) {
  :root { --section-pad: clamp(60px, 9vw, 90px); }

  .hero-stats  { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .about-features { grid-template-columns: 1fr; }

  .amenities-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 240px; }
  .gallery-item:nth-child(1) { height: 320px; }

  .premium-gallery-card { flex-basis: 76vw; }
  .gallery-scroll-arrows { display: none; }

  .offers-grid { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-placeholder { grid-column: span 1; }

  .review-form { grid-template-columns: 1fr; }
  .form-col-full { grid-column: span 1; }
  .consent-row  { grid-column: span 1; }
  .form-notice  { grid-column: span 1; }
  .form-message { grid-column: span 1; }

  .review-form-wrapper { padding: 30px 20px; }

  .sticky-booking-bar { border-radius: 12px; }
  .sticky-booking-form { flex-direction: column; gap: 0; padding: 8px; }
  .sticky-booking-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow-x: visible;
  }
  .sticky-booking-field {
    flex: initial;
    min-width: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 7px 8px;
  }
  .sticky-booking-field:nth-child(5) { grid-column: 1 / -1; border-bottom: 0; }
  .sticky-booking-field span { font-size: 0.6rem; }
  .sticky-booking-field input,
  .sticky-booking-field select { font-size: 0.8rem; }
  .sticky-booking-submit { width: 100%; margin-top: 8px; padding: 0 18px !important; font-size: 0.82rem !important; }
  .sticky-booking-summary { font-size: 0.7rem; padding: 0 10px 8px; }

  .rooms-grid { grid-template-columns: 1fr; }

  .nearby-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; }

  .contact-dock { right: 12px; bottom: 12px; }
  .contact-dock a { width: 46px; height: 46px; }
  .contact-dock svg { width: 20px; height: 20px; }

  .scroll-top { right: 12px; bottom: 190px; }

  .lightbox { padding: 70px 12px 62px; }
  .lightbox-nav {
    top: auto;
    bottom: 10px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transform: none;
  }
  .lightbox-nav:hover { transform: scale(1.04); }
  .lightbox-prev { left: 14px; }
  .lightbox-next { right: 14px; }
  .lightbox-counter { bottom: 28px; }
  .premium-lightbox { padding: 70px 16px 86px; }
  .premium-lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transform: none;
  }
  .premium-lightbox-prev { left: 18px; }
  .premium-lightbox-next { right: 18px; }

  .map-frame-wrapper { height: 380px; }
  .map-frame { height: 380px; }
}

/* ── Print ──────────────────────────────────────────────────────── */
@media print {
  .site-header, .sticky-booking-bar, .contact-dock, .scroll-top, .lightbox { display: none; }
  .hero { min-height: auto; }
}
