/* ===================================================================
   HOTEL STAR METRO INN — Modern Elegant Theme
   Palette: warm gold + charcoal + cream (Amritsar / Golden Temple)
   =================================================================== */

:root {
  --gold: #b8894d;
  --gold-dark: #96682f;
  --gold-light: #e6c996;
  --charcoal: #1a1a1a;
  --charcoal-soft: #2b2b2b;
  --cream: #faf6ef;
  --cream-2: #f2ece0;
  --muted: #6a6a6a;
  --line: rgba(0, 0, 0, .08);
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, .08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .15);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 4px;
  --transition: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal-soft);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--transition); }
a:hover { color: var(--gold); }
h1, h2, h3, h4, h5, h6 { font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; color: var(--charcoal); line-height: 1.2; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

/* ---------- utility ---------- */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}
.text-center { text-align: center; }
.section { padding: clamp(70px, 10vw, 120px) 0; }
.section-alt { background: var(--white); }
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .35s var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(184, 137, 77, .35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===================================================================
   NAVBAR
   =================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all .4s var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, .97);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  transition: color .3s var(--transition);
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .01em;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: .8;
}
.navbar.scrolled .brand,
.navbar.light .brand { color: var(--charcoal); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-menu a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
  position: relative;
  padding: 6px 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--gold); }
.navbar.scrolled .nav-menu a,
.navbar.light .nav-menu a { color: var(--charcoal); }
.navbar.scrolled .nav-menu a:hover,
.navbar.light .nav-menu a:hover { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .3s var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s var(--transition);
}
.navbar.scrolled .nav-toggle span,
.navbar.light .nav-toggle span { background: var(--charcoal); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================================================
   HERO SLIDER
   =================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease-out;
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1.1);
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--white);
  max-width: 780px;
}
.hero-eyebrow {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s .3s forwards;
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s .5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-sub {
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s .7s forwards;
  color: rgba(255, 255, 255, .9);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s .9s forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 12px;
}
.hero-nav button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .5);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .3s var(--transition);
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, .1);
}
.hero-nav button:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.hero-nav svg { width: 18px; height: 18px; }

.hero-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, .35);
  border-radius: 2px;
  transition: all .3s var(--transition);
}
.hero-dots button.active { background: var(--gold); width: 56px; }

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 40px;
  z-index: 10;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 14px;
}
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 60px;
  background: var(--gold);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ===================================================================
   PAGE HEADER (subpages)
   =================================================================== */
.page-header {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  z-index: 0;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .65));
  z-index: 1;
}
.page-header-content { position: relative; z-index: 2; padding-top: 60px; }
.page-header-eyebrow {
  font-size: 12px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .05em;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: var(--gold); }

/* ===================================================================
   INTRO / ABOUT block
   =================================================================== */
.intro-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-visual { position: relative; }
.intro-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 2px;
}
.intro-visual-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gold);
  color: var(--white);
  padding: 30px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.intro-visual-badge .num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}
.intro-visual-badge .label {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}
.intro-text p { margin-bottom: 20px; color: var(--muted); }
.intro-text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4rem;
  float: left;
  line-height: .85;
  margin: 6px 12px 0 0;
  color: var(--gold);
  font-weight: 600;
}

/* ===================================================================
   FACILITIES
   =================================================================== */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.facility {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all .4s var(--transition);
}
.facility:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.facility-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--gold);
  display: grid;
  place-items: center;
}
.facility-icon svg { width: 100%; height: 100%; stroke-width: 1.2; }
.facility-title {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ===================================================================
   ROOMS PREVIEW / CARDS
   =================================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.room-card {
  background: var(--white);
  overflow: hidden;
  transition: all .5s var(--transition);
  border: 1px solid var(--line);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--transition);
}
.room-card:hover .room-media img { transform: scale(1.08); }
.room-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  color: var(--charcoal);
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
}
.room-body { padding: 32px 30px 34px; }
.room-name {
  font-size: 1.7rem;
  margin-bottom: 12px;
}
.room-desc {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 22px;
  line-height: 1.7;
}
.room-amenities {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.room-amenities span { display: flex; align-items: center; gap: 6px; }
.room-amenities svg { width: 14px; height: 14px; color: var(--gold); }
.room-footer { display: flex; justify-content: space-between; align-items: center; }
.room-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: gap .3s var(--transition);
}
.room-book:hover { color: var(--gold); gap: 14px; }
.room-book svg { width: 16px; height: 16px; }

/* rooms page — extended layout */
.room-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.room-feature:nth-child(even) .room-feature-visual { order: 2; }
.room-feature-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.room-feature-body h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); margin-bottom: 20px; }
.room-feature-body .eyebrow { color: var(--gold); }
.room-feature-body p { color: var(--muted); margin-bottom: 24px; }
.room-feature-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 24px 0 34px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.room-feature-amenities span {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--charcoal-soft);
}
.room-feature-amenities svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ===================================================================
   GALLERY
   =================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--transition);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .5));
  opacity: 0;
  transition: opacity .4s var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item-plus {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  opacity: 0;
  transition: opacity .4s var(--transition);
  z-index: 2;
}
.gallery-item:hover .gallery-item-plus { opacity: 1; }
.gallery-item-plus svg { width: 40px; height: 40px; stroke-width: 1; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .3s var(--transition);
}
.lightbox-close { top: 30px; right: 30px; }
.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); }
.lightbox svg { width: 22px; height: 22px; }

/* ===================================================================
   SIGHTSEEING
   =================================================================== */
.sight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sight-card {
  background: var(--white);
  overflow: hidden;
  transition: all .4s var(--transition);
  border: 1px solid var(--line);
}
.sight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sight-media { aspect-ratio: 4 / 3; overflow: hidden; }
.sight-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--transition);
}
.sight-card:hover .sight-media img { transform: scale(1.08); }
.sight-body { padding: 28px 26px 30px; }
.sight-body h3 { font-size: 1.5rem; margin-bottom: 12px; }
.sight-body p { color: var(--muted); font-size: .93rem; line-height: 1.65; }

/* ===================================================================
   ABOUT — values grid
   =================================================================== */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 60px; }
.value-card {
  padding: 50px 40px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  transition: all .4s var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card h3 { font-size: 1.75rem; margin-bottom: 16px; }
.value-card p { color: var(--muted); }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}
.contact-info h2 { font-size: 2.5rem; margin-bottom: 20px; }
.contact-info > p { color: var(--muted); margin-bottom: 36px; }
.contact-detail {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid; place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-body h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-detail-body p, .contact-detail-body a {
  color: var(--charcoal); font-size: 1rem; line-height: 1.5;
}
.contact-form {
  background: var(--white);
  padding: 50px 45px;
  border: 1px solid var(--line);
}
.contact-form h3 { font-size: 1.75rem; margin-bottom: 8px; }
.contact-form > p { color: var(--muted); margin-bottom: 30px; font-size: .95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color .3s var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.map-wrap {
  margin-top: 60px;
  height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(20%); }

/* ===================================================================
   CTA STRIP
   =================================================================== */
.cta-strip {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/cel-1517.jpg') center/cover;
  transform: scale(1.02);
}
.cta-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26, 26, 26, .8), rgba(26, 26, 26, .85));
}
.cta-strip > * { position: relative; z-index: 2; }
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 20px;
}
.cta-strip p { max-width: 560px; margin: 0 auto 36px; color: rgba(255, 255, 255, .85); }

/* ===================================================================
   VIDEO SECTION
   =================================================================== */
.video-wrap {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
}
.video-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--transition); }
.video-wrap:hover img { transform: scale(1.03); }
.video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .3);
}
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  background: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  transition: all .3s var(--transition);
}
.video-play::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.video-play svg { width: 28px; height: 28px; color: var(--gold); margin-left: 4px; }
.video-wrap:hover .video-play { background: var(--gold); }
.video-wrap:hover .video-play svg { color: var(--white); }

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.video-modal.open { display: flex; }
.video-modal-content { width: 100%; max-width: 1100px; aspect-ratio: 16 / 9; }
.video-modal iframe { width: 100%; height: 100%; border: 0; }
.video-modal-close {
  position: absolute; top: 30px; right: 30px;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
  display: grid; place-items: center;
  transition: all .3s var(--transition);
}
.video-modal-close:hover { background: var(--gold); border-color: var(--gold); }
.video-modal-close svg { width: 22px; height: 22px; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .7);
  padding: 90px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand .brand { color: var(--white); margin-bottom: 24px; }
.footer-brand p {
  color: rgba(255, 255, 255, .6);
  font-size: .95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255, 255, 255, .6);
  transition: all .3s var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }

.footer h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: rgba(255, 255, 255, .6); font-size: .93rem; transition: all .3s var(--transition); }
.footer ul a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; font-size: .93rem; color: rgba(255, 255, 255, .65); margin-bottom: 16px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 30px;
  padding-right: 45px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
}
.footer-bottom a { color: var(--gold); }

/* ===================================================================
   FLOATING ACTION BUTTONS
   =================================================================== */
.fab-group {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  transition: all .3s var(--transition);
  position: relative;
}
.fab:hover { transform: translateY(-3px) scale(1.05); color: var(--white); }
.fab-whatsapp { background: #25D366; }
.fab-whatsapp:hover { background: #1ebb5b; }
.fab-call { background: var(--gold); }
.fab-call:hover { background: var(--gold-dark); }
.fab svg { width: 26px; height: 26px; }
.fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  animation: fab-pulse 2s ease-out infinite;
  opacity: 0;
}
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--white); }
.back-to-top svg { width: 18px; height: 18px; }

/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--transition), transform .9s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .intro-block { grid-template-columns: 1fr; gap: 60px; }
  .intro-visual img { height: 480px; }
  .facilities-grid { grid-template-columns: repeat(3, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .sight-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .room-feature { grid-template-columns: 1fr; gap: 40px; }
  .room-feature:nth-child(even) .room-feature-visual { order: 0; }
  .room-feature-visual img { height: 400px; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 340px;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transition: right .4s var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, .1);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { color: var(--charcoal) !important; font-size: 18px; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .hero { min-height: 560px; }
  .hero-nav { display: none; }
  .scroll-hint { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .facilities-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .sight-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .intro-visual-badge { right: 20px; padding: 20px 26px; }
  .intro-visual-badge .num { font-size: 2.25rem; }
  .contact-form { padding: 32px 24px; }
  .fab { width: 52px; height: 52px; }
  .fab svg { width: 22px; height: 22px; }
}
@media (max-width: 480px) {
  .container, .container-wide { padding: 0 18px; }
  .brand-sub { display: none; }
  .hero-title { font-size: 2.25rem; }
  .page-header { height: 50vh; min-height: 340px; }
}
