/* =========================================================
   Mariador Hotel — shared stylesheet
   Palette pulled from the property's own room photography:
   deep teal upholstery, brushed-gold trim, warm cream linen.
   ========================================================= */

:root {
  --ink: #0a1119;
  --navy-900: #0c1826;
  --navy-800: #132234;
  --navy-700: #1c3348;
  --teal-900: #0d2b2b;
  --teal-800: #123a3a;
  --gold: #c6a463;
  --gold-light: #e6d3a3;
  --gold-dark: #9c7d3f;
  --cream: #f7f3ea;
  --paper: #ffffff;
  --ink-text: #17212c;
  --mute: #6b7480;
  --mute-light: #97a0aa;
  --line: #e7e1d2;
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 50px -20px rgba(10, 17, 25, 0.35);
  --shadow-soft: 0 10px 30px -12px rgba(10, 17, 25, 0.18);
  --radius: 4px;
  --radius-lg: 6px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.5em;
  color: var(--navy-900);
  letter-spacing: 0.2px;
}

p { margin: 0 0 1.1em; color: var(--mute); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold-dark);
  opacity: 0.7;
}
.eyebrow.center { justify-content: center; }
.on-dark .eyebrow { color: var(--gold-light); }
.on-dark .eyebrow::before, .on-dark .eyebrow::after { background: var(--gold-light); }

.section { padding: 110px 0; }
.section.tight { padding: 80px 0; }
.section.cream { background: var(--cream); }
.section.navy { background: var(--navy-900); color: #fff; }
.section.teal { background: var(--teal-900); color: #fff; }
.section.navy p, .section.teal p { color: rgba(255,255,255,0.72); }
.section.navy h2, .section.navy h3, .section.teal h2, .section.teal h3 { color: #fff; }

.section-head { max-width: 680px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.section-head p { font-size: 1.05rem; margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: #1a1305;
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(198,164,99,0.55); }
.btn-outline {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline.dark { border-color: var(--navy-900); color: var(--navy-900); }
.btn-outline.dark:hover { background: var(--navy-900); color: #fff; }
.btn-text {
  padding: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  border-radius: 0;
  padding-bottom: 3px;
}
.btn-text:hover { color: var(--navy-900); border-color: var(--navy-900); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: var(--gold-light); }
.topbar-links { display: flex; gap: 22px; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.topbar-social a:hover { color: var(--gold-light); }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.35s var(--ease);
}
.site-nav.solid {
  background: rgba(10, 17, 25, 0.96);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
}
body.subpage .site-nav { background: var(--ink); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  transition: padding 0.35s var(--ease);
}
.site-nav.solid .nav-inner { padding: 15px 0; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.brand .mark {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--gold-light);
}
.brand .word {
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  letter-spacing: 0.06em;
}
.brand .word small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  color: var(--gold-light);
  font-weight: 500;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  color: rgba(255,255,255,0.86);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); border-color: var(--gold-light); }
.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-toggle {
  display: none;
  width: 30px; height: 22px;
  position: relative;
  background: none; border: none;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 1.5px; background: #fff;
}
.nav-toggle::before { top: 0; }
.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle::after { bottom: 0; }

/* ---------- Hero carousel ---------- */
.hero {
  position: relative;
  height: 94vh;
  min-height: 620px;
  max-height: 980px;
  overflow: hidden;
  background: var(--ink);
  margin-top: -84px;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 9s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,13,20,0.55) 0%, rgba(8,13,20,0.28) 38%, rgba(8,13,20,0.72) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  color: #fff;
}
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content .eyebrow::before, .hero-content .eyebrow::after { background: var(--gold-light); }
.hero-content h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  max-width: 920px;
  margin-bottom: 0.32em;
}
.hero-content .lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.86);
  max-width: 560px;
  margin: 0 auto 34px;
}
.hero-dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 34px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-dots button {
  width: 34px; height: 3px;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  transition: background 0.3s;
}
.hero-dots button.active { background: var(--gold-light); }
.hero-arrows { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; pointer-events: none; }
.hero-arrows button {
  pointer-events: all;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(10,17,25,0.25);
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.hero-arrows button:hover { background: rgba(10,17,25,0.55); border-color: var(--gold-light); }
.hero-scroll {
  position: absolute; z-index: 3; bottom: 34px; right: 40px;
  color: rgba(255,255,255,0.75);
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), transparent);
}

/* ---------- Page banner (subpages) ---------- */
.page-banner {
  position: relative;
  min-height: 46vh;
  display: flex; align-items: flex-end;
  padding: 140px 0 60px;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,13,20,0.55), rgba(8,13,20,0.82));
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom: 10px; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { margin: 0 8px; color: var(--gold-light); }

/* ---------- Welcome / intro ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.intro-media { position: relative; }
.intro-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.intro-media .frame {
  position: absolute;
  top: -20px; left: -20px;
  width: 66%; height: 60%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.intro-media .badge {
  position: absolute;
  bottom: -26px; right: -26px;
  background: var(--navy-900);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 140px;
}
.intro-media .badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold-light); }
.intro-media .badge span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat-row .stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--navy-900);
}
.stat-row .stat span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ---------- Room cards ---------- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.room-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.room-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.room-card:hover .thumb img { transform: scale(1.08); }
.room-card .thumb .tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(10,17,25,0.75);
  color: var(--gold-light);
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 2px;
}
.room-card .body { padding: 26px 26px 30px; }
.room-card h3 { font-size: 1.28rem; margin-bottom: 6px; }
.room-card .price {
  font-family: 'Jost', sans-serif;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 14px;
  display: block;
}
.room-card .price small { color: var(--mute); font-weight: 400; }
.room-card ul { margin: 0 0 20px; display: flex; flex-direction: column; gap: 6px; }
.room-card ul li { font-size: 0.86rem; color: var(--mute); display: flex; gap: 8px; align-items: baseline; }
.room-card ul li::before { content: '—'; color: var(--gold); }
.room-card .row { display: flex; align-items: center; justify-content: space-between; }

/* ---------- Room detail (rooms page, alternating) ---------- */
.room-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}
.room-detail:last-child { border-bottom: none; }
.room-detail.reverse .media { order: 2; }
.room-detail .media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; }
.room-detail .media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Room mini-gallery (main + thumbs) ---------- */
.room-gallery .main { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; background: #000; }
.room-gallery .main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.35s var(--ease); }
.room-gallery .main .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
  color: #fff; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.room-gallery .thumbs { display: flex; gap: 10px; margin-top: 12px; }
.room-gallery .thumbs button {
  flex: 1;
  padding: 0; border: 2px solid transparent; border-radius: 3px;
  overflow: hidden; aspect-ratio: 1/1; background: none;
  opacity: 0.62; transition: opacity 0.25s, border-color 0.25s;
}
.room-gallery .thumbs button img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-gallery .thumbs button:hover { opacity: 0.85; }
.room-gallery .thumbs button.active { opacity: 1; border-color: var(--gold); }
.room-detail .amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 22px 0 28px;
}
.room-detail .amenities li { font-size: 0.9rem; color: var(--ink-text); display: flex; gap: 10px; align-items: center; }
.room-detail .amenities li::before { content: '\2726'; color: var(--gold); font-size: 0.7rem; }
.room-detail .price-tag {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy-900);
  margin-bottom: 22px;
}
.room-detail .price-tag small { font-family: 'Jost', sans-serif; font-size: 0.68rem; color: var(--mute); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-top: 4px; }

/* ---------- Facilities icon grid ---------- */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.facility-item {
  background: var(--paper);
  padding: 44px 28px;
  text-align: center;
  transition: background 0.3s;
}
.facility-item:hover { background: var(--cream); }
.facility-item .ic {
  width: 54px; height: 54px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
}
.facility-item .ic svg { width: 24px; height: 24px; }
.facility-item h4 { font-size: 1.02rem; margin-bottom: 8px; }
.facility-item p { font-size: 0.86rem; margin: 0; }

/* ---------- Split feature (lounge/dining teaser) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.split .media { position: relative; overflow: hidden; }
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split .copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px;
}
.split.reverse .media { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split .media { height: 340px; order: 1 !important; }
  .split .copy { padding: 56px 28px; }
}

/* ---------- Testimonial ---------- */
.testimonial {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.testimonial .stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 22px; font-size: 1rem; }
.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.5;
  margin: 0 0 26px;
  color: #fff;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ---------- Video showcase ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.video-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); background: #000; }
.video-card video { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; }
.video-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color: #fff; font-size: 0.85rem; letter-spacing: 0.06em;
}
.video-card .play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,13,20,0.28);
  cursor: pointer;
  transition: background 0.3s;
}
.video-card .play span {
  width: 66px; height: 66px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
  backdrop-filter: blur(2px);
  transition: transform 0.3s, background 0.3s;
}
.video-card:hover .play span { transform: scale(1.08); background: rgba(198,164,99,0.35); }
.video-card.playing .play { display: none; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(160deg, var(--navy-900), var(--teal-900));
  color: #fff;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(198,164,99,0.14), transparent 45%),
              radial-gradient(circle at 80% 80%, rgba(198,164,99,0.1), transparent 45%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); max-width: 620px; margin: 0 auto 16px; }
.cta-banner p { max-width: 520px; margin: 0 auto 34px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}
.gallery-grid .g-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
.gallery-grid .g-item img, .gallery-grid .g-item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-grid .g-item:hover img, .gallery-grid .g-item:hover video { transform: scale(1.08); }
.gallery-grid .g-item.wide { grid-column: span 2; }
.gallery-grid .g-item.tall { grid-row: span 2; }
.gallery-grid .g-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,13,20,0.65), transparent 55%);
  display: flex; align-items: flex-end;
  padding: 14px 16px;
  color: #fff; font-size: 0.8rem; letter-spacing: 0.06em;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-grid .g-item:hover .overlay { opacity: 1; }
.gallery-grid .g-item .play-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(8,13,20,0.55); border: 1px solid rgba(255,255,255,0.7);
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.filter-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 46px; flex-wrap: wrap; }
.filter-row button {
  background: none; border: 1px solid var(--line);
  padding: 9px 20px; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute); border-radius: 999px; transition: all 0.25s;
}
.filter-row button.active, .filter-row button:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6,10,15,0.95);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox .box { max-width: 1100px; width: 100%; max-height: 86vh; }
.lightbox .box img, .lightbox .box video { width: 100%; max-height: 86vh; object-fit: contain; }
.lightbox .close {
  position: absolute; top: 26px; right: 34px;
  color: #fff; font-size: 1.6rem; background: none; border: none;
}
.lightbox .nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; background: none; border: none; font-size: 2rem;
  opacity: 0.7;
}
.lightbox .nav-btn:hover { opacity: 1; }
.lightbox .nav-btn.prev { left: 24px; }
.lightbox .nav-btn.next { right: 24px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label {
  display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 8px; font-weight: 600;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 2px;
  color: var(--ink-text);
  transition: border-color 0.25s, background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--mute-light); margin-top: 8px; }
.form-success {
  display: none;
  background: var(--teal-900); color: #fff;
  padding: 20px 24px; border-radius: var(--radius); margin-top: 20px;
  font-size: 0.92rem;
}
.form-success.show { display: block; }

/* ---------- Contact info cards ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.info-card {
  padding: 32px 28px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  text-align: center;
}
.info-card .ic {
  width: 50px; height: 50px; margin: 0 auto 18px;
  border-radius: 50%; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center; color: var(--gold-dark);
}
.info-card h4 { font-size: 1rem; margin-bottom: 8px; }
.info-card p { font-size: 0.9rem; margin: 0; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- About page extras ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card { padding: 8px 0; }
.value-card .num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); margin-bottom: 10px; display: block; }
.value-card h3 { font-size: 1.15rem; }

.team-quote {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 0;
}
.team-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; color: var(--ink-text); }
.team-quote cite { font-style: normal; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.62); padding-top: 90px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand { color: #fff; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, color 0.25s;
}
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }
.site-footer h5 {
  color: #fff; font-family: 'Jost', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 22px; font-weight: 600;
}
.site-footer ul li { margin-bottom: 12px; font-size: 0.92rem; }
.site-footer ul li a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; font-size: 0.8rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Utility ---------- */
.center-text { text-align: center; }
.mt-0 { margin-top: 0; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .info-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: 78%; max-width: 340px;
    background: var(--navy-900); flex-direction: column; justify-content: flex-start;
    padding: 110px 36px; gap: 26px; transform: translateX(100%); transition: transform 0.4s var(--ease); }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .nav-cta .btn-gold { padding: 11px 20px; font-size: 0.72rem; }
  .room-detail { grid-template-columns: 1fr; gap: 30px; padding: 46px 0; }
  .room-detail.reverse .media { order: 0; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-grid .g-item.wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .room-grid { grid-template-columns: 1fr; }
  .facility-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 22px; }
  .hero { margin-top: -76px; }
  .hero-scroll { display: none; }
}
