/* ==========================================================================
   MAIN.CSS — Collegian Hotel & Suites
   Scope: Global tokens, reset, base styles, lightbox, main content,
          sections, gallery, FAQ, map, scroll-reveal animations.
   Load order: 1st (defines CSS variables and keyframes used by all files)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700;900&display=swap');


/* ── CSS Variables ─────────────────────────────────────────────────────── */
:root {
  --navy:     #1a2535;
  --navy-hover: #243447;
  --gold:     #c49a4e;
  --gold-light: #e0c078;
  --warm-bg:  #f8f5f0;
  --white:    #ffffff;
  --dark:     #1a1a1a;
  --text:     #505050;
  --border:   #e0d8cc;
}


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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroBgZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

@keyframes lineGrowShort {
  from { width: 0; opacity: 0; }
  to   { width: 50px; opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}


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


/* ── Base Styles ───────────────────────────────────────────────────────── */
/*
  No overflow on html — the viewport handles scrolling natively.
  Setting overflow-x on html makes body the scroll container,
  which causes a second internal scrollbar in Chrome/Edge/iOS.
*/
body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

/* Scroll lock — applied by JS when mobile nav or lightbox is open */
body.nav-open,
body.lightbox-open {
  overflow: hidden;
  touch-action: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold);
}


/* ── Lightbox ──────────────────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

#lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.94);
  cursor: zoom-out;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lb-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lb-img {
  display: block;
  max-width: 92vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
  transform: scale(0.86);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.34, 1.38, 0.64, 1),
              opacity 0.32s ease;
  pointer-events: auto;
  cursor: default;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform, opacity;
}

#lightbox.open .lb-img {
  transform: scale(1);
  opacity: 1;
}

.lb-img.lb-fade-out {
  transform: scale(0.92) !important;
  opacity: 0 !important;
  transition: transform 0.18s ease, opacity 0.15s ease !important;
}

.lb-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.28s ease;
}

.lb-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(196, 154, 78, 0.7);
  transform: rotate(90deg);
}

.lb-close svg { width: 18px; height: 18px; }

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  transition: background 0.2s ease, border-color 0.2s ease,
              opacity 0.25s ease, transform 0.25s ease;
}

.lb-prev { left: 16px; }
.lb-next { right: 16px; }

.lb-prev:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(196, 154, 78, 0.6);
  transform: translateY(-50%) translateX(-3px);
}

.lb-next:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(196, 154, 78, 0.6);
  transform: translateY(-50%) translateX(3px);
}

.lb-prev.lb-hidden,
.lb-next.lb-hidden {
  opacity: 0;
  pointer-events: none;
}

.lb-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 2.5px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  z-index: 10;
  white-space: nowrap;
  margin: 0;
}

.lb-trigger { cursor: zoom-in; }


/* ── Main Wrapper ──────────────────────────────────────────────────────── */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px;
}

/* CTA button — direct child of main */
main > a {
  display: inline-block;
  background: var(--navy);
  color: var(--white) !important;
  padding: 14px 38px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none !important;
  border: 2px solid var(--navy);
  margin-bottom: 52px;
  transition: background 0.25s ease, color 0.25s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
}

main > a:hover {
  background: transparent;
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 37, 53, 0.15);
}

/* Room / feature image — direct child of main (e.g. room_king.jpg) */
main > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 56px;
  border-radius: 2px;
}

/* Meetings page intro block */
main > h3 {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.85;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 48px;
  padding: 32px 40px;
  background: var(--warm-bg);
  border-left: 3px solid var(--gold);
  word-break: break-word;
}

main > img + h3 {
  margin-top: 0;
}


/* ── Sections ──────────────────────────────────────────────────────────── */
section {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

section h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 12px;
}

section h3 {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 8px;
}

section p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 14px;
}

section p:last-child {
  margin-bottom: 0;
}

/* Images inside sections (weddings, etc.) */
section img {
  width: 100%;
  max-height: 520px;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  margin: 24px 0;
}


/* ── Dining Menu Buttons ───────────────────────────────────────────────── */
section ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

section ul li a {
  display: inline-block;
  padding: 13px 30px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
}

section ul li a:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 37, 53, 0.18);
}


/* ── Features Section ──────────────────────────────────────────────────── */
.features-section {
  background: var(--navy);
  padding: 72px 60px;
  margin: 0 -48px 64px !important;
  text-align: center;
  border-bottom: none !important;
}

.features-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 52px;
  letter-spacing: 1px;
}

.features-section h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.feature-card {
  background: var(--navy);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: background 0.25s ease;
}

.feature-card:hover {
  background: var(--navy-hover);
}

.feature-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  flex-shrink: 0;
  margin-bottom: 4px;
}

.features-section h3 {
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  padding: 0;
  border: none;
}

.features-section p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  max-width: 200px;
}


/* ── Catering Section (Meetings page) ─────────────────────────────────── */
.catering-section ul {
  display: block;
  list-style: disc;
  padding-left: 22px;
  margin: 10px 0 20px;
}

.catering-section ul li {
  color: var(--text);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 6px;
  padding: 0;
  border: none;
}

.catering-section ul li a {
  display: inline;
  padding: 0;
  border: none;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  background: none;
  color: var(--navy);
}

.catering-section ul li a:hover {
  background: none;
  color: var(--gold);
}


/* ── Property Highlights Gallery ───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: transform 0.35s ease, filter 0.35s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
}

/* Gallery page — bleed edge-to-edge */
main > .gallery-grid {
  margin: -64px -48px 0;
  width: calc(100% + 96px);
  max-width: none;
}


/* ── Scroll Reveal ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ── FAQ Section ───────────────────────────────────────────────────────── */
.faq-section h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 12px;
}

.faq-list {
  margin-top: 28px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  font-family: 'Lato', sans-serif;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary:hover { color: var(--gold); }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item[open] > summary::after { content: '\2212'; }
.faq-item[open] > summary { color: var(--navy); }

.faq-answer {
  padding: 2px 0 22px;
  animation: fadeInUp 0.25s ease both;
}

.faq-answer p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
  max-width: 720px;
}


/* ── Map Section (Location page) ───────────────────────────────────────── */
.map-wrapper {
  position: relative;
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  margin: 20px 0 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.map-section > p > a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}

.map-section > p > a:hover {
  color: var(--gold);
}




/* ── Room Cards ────────────────────────────────────────────────────────── */
.rooms-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   24px;
  margin-top:            28px;
}

.room-card {
  border:     1px solid var(--border);
  overflow:   hidden;
  background: var(--white);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.room-card:hover {
  transform:  translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 37, 53, 0.1);
}

.room-card-img {
  position:   relative;
  overflow:   hidden;
}

.room-card-img img {
  width:         100%;
  height:        220px;
  object-fit:    cover;
  display:       block;
  margin:        0;
  border-radius: 0;
  transition:    transform 0.45s ease;
}

.room-card:hover .room-card-img img { transform: scale(1.06); }

.room-card-overlay {
  position:        absolute;
  inset:           0;
  display:         flex;
  align-items:     center;
  justify-content: center;
  background:      rgba(10, 16, 28, 0);
  color:           transparent;
  font-family:     'Lato', sans-serif;
  font-size:       10px;
  font-weight:     700;
  letter-spacing:  2.5px;
  text-transform:  uppercase;
  text-decoration: none;
  transition:      background 0.35s ease, color 0.35s ease;
}

.room-card-overlay::after {
  content:     '';
  position:    absolute;
  inset:       50% auto auto 50%;
  transform:   translate(-50%, -50%) scale(0.8);
  width:       120px;
  height:      40px;
  border:      1.5px solid rgba(196, 154, 78, 0);
  transition:  border-color 0.35s ease, transform 0.35s ease;
}

.room-card:hover .room-card-overlay {
  background: rgba(10, 16, 28, 0.52);
  color:      var(--gold);
}

.room-card:hover .room-card-overlay::after {
  border-color: rgba(196, 154, 78, 0.7);
  transform:    translate(-50%, -50%) scale(1);
}

.room-card-body { padding: 22px 24px 24px; }

.room-card-body h3 {
  font-family:    'Playfair Display', serif;
  font-size:      19px;
  font-weight:    600;
  color:          var(--navy);
  letter-spacing: normal;
  text-transform: none;
  margin-top:     0;
  margin-bottom:  14px;
}

.room-amenities {
  display:        flex;
  flex-direction: column;
  gap:            7px;
  padding:        0;
  margin-bottom:  18px;
}

.room-amenities li {
  display:     flex;
  align-items: center;
  gap:         9px;
  font-size:   13px;
  color:       var(--text);
  line-height: 1.5;
}

.room-amenities li::before {
  content:       '';
  display:       block;
  width:         5px;
  height:        5px;
  background:    var(--gold);
  border-radius: 50%;
  flex-shrink:   0;
}

.room-card-footer {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             12px;
  padding-top:     16px;
  border-top:      1px solid var(--border);
}

.room-price {
  font-family: 'Playfair Display', serif;
  font-size:   20px;
  font-weight: 600;
  color:       var(--navy);
  margin:      0;
  line-height: 1.2;
}

.room-btn {
  display:         inline-block;
  background:      var(--navy);
  color:           var(--white) !important;
  padding:         10px 22px;
  font-size:       10px;
  letter-spacing:  2px;
  text-transform:  uppercase;
  font-weight:     700;
  font-family:     'Lato', sans-serif;
  text-decoration: none !important;
  white-space:     nowrap;
  flex-shrink:     0;
  transition: background 0.2s ease, color 0.2s ease,
              transform 0.15s ease, box-shadow 0.2s ease;
}

.room-btn:hover {
  background:  var(--gold);
  color:       var(--navy) !important;
  transform:   translateY(-2px);
  box-shadow:  0 4px 14px rgba(196, 154, 78, 0.35);
}


/* ── Reviews ───────────────────────────────────────────────────────────── */
.reviews-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   20px;
  margin-top:            28px;
}

.review-card {
  background:     var(--warm-bg);
  padding:        28px 30px;
  border-left:    3px solid var(--gold);
  display:        flex;
  flex-direction: column;
  gap:            14px;
}

.review-stars {
  color:          var(--gold);
  font-size:      16px;
  letter-spacing: 3px;
  line-height:    1;
}

.review-text {
  font-size:   14px;
  line-height: 1.82;
  color:       var(--text);
  font-style:  italic;
  flex:        1;
  margin:      0;
}

.review-footer {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             10px;
}

.review-author {
  font-size:      13px;
  font-weight:    700;
  color:          var(--navy);
  letter-spacing: 0.3px;
}

.review-source {
  font-size:      9px;
  font-weight:    700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding:        3px 8px;
  border-radius:  2px;
  flex-shrink:    0;
}

.review-source--google      { background: rgba(66, 133, 244, 0.1); color: #4285f4; }
.review-source--tripadvisor { background: rgba(26, 122, 60, 0.1);  color: #1a7a3c; }


/* ── Gallery Preview ───────────────────────────────────────────────────── */
.gallery-preview-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   6px;
  margin-top:            28px;
}

.gallery-preview-grid a {
  display:  block;
  overflow: hidden;
}

.gallery-preview-grid img {
  width:         100%;
  height:        200px;
  object-fit:    cover;
  display:       block;
  margin:        0;
  border-radius: 0;
  transition:    transform 0.35s ease, filter 0.35s ease;
}

.gallery-preview-grid a:hover img {
  transform: scale(1.06);
  filter:    brightness(1.1);
}

.gallery-preview-cta {
  text-align:    center;
  margin-top:    22px;
  margin-bottom: 0;
}

.gallery-preview-cta a {
  font-size:      11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight:    700;
  color:          var(--navy);
  border-bottom:  1.5px solid var(--gold);
  padding-bottom: 2px;
  transition:     color 0.2s ease, border-color 0.2s ease;
}

.gallery-preview-cta a:hover {
  color:        var(--gold);
  border-color: var(--gold-light);
}


/* ── Stats Strip ───────────────────────────────────────────────────────── */
.stats-section > h3 {
  margin-top:    0;
  margin-bottom: 0;
}

.stats-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  border-top:            2px solid var(--gold);
  margin-top:            20px;
}

.stat-item {
  text-align:   center;
  padding:      32px 16px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  display:        block;
  font-family:    'Playfair Display', serif;
  font-size:      clamp(38px, 5vw, 56px);
  font-weight:    700;
  color:          var(--gold);
  line-height:    1;
  margin-bottom:  8px;
  letter-spacing: -1px;
}

.stat-label {
  display:        block;
  font-family:    'Lato', sans-serif;
  font-size:      11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:          var(--text);
  font-weight:    700;
  line-height:    1.5;
}


/* ── Floating Booking Bar ─────────────────────────────────────────────── */
.float-booking {
  position:        fixed;
  bottom:          -80px;
  left:            0;
  right:           0;
  z-index:         850;
  background:      var(--navy);
  border-top:      2px solid var(--gold);
  padding:         13px 40px;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             20px;
  transition:      bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:      0 -4px 28px rgba(0, 0, 0, 0.3);
}

.float-booking.visible { bottom: 0; }

/* Lift back-to-top above the floating bar when both are visible */
body.float-visible .back-to-top { bottom: 82px; }

.float-booking-name {
  display:        block;
  font-family:    'Playfair Display', serif;
  font-size:      15px;
  font-weight:    600;
  color:          var(--white);
  letter-spacing: 0.5px;
  line-height:    1.2;
}

.float-booking-badge {
  display:        block;
  font-family:    'Lato', sans-serif;
  font-size:      9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color:          var(--gold);
  font-weight:    700;
  margin-top:     3px;
}

.float-booking-btn {
  background:      var(--gold);
  color:           var(--navy);
  border:          none;
  padding:         11px 30px;
  font-size:       10px;
  letter-spacing:  2px;
  text-transform:  uppercase;
  font-weight:     900;
  font-family:     'Lato', sans-serif;
  cursor:          pointer;
  white-space:     nowrap;
  flex-shrink:     0;
  transition:      background 0.2s ease, transform 0.15s ease;
}

.float-booking-btn:hover {
  background: var(--gold-light);
  transform:  translateY(-1px);
}

@media (max-width: 768px) {
  .float-booking               { padding: 12px 20px; gap: 14px; }
  .float-booking-name          { font-size: 13px; }
  .float-booking-badge         { display: none; }
  body.float-visible .back-to-top { bottom: 76px; }
}

@media (max-width: 480px) {
  .float-booking               { padding: 10px 16px; }
  .float-booking-info          { display: none; }
  .float-booking-btn           { width: 100%; padding: 13px 20px; }
  body.float-visible .back-to-top { bottom: 70px; }
}




/* ── Responsive — Main Content ─────────────────────────────────────────── */

/* Large desktop */
@media (min-width: 1280px) {
  main                    { padding: 72px 56px; }
  .features-section       { margin: 0 -56px 72px !important; }
  main > .gallery-grid    { margin: -72px -56px 0; width: calc(100% + 112px); }
}

/* Tablets landscape */
@media (max-width: 1024px) {
  main                 { padding: 52px 36px; }
  .features-section    { margin: 0 -36px 52px !important; padding: 52px 36px; }
  main > .gallery-grid { margin: -52px -36px 0; width: calc(100% + 72px); }
}

/* Tablets portrait */
@media (max-width: 900px) {
  main                               { padding: 48px 28px; }
  .features-section                  { margin: 0 -28px 48px !important; padding: 48px 28px; }
  .features-section .features-grid   { grid-template-columns: repeat(2, 1fr); }
  main > .gallery-grid               { margin: -48px -28px 0; width: calc(100% + 56px); }
  main > img                         { height: 300px; }
}

/* Large phones / tablets */
@media (max-width: 768px) {
  main                  { padding: 36px 20px; }
  section               { margin-bottom: 44px; padding-bottom: 44px; }
  section h2            { font-size: clamp(19px, 4.5vw, 26px); }
  section p             { font-size: 14px; }
  main > img            { height: 220px; }
  main > a              { padding: 13px 28px; font-size: 11px; }
  section ul            { flex-direction: column; gap: 10px; }
  section ul li a       { text-align: center; display: block; width: 100%; }
  .features-section     { margin: 0 -20px 44px !important; padding: 40px 20px; }
  .gallery-grid         { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .gallery-grid img     { height: 140px; }
  main > .gallery-grid  { margin: -36px -20px 0; width: calc(100% + 40px); }
  main > h3             { padding: 22px 18px; font-size: 14px; }
  .map-wrapper iframe   { height: 360px; }
  /* Touch-friendly minimum tap target for form inputs and menu buttons */
  .booking-field input,
  .booking-field select { min-height: 44px; }
  section ul li a       { min-height: 44px; padding-top: 14px; padding-bottom: 14px; }
  /* Scale decorative gold underline on small screens */
  section h2::after     { width: 28px; }
  /* Cap image height so tall photos don't dominate on tablets */
  section img           { max-height: 420px; }
  .lb-prev              { left: 6px; width: 40px; height: 40px; font-size: 24px; }
  .lb-next              { right: 6px; width: 40px; height: 40px; font-size: 24px; }
  .lb-close             { top: 10px; right: 10px; width: 40px; height: 40px; }
  .lb-img               { max-width: 96vw; max-height: 80vh; }
  .lb-counter           { font-size: 10px; bottom: 14px; }
}

/* Phones portrait */
@media (max-width: 480px) {
  main                               { padding: 28px 16px; }
  section                            { margin-bottom: 36px; padding-bottom: 36px; }
  section h2                         { font-size: clamp(17px, 4.5vw, 22px); }
  section p                          { font-size: 14px; }
  main > img                         { height: 180px; }
  main > a                           { padding: 12px 24px; font-size: 10px; letter-spacing: 2px; margin-bottom: 32px; }
  .features-section                  { margin: 0 -16px 36px !important; padding: 32px 16px; }
  .features-section .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .features-section h2               { font-size: clamp(17px, 4vw, 22px); margin-bottom: 28px; }
  .feature-card                      { padding: 28px 16px; gap: 10px; }
  .feature-icon                      { width: 36px; height: 36px; }
  .features-section p                { font-size: 12px; }
  .gallery-grid                      { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .gallery-grid img                  { height: 120px; }
  main > .gallery-grid               { margin: -28px -16px 0; width: calc(100% + 32px); }
  main > h3                          { padding: 18px 14px; font-size: 13px; border-left-width: 2px; }
  .map-wrapper iframe                { height: 280px; }
  section h2::after                  { width: 22px; }
  /* Reduce FAQ tap area slightly to save vertical space */
  .faq-item summary                  { padding: 14px 0; }
  section img                        { max-height: 300px; }
}

/* Small phones */
@media (max-width: 375px) {
  main                               { padding: 24px 14px; }
  section h2                         { font-size: 17px; }
  /* Restore 14px — 13px crosses the readable threshold on small displays */
  section p                          { font-size: 14px; }
  .features-section                  { margin: 0 -14px 32px !important; padding: 28px 14px; }
  .features-section .features-grid   { grid-template-columns: 1fr 1fr; }
  .features-section h3               { font-size: 10px; letter-spacing: 1.5px; }
  .gallery-grid                      { gap: 3px; }
  /* Slightly taller thumbnails for better visibility */
  .gallery-grid img                  { height: 110px; }
  main > .gallery-grid               { margin: -24px -14px 0; width: calc(100% + 28px); }
  section h2::after                  { width: 18px; }
  /* Map shorter on very small phones to avoid taking full viewport */
  .map-wrapper iframe                { height: 220px; }
}


/* ==========================================================================
   RESPONSIVE — Book Direct / Room Cards / Reviews
   ========================================================================== */

@media (max-width: 900px) {
  .rooms-grid          { gap: 16px; }
  .room-card-img img   { height: 200px; }
  .reviews-grid        { gap: 16px; }
}

@media (max-width: 768px) {
  .rooms-grid                   { grid-template-columns: 1fr; gap: 18px; }
  .room-card-img img            { height: 240px; }
  .room-card-body               { padding: 18px 20px 20px; }
  .room-card-body h3            { font-size: 17px; }
  .reviews-grid                 { grid-template-columns: 1fr; gap: 12px; }
  .review-card                  { padding: 22px 24px; }
  /* Overlay always visible on touch — gradient + "BOOK NOW" bottom-right */
  .room-card-overlay {
    align-items:      flex-end;
    justify-content:  flex-end;
    padding:          12px 14px;
    background:       linear-gradient(to top, rgba(10,16,28,0.55) 0%, transparent 55%);
    color:            rgba(196, 154, 78, 0.9);
    font-size:        9px;
    letter-spacing:   2px;
  }
  .room-card-overlay::after     { display: none; }
}

@media (max-width: 480px) {
  .room-card-img img   { height: 180px; }
  .room-price          { font-size: 17px; }
  .room-card-body      { padding: 16px 18px 18px; }
  .review-card         { padding: 18px 20px; }
}

@media (max-width: 768px) {
  .gallery-preview-grid     { gap: 4px; }
  .gallery-preview-grid img { height: 130px; }
  .stat-item                { padding: 24px 12px; }
  .stat-label               { font-size: 10px; letter-spacing: 1.5px; }
}

@media (max-width: 480px) {
  .gallery-preview-grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-grid img { height: 120px; }
  .stat-item                { padding: 20px 8px; }
}

@media (max-width: 375px) {
  .room-price                  { font-size: 15px; }
  .room-btn                    { padding: 9px 16px; font-size: 9px; }
  .room-card-img img           { height: 200px; }
  .review-card                 { padding: 16px 18px; gap: 10px; }
  .gallery-preview-grid img    { height: 105px; }
  .stat-item                   { padding: 16px 6px; }
  .stat-label                  { font-size: 9px; letter-spacing: 1px; }
  /* Feature cards */
  .feature-card                { padding: 22px 12px; gap: 8px; }
  .feature-icon                { width: 30px; height: 30px; }
  .features-section p          { font-size: 11px; line-height: 1.6; }
  /* Trust bar */
  .trust-item                  { font-size: 7px; letter-spacing: 0.8px; }
  /* Dining split */
  .dining-split-section        { margin: 0 -14px 32px !important; }
  .dining-img                  { min-height: 200px; }
  .dining-text                 { padding: 22px 16px; }
  .dining-text h2              { font-size: 18px; }
  /* Events parallax */
  .events-parallax-section     { margin: 0 -14px 32px !important; min-height: 240px; }
  .events-parallax-content     { padding: 32px 16px; }
  /* Nearby */
  .nearby-card                 { padding: 14px 12px; gap: 10px; }
  .nearby-info h4              { font-size: 12px; }
  .nearby-distance             { font-size: 10px; }
  .nearby-desc                 { font-size: 11px; }
  /* Amenities */
  .amenity-card                { padding: 12px 4px; gap: 5px; }
  .amenity-icon                { width: 18px; height: 18px; }
  .amenity-card span           { font-size: 6.5px; letter-spacing: 0.5px; }
}


/* ==========================================================================
   SCROLL PROGRESS BAR
   ========================================================================== */

#scroll-progress {
  position:   fixed;
  top:        0;
  left:       0;
  height:     2px;
  width:      0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  z-index:    9999;
  pointer-events: none;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(196, 154, 78, 0.6);
}


/* ==========================================================================
   MOBILE CALL BUTTON
   ========================================================================== */

.call-btn {
  display:         none;
  position:        fixed;
  bottom:          28px;
  left:            24px;
  z-index:         800;
  width:           44px;
  height:          44px;
  background:      var(--gold);
  border-radius:   50%;
  color:           var(--navy);
  align-items:     center;
  justify-content: center;
  box-shadow:      0 4px 20px rgba(196, 154, 78, 0.4);
  opacity:         0;
  visibility:      hidden;
  transform:       translateY(10px);
  transition:      opacity 0.3s ease, visibility 0.3s ease,
                   transform 0.3s ease, background 0.2s ease,
                   box-shadow 0.2s ease;
}

.call-btn.visible {
  opacity:    1;
  visibility: visible;
  transform:  translateY(0);
}

.call-btn:hover {
  background:  var(--gold-light);
  color:       var(--navy);
  transform:   translateY(-2px);
  box-shadow:  0 8px 28px rgba(196, 154, 78, 0.5);
}

.call-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

body.float-visible .call-btn { bottom: 82px; }

@media (max-width: 768px) {
  .call-btn { display: flex; }
}

@media (max-width: 480px) {
  .call-btn                    { bottom: 20px; left: 16px; width: 40px; height: 40px; }
  .call-btn svg                { width: 18px; height: 18px; }
  body.float-visible .call-btn { bottom: 70px; }
}


/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(196, 154, 78, 0.25);
  padding: 10px 48px;
  animation: fadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.1s both;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  white-space: nowrap;
}

.trust-item svg { color: var(--gold); flex-shrink: 0; }

.trust-sep {
  color: rgba(196, 154, 78, 0.35);
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
}

@media (max-width: 768px) {
  .trust-bar  { padding: 8px 20px; gap: 14px; }
  .trust-sep  { display: none; }
  .trust-item { font-size: 8px; letter-spacing: 1.2px; }
}

@media (max-width: 480px) {
  .trust-bar { padding: 8px 16px; }
}


/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
  background:    var(--navy);
  margin:        0 -48px 0 !important;
  padding:       64px 60px !important;
  border-top:    3px solid var(--gold);
  border-bottom: none !important;
}

.contact-section h3 {
  color:          var(--gold);
  font-size:      9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight:    700;
  font-family:    'Lato', sans-serif;
  margin-top:     0;
  margin-bottom:  10px;
}

.contact-section h2 {
  font-family:   'Playfair Display', serif;
  font-size:     clamp(22px, 3vw, 34px);
  color:         var(--white);
  font-weight:   600;
  margin-bottom: 44px;
  line-height:   1.3;
}

.contact-section h2::after {
  content:    '';
  display:    block;
  width:      40px;
  height:     2px;
  background: var(--gold);
  margin-top: 12px;
}

.contact-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   0;
  border-top:            1px solid rgba(255, 255, 255, 0.08);
}

.contact-card {
  display:        flex;
  align-items:    flex-start;
  gap:            16px;
  padding:        32px 24px 32px 0;
  border-right:   1px solid rgba(255, 255, 255, 0.08);
  padding-right:  32px;
}

.contact-card:first-child { padding-left: 0; }
.contact-card:last-child  { border-right: none; padding-right: 0; }
.contact-card:not(:first-child) { padding-left: 32px; }

.contact-icon {
  width:      28px;
  height:     28px;
  color:      var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info {
  display:        flex;
  flex-direction: column;
  gap:            5px;
}

.contact-heading {
  font-family:    'Lato', sans-serif;
  font-size:      9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:          var(--gold);
  font-weight:    700;
  margin-bottom:  4px;
}

.contact-value {
  font-size:   14px;
  color:       var(--white);
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
  transition:  color 0.2s ease;
  display:     block;
}

a.contact-value:hover { color: var(--gold); }

.contact-sub {
  font-size:   12px;
  color:       rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.contact-directions {
  display:        inline-block;
  margin-top:     6px;
  font-size:      10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight:    700;
  color:          var(--gold);
  text-decoration: none;
  border-bottom:  1px solid rgba(196, 154, 78, 0.4);
  padding-bottom: 1px;
  transition:     border-color 0.2s ease, color 0.2s ease;
}

.contact-directions:hover {
  color:        var(--gold-light);
  border-color: var(--gold);
}

/* Responsive */
@media (min-width: 1280px) {
  .contact-section { margin: 0 -56px 0 !important; padding: 72px 72px !important; }
}

@media (max-width: 1024px) {
  .contact-section { margin: 0 -36px 0 !important; padding: 52px 48px !important; }
  .contact-card     { padding-left: 24px; padding-right: 24px; }
  .contact-card:first-child { padding-left: 0; }
  .contact-card:last-child  { padding-right: 0; }
}

@media (max-width: 900px) {
  .contact-section    { margin: 0 -28px 0 !important; padding: 48px 36px !important; }
  .contact-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-card       { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 28px 0; }
  .contact-card:not(:first-child) { padding-left: 0; }
  .contact-card:nth-child(2n)     { padding-left: 32px; border-left: 1px solid rgba(255,255,255,0.08); }
  .contact-card:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  .contact-section { margin: 0 -20px 0 !important; padding: 44px 28px !important; }
}

@media (max-width: 480px) {
  .contact-section    { margin: 0 -16px 0 !important; padding: 36px 20px !important; }
  .contact-grid       { grid-template-columns: 1fr; }
  .contact-card       { border-right: none; border-left: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
  .contact-card:nth-child(2n) { padding-left: 0; }
  .contact-card:last-child    { border-bottom: none; }
}

@media (max-width: 375px) {
  .contact-section { margin: 0 -14px 0 !important; padding: 28px 16px !important; }
  .contact-value   { font-size: 13px; }
}


/* ==========================================================================
   NEARBY ATTRACTIONS GRID
   ========================================================================== */

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 0;
}

.nearby-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  border: 1px solid var(--border);
  background: var(--warm-bg);
  border-radius: 2px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.2s ease;
}

.nearby-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 37, 53, 0.09);
  background: var(--white);
}

.nearby-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.nearby-info h4 {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}

.nearby-distance {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 3px;
}

.nearby-desc {
  display: block;
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .nearby-grid { grid-template-columns: 1fr; gap: 10px; }
  .nearby-card { padding: 16px 14px; }
}


/* ==========================================================================
   AMENITIES ICON GRID
   ========================================================================== */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 28px 0 40px;
  overflow: hidden;
}

.amenity-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 14px;
  text-align: center;
  transition: background 0.2s ease;
  cursor: default;
}

.amenity-card:hover { background: var(--warm-bg); }

.amenity-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.amenity-card span {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  font-family: 'Lato', sans-serif;
}

@media (max-width: 768px) {
  .amenity-card { padding: 20px 10px; gap: 8px; }
  .amenity-icon { width: 24px; height: 24px; }
  .amenity-card span { font-size: 8px; letter-spacing: 1px; }
}

@media (max-width: 480px) {
  .amenity-card { padding: 16px 6px; gap: 6px; }
  .amenity-icon { width: 20px; height: 20px; }
  .amenity-card span { font-size: 7px; letter-spacing: 0.8px; }
}


/* ==========================================================================
   DINING SPLIT-SCREEN
   ========================================================================== */

.dining-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 -48px 64px !important;
  padding: 0 !important;
  overflow: hidden;
  border-bottom: none !important;
  min-height: 480px;
}

.dining-img {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.dining-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0;
  border-radius: 0;
  max-height: none;
  transition: transform 0.7s ease;
}

.dining-split-section:hover .dining-img img { transform: scale(1.04); }

.dining-text {
  background: var(--navy);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dining-text h3 {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  margin-top: 0;
  margin-bottom: 10px;
}

.dining-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.8vw, 32px);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.dining-text h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-top: 12px;
}

.dining-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 12px;
}

.dining-text ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  list-style: none;
}

.dining-text ul li a {
  display: inline-block;
  padding: 9px 18px;
  border: 1.5px solid rgba(196, 154, 78, 0.45);
  color: var(--gold) !important;
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  background: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.dining-text ul li a:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
  transform: none;
  box-shadow: none;
}

@media (min-width: 1280px) {
  .dining-split-section { margin: 0 -56px 72px !important; }
}

@media (max-width: 1024px) {
  .dining-split-section { margin: 0 -36px 52px !important; }
  .dining-text          { padding: 44px 36px; }
}

@media (max-width: 900px) {
  .dining-split-section { margin: 0 -28px 48px !important; }
  .dining-text          { padding: 36px 28px; }
}

@media (max-width: 768px) {
  .dining-split-section {
    grid-template-columns: 1fr;
    margin: 0 -20px 44px !important;
    min-height: auto;
  }
  .dining-img     { min-height: 260px; }
  .dining-text    { padding: 32px 24px; }
  .dining-text h2 { font-size: clamp(18px, 5vw, 26px); }
}

@media (max-width: 480px) {
  .dining-split-section { margin: 0 -16px 36px !important; }
  .dining-img           { min-height: 220px; }
  .dining-text          { padding: 28px 20px; }
}


/* ==========================================================================
   EVENTS PARALLAX SECTION
   ========================================================================== */

.events-parallax-section {
  position: relative;
  overflow: hidden;
  margin: 0 -48px 64px !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  min-height: 400px;
  border-bottom: none !important;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.events-parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 28, 0.72);
  z-index: 0;
}

.events-parallax-content {
  position: relative;
  z-index: 1;
  padding: 72px 80px;
  max-width: 640px;
}

.events-parallax-section h3 {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold) !important;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  margin-top: 0;
  margin-bottom: 10px;
}

.events-parallax-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 38px);
  color: var(--white) !important;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.events-parallax-section h2::after {
  background: var(--gold) !important;
}

.events-parallax-section p {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 15px;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 0;
}

.events-cta-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 11px 28px;
  background: transparent;
  border: 1.5px solid rgba(196, 154, 78, 0.7);
  color: var(--gold) !important;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.events-cta-btn:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
}

@media (min-width: 1280px) {
  .events-parallax-section { margin: 0 -56px 72px !important; min-height: 440px; }
}

@media (max-width: 1024px) {
  .events-parallax-section { margin: 0 -36px 52px !important; }
  .events-parallax-content { padding: 56px 52px; }
}

@media (max-width: 900px) {
  .events-parallax-section { margin: 0 -28px 48px !important; min-height: 360px; }
  .events-parallax-content { padding: 52px 40px; }
}

@media (max-width: 768px) {
  .events-parallax-section {
    margin: 0 -20px 44px !important;
    min-height: 320px;
    background-attachment: scroll;
  }
  .events-parallax-content { padding: 48px 28px; }
}

@media (max-width: 480px) {
  .events-parallax-section { margin: 0 -16px 36px !important; min-height: 280px; }
  .events-parallax-content { padding: 40px 20px; }
}


/* ==========================================================================
   FOCUS VISIBLE — Gold ring for keyboard navigation, hidden for mouse/touch
   ========================================================================== */

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Inputs already show a gold border on focus — no need to double up */
.booking-field input:focus-visible,
.booking-field select:focus-visible {
  outline: none;
}



/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top {
  position:   fixed;
  bottom:     28px;
  right:      24px;
  z-index:    800;
  width:      44px;
  height:     44px;
  background: var(--navy);
  border:     1px solid rgba(196, 154, 78, 0.4);
  border-radius: 50%;
  color:      var(--gold);
  cursor:     pointer;
  display:    flex;
  align-items:     center;
  justify-content: center;
  opacity:    0;
  visibility: hidden;
  transform:  translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease,
              transform 0.3s ease, background 0.2s ease,
              border-color 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity:    1;
  visibility: visible;
  transform:  translateY(0);
}

.back-to-top:hover {
  background:   var(--navy-hover);
  border-color: var(--gold);
  transform:    translateY(-3px);
  box-shadow:   0 8px 24px rgba(0, 0, 0, 0.35);
}

.back-to-top svg {
  width:  18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .back-to-top { bottom: 20px; right: 16px; width: 40px; height: 40px; }
  .back-to-top svg { width: 16px; height: 16px; }
}


/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

/* ==========================================================================
   INTRO SPLASH
   ========================================================================== */

#site-intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

#site-intro.intro-exit {
  animation: introFadeOut 0.8s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.intro-content {
  text-align: center;
  padding: 0 32px;
}

.intro-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.intro-badge {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

.intro-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto;
  transform-origin: center;
  opacity: 0;
  animation: introLineExpand 0.6s ease both;
}

.intro-line--top    { animation-delay: 0.15s; }
.intro-line--bottom { animation-delay: 1.05s; }

@keyframes introLineExpand {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

@keyframes introFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}


/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {

  /* ── Page margins ── */
  @page { margin: 1.8cm; }

  /* ── Hide UI chrome ── */
  header nav,
  .booking-bar,
  .back-to-top,
  #lightbox,
  .footer-social,
  .lang-switcher { display: none !important; }

  /* ── Base ── */
  body {
    background:  #fff;
    color:       #111;
    font-size:   11pt;
    line-height: 1.6;
  }

  main { max-width: 100%; padding: 0; }

  /* ── Hero: replace image with simple text header ── */
  .hero-banner         { height: auto; background: none; }
  .hero-banner img     { display: none; }
  .hero-text {
    position:  static;
    transform: none;
    padding:   14pt 0;
    text-align: left;
    width:     100%;
  }
  .hero-text h1      { color: #111; font-size: 20pt; letter-spacing: 2px; }
  .hero-text p       { color: #444; font-size: 10pt; }
  .hero-text::before,
  .hero-text::after  { display: none; }

  /* ── Page banner (non-index pages) ── */
  header > h1 {
    background: none;
    color:      #111;
    padding:    10pt 0;
    text-align: left;
    font-size:  20pt;
  }
  header > h1::after { background: #111; }

  /* ── Typography ── */
  section            { break-inside: avoid; }
  section h2         { color: #111; font-size: 15pt; }
  section h2::after  { background: #111; }
  section h3         { color: #555; font-size: 10pt; }
  section p          { color: #333; font-size: 11pt; }

  /* ── Links: show URL in parentheses ── */
  a                  { color: #111; text-decoration: none; }
  a[href^="http"]::after {
    content:    " (" attr(href) ")";
    font-size:  8pt;
    color:      #666;
    word-break: break-all;
  }
  a[href^="tel"]::after,
  a[href^="#"]::after { content: none; }

  /* ── Features ── */
  .features-section      { background: none; border: 0.5pt solid #ccc; }
  .features-section h1,
  .features-section h3   { color: #111; }

  /* ── Gallery: compact ── */
  .gallery-grid img { height: 70pt; }

  /* ── Map: hide iframe, keep surrounding text ── */
  .map-wrapper       { display: none; }

  /* ── FAQ: force all answers visible when printing ── */
  .faq-answer           { display: block !important; }
  .faq-item summary     { color: #111; }
  .faq-item summary::after { display: none; }

  /* ── Main intro block (meetings page) ── */
  main > h3 { background: none; border-left: 2pt solid #999; color: #333; }

  /* ── Catering ── */
  .catering-section { break-before: page; }

  /* ── Footer ── */
  footer                 { background: #fff; color: #111; }
  .footer-top            { grid-template-columns: 1fr; gap: 12pt; padding: 10pt 0; border-bottom: 0.5pt solid #ccc; }
  .footer-brand          { color: #111; }
  .footer-sub            { color: #555; }
  .footer-heading        { color: #444; }
  .footer-links li a,
  .footer-contact p      { color: #333; }
  .footer-contact a      { color: #333; }
  .footer-bottom         { padding: 6pt 0; }
  .footer-bottom p,
  .footer-bottom a       { color: #666 !important; font-size: 9pt; }
}
