:root {
  --black: #0c0b09;
  --charcoal: #161411;
  --ivory: #f6f1e8;
  --stone: #d8cfc0;
  --muted: #9d9486;
  --gold: #c8a76a;
  --gold-soft: #ead7a7;
  --line: rgba(216, 207, 192, 0.22);
  --glass: rgba(255, 255, 255, 0.075);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 78% 6%, rgba(200, 167, 106, 0.2), transparent 24rem),
    radial-gradient(circle at 8% 36%, rgba(255, 255, 255, 0.08), transparent 19rem),
    linear-gradient(135deg, #0a0908 0%, #1a1712 46%, #0e0d0b 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.34;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.16) 18.4%, transparent 19.2% 47%, rgba(255, 255, 255, 0.11) 47.4%, transparent 48.2%),
    linear-gradient(38deg, transparent 0 24%, rgba(200, 167, 106, 0.14) 24.5%, transparent 25.2% 68%, rgba(255, 255, 255, 0.09) 68.4%, transparent 69.2%);
  filter: blur(0.2px);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image: url("assets/gallery/Mirador/dia.webp");
  background-position: center;
  background-size: cover;
  opacity: 0.065;
  mix-blend-mode: screen;
  pointer-events: none;
}

main {
  transform-style: preserve-3d;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 11, 9, 0.72);
  backdrop-filter: blur(22px);
}

.brand,
.nav-links,
.hero-actions,
.guide-controls {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 700;
  min-width: 0;
}

.brand-logo {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(234, 215, 167, 0.45);
  border-radius: 50%;
  color: var(--gold-soft);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 0 18px rgba(234, 215, 167, 0.12);
}

.nav-links {
  justify-content: flex-end;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.lang-button {
  min-width: 38px;
  min-height: 32px;
  cursor: pointer;
  color: var(--muted);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
}

.lang-button.is-active,
.lang-button:hover {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  justify-self: end;
  cursor: pointer;
  color: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header-socials a {
  color: var(--stone);
  display: flex;
}

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

.header-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero {
  display: grid;
  min-height: calc(100vh - 73px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 92px) clamp(18px, 4vw, 52px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(46px, 11vw, 142px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 6vw, 78px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.15;
}

p {
  color: var(--stone);
}

.hero-copy p {
  max-width: 610px;
  font-size: 20px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 560ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(234, 215, 167, 0.62);
}

.button:hover::after {
  transform: translateX(120%);
}

.button.primary {
  color: var(--black);
  border-color: rgba(234, 215, 167, 0.65);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.button.ghost {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
}

.button.large {
  min-height: 56px;
  padding: 0 30px;
}

.hero-gallery {
  position: relative;
  min-height: 640px;
  transform: translateY(var(--parallax-hero, 0));
  transition: transform 80ms linear;
}

.gallery-main {
  position: absolute;
  inset: 0 0 52px 72px;
  border: 1px solid rgba(234, 215, 167, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(12, 11, 9, 0), rgba(12, 11, 9, 0.32)),
    url("assets/gallery/sala- comedor-pasillo/20260207_181742.webp") center / cover;
  box-shadow: var(--shadow);
  animation: ken-burns 25s ease-in-out infinite alternate;
}

@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.gallery-main::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: calc(var(--radius) - 2px);
}

.stat-card,
.glass-card {
  position: absolute;
  border: 1px solid rgba(234, 215, 167, 0.28);
  border-radius: var(--radius);
  background: rgba(16, 14, 11, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stat-card {
  left: 0;
  bottom: 0;
  width: 180px;
  padding: 26px;
}

.stat-card span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.8;
}

.stat-card p,
.glass-card span {
  margin: 10px 0 0;
  color: var(--gold-soft);
  font-weight: 800;
}

.glass-card {
  right: 0;
  top: 40px;
  max-width: 270px;
  padding: 18px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px clamp(18px, 4vw, 52px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section-title.center {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-note {
  max-width: 690px;
  font-size: 17px;
}

.feature-list,
.experience-grid,
.ranking-grid,
.experience-list,
.service-grid,
.photo-grid {
  display: grid;
  gap: 14px;
}

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

.feature,
.experience,
.rank-card,
.wide-card,
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(12, 11, 9, 0.38);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.feature::before,
.experience::before,
.rank-card::before,
.wide-card::before,
.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(234, 215, 167, 0.18), transparent 32%);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.feature:hover::before,
.experience:hover::before,
.rank-card:hover::before,
.wide-card:hover::before,
.service-card:hover::before {
  opacity: 1;
}

.feature {
  min-height: 178px;
  padding: 28px;
}

.service-section {
  max-width: 1360px;
  padding-top: 40px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 230px;
  padding: 26px;
}

.service-card span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 58px;
  border: 1px solid rgba(234, 215, 167, 0.35);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.055);
}

.feature span,
.experience span,
.wide-card span,
.rank {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
}

.experience-band {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.gallery-section {
  max-width: 1360px;
}

.photo-grid {
  grid-template-columns: 1.1fr 0.65fr 0.65fr;
  grid-auto-rows: 260px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  cursor: zoom-in;
  border: 1px solid rgba(234, 215, 167, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.photo-card.large {
  grid-row: span 2;
}

.photo-card.wide {
  grid-column: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}

.photo-card.large img,
.photo-card:nth-child(2) img {
  object-position: center;
}

.photo-card:nth-child(3n) {
  transform: translateY(var(--parallax-soft, 0));
}

.photo-card:nth-child(4n) {
  transform: translateY(var(--parallax-lift, 0));
}

.photo-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(12, 11, 9, 0.76));
}

.photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: var(--gold-soft);
  font-weight: 800;
}

.panorama-section {
  max-width: 1360px;
}

.panorama-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(234, 215, 167, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(12, 11, 9, 0.52);
  box-shadow: var(--shadow);
}

.panorama-viewer {
  min-height: clamp(420px, 62vw, 680px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080706;
}

.panorama-controls {
  display: grid;
  gap: 12px;
  align-content: start;
}

.panorama-button {
  min-height: 118px;
  padding: 18px;
  cursor: pointer;
  color: var(--stone);
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.panorama-button span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
}

.panorama-button:hover,
.panorama-button.is-active {
  color: var(--ivory);
  border-color: rgba(234, 215, 167, 0.66);
  background: rgba(234, 215, 167, 0.12);
  transform: translateY(-2px);
}

.pnlm-container {
  background: #080706;
  font-family: inherit;
}

.pnlm-load-box,
.pnlm-info-box {
  border: 1px solid rgba(234, 215, 167, 0.26);
  border-radius: var(--radius);
  background: rgba(12, 11, 9, 0.76);
}

.video-section {
  max-width: 1360px;
}

.video-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 44px);
}

.video-stack {
  display: grid;
  gap: clamp(24px, 5vw, 58px);
}

.video-showcase {
  display: grid;
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  padding: clamp(16px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(12, 11, 9, 0.52);
  box-shadow: var(--shadow);
}

.video-showcase.reel-showcase {
  grid-template-columns: minmax(260px, 0.9fr) minmax(240px, 0.44fr);
}

.video-showcase.reel-showcase.reverse {
  grid-template-columns: minmax(240px, 0.44fr) minmax(260px, 0.9fr);
}

.video-showcase.reel-showcase.reverse .video-copy {
  order: 2;
}

.video-showcase.wide-showcase {
  grid-template-columns: minmax(260px, 0.48fr) minmax(420px, 1fr);
}

.video-copy .step {
  width: max-content;
  margin-bottom: 26px;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.9;
}

.video-copy h3,
.video-card h3,
.concierge-copy h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gold-soft);
}

.video-frame,
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
}

.video-frame video,
.video-card video {
  width: 100%;
  display: block;
  object-fit: cover;
}

.video-card.reel video {
  aspect-ratio: 9 / 16;
  height: auto;
}

.video-card.reel {
  width: min(100%, 330px);
  justify-self: center;
}

.video-card.wide-video {
  align-self: center;
  width: 100%;
}

.video-card.wide-video video {
  aspect-ratio: 16 / 9;
  height: auto;
}

/* ==========================================================================
   TikTok Section
   ========================================================================== */
.tiktok-section {
  padding: 6rem 5vw;
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.tiktok-embed {
  margin: 0 !important;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.reel-container {
  width: 100%;
  max-width: 325px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.reel-container video,
.reel-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.experience-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
}

.experience {
  min-height: 260px;
  padding: 26px;
}

.experience span {
  display: block;
  margin-bottom: 72px;
  font-size: 28px;
}

.concierge-copy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 18px auto 0;
}

.concierge-copy article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.032)),
    rgba(12, 11, 9, 0.38);
}

.guide-controls {
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0 24px;
}

.guide-tab {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  cursor: pointer;
  color: var(--stone);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.guide-tab.is-active,
.guide-tab:hover {
  color: var(--black);
  border-color: rgba(234, 215, 167, 0.72);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.guide-panel {
  display: none;
}

.guide-panel.is-active {
  display: block;
}

.ranking-grid {
  grid-template-columns: repeat(5, 1fr);
}

.ranking-grid.compact {
  grid-template-columns: repeat(5, 1fr);
}

.rank-card {
  display: grid;
  min-height: 330px;
  grid-template-rows: auto auto 1fr auto auto;
  padding: 128px 22px 22px;
  --photo: url("https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?auto=format&fit=crop&w=900&q=84");
}

.rank-card > * {
  position: relative;
  z-index: 2;
}

.rank-card::after {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 0;
  height: 104px;
  content: "";
  border-bottom: 1px solid rgba(234, 215, 167, 0.2);
  background:
    linear-gradient(180deg, rgba(12, 11, 9, 0.04), rgba(12, 11, 9, 0.58)),
    var(--photo) center / cover;
  filter: saturate(0.88) contrast(1.05);
}

.guide-panel[data-panel="restaurants"] .rank-card:nth-child(1) { --photo: url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=900&q=84"); }
.guide-panel[data-panel="restaurants"] .rank-card:nth-child(2) { --photo: url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=900&q=84"); }
.guide-panel[data-panel="restaurants"] .rank-card:nth-child(3) { --photo: url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=900&q=84"); }
.guide-panel[data-panel="restaurants"] .rank-card:nth-child(4) { --photo: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=900&q=84"); }
.guide-panel[data-panel="restaurants"] .rank-card:nth-child(5) { --photo: url("https://images.unsplash.com/photo-1558030006-450675393462?auto=format&fit=crop&w=900&q=84"); }
.guide-panel[data-panel="burgers"] .rank-card { --photo: url("https://images.unsplash.com/photo-1568901346375-23c9450c58cd?auto=format&fit=crop&w=900&q=84"); }
.guide-panel[data-panel="burgers"] .rank-card:nth-child(2) { --photo: url("https://images.unsplash.com/photo-1550547660-d9450f859349?auto=format&fit=crop&w=900&q=84"); }
.guide-panel[data-panel="burgers"] .rank-card:nth-child(3) { --photo: url("https://images.unsplash.com/photo-1571091718767-18b5b1457add?auto=format&fit=crop&w=900&q=84"); }
.guide-panel[data-panel="desserts"] .rank-card { --photo: url("https://images.unsplash.com/photo-1551024506-0bccd828d307?auto=format&fit=crop&w=900&q=84"); }

.rank-card.featured {
  background:
    linear-gradient(135deg, rgba(234, 215, 167, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(12, 11, 9, 0.44);
}

.rank {
  display: block;
  margin-bottom: 22px;
  font-size: 34px;
}

.rank-card p,
.wide-card p {
  min-height: 0;
  font-size: 14px;
}

.rank-card small {
  color: var(--muted);
  font-weight: 700;
}

.meta-actions {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(5, 5, 4, 0.92);
  backdrop-filter: blur(18px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-figure {
  width: min(1120px, 86vw);
  margin: 0;
}

.lightbox-figure img {
  width: 100%;
  max-height: 78vh;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(234, 215, 167, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-figure figcaption,
.lightbox-count {
  margin-top: 14px;
  color: var(--gold-soft);
  text-align: center;
  font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234, 215, 167, 0.36);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
}

.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 72px;
  border-radius: var(--radius);
  font-size: 48px;
  transform: translateY(-50%);
}

.lightbox-nav.prev {
  left: 22px;
}

.lightbox-nav.next {
  right: 22px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: rgba(234, 215, 167, 0.72);
  background: rgba(234, 215, 167, 0.12);
}

.meta-actions a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(234, 215, 167, 0.28);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 800;
}

.meta-actions svg {
  width: 15px;
  height: 15px;
}

.meta-actions a:hover {
  border-color: rgba(234, 215, 167, 0.68);
  background: rgba(234, 215, 167, 0.1);
}

.panel-note {
  margin: 18px 0 0;
  color: var(--gold-soft);
  font-weight: 800;
}

.experience-list {
  grid-template-columns: repeat(5, 1fr);
}

.wide-card {
  min-height: 300px;
  padding: 24px;
}

.wide-card span {
  display: block;
  margin-bottom: 84px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking {
  padding: 8rem 5vw;
  text-align: center;
  position: relative;
  background:
    linear-gradient(rgba(12, 11, 9, 0.7), rgba(12, 11, 9, 0.95)),
    url("assets/bucaramanga-hero.jpg") center / cover no-repeat fixed;
  border-top: 1px solid rgba(234, 215, 167, 0.1);
}

.booking-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.booking-inner h2 {
  max-width: 780px;
}

.footer {
  padding: 3rem 5vw;
  text-align: center;
  border-top: 1px solid rgba(234, 215, 167, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--stone);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-socials a {
  color: var(--stone);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

@media (max-width: 760px) {
  .reveal {
    transform: translateY(10px);
    transition: opacity 320ms ease, transform 320ms ease;
  }
}

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

@media (max-width: 1120px) {
  .ranking-grid,
  .ranking-grid.compact,
  .experience-list,
  .experience-grid,
  .concierge-copy,
  .service-grid,
  .photo-grid,
  .panorama-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-showcase.reel-showcase,
  .video-showcase.reel-showcase.reverse,
  .video-showcase.wide-showcase {
    grid-template-columns: 1fr;
  }

  .video-showcase.reel-showcase.reverse .video-copy {
    order: 0;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .brand-logo {
    height: 40px;
    max-width: 150px;
    min-width: 0;
  }

  .language-switch {
    flex: 0 0 auto;
    order: 2;
    gap: 2px;
    padding: 3px;
  }

  .lang-button {
    min-width: 32px;
    min-height: 30px;
  }

  .menu-toggle {
    display: flex;
    flex: 0 0 auto;
    order: 3;
    width: 42px;
    height: 42px;
  }

  .nav-links {
    display: none;
  }

  .site-header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    order: 4;
    flex-basis: 100%;
    width: 100%;
    gap: 0;
    margin-top: 10px;
    padding-top: 4px;
    border-top: 1px solid var(--line);
    font-size: 16px;
  }

  .site-header.is-open .nav-links a {
    justify-content: flex-start;
    width: 100%;
    padding: 15px 6px;
    color: var(--ivory);
    border-bottom: 1px solid rgba(216, 207, 192, 0.12);
  }

  .site-header.is-open .nav-links a svg {
    color: var(--gold-soft);
  }

  .site-header.is-open .header-socials {
    justify-content: flex-start;
    gap: 1.4rem;
    padding: 16px 6px 6px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-gallery {
    min-height: 420px;
  }

  .gallery-main {
    inset: 0 0 48px 26px;
  }

  .stat-card {
    width: 142px;
    padding: 20px;
  }

  .glass-card {
    right: 0;
    max-width: 210px;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .ranking-grid,
  .ranking-grid.compact,
  .experience-list,
  .experience-grid,
  .concierge-copy,
  .service-grid,
  .feature-list,
  .photo-grid,
  .panorama-layout,
  .video-showcase.reel-showcase,
  .video-showcase.reel-showcase.reverse,
  .video-showcase.wide-showcase {
    grid-template-columns: 1fr;
  }

  .panorama-viewer {
    min-height: 420px;
  }

  .photo-grid {
    grid-auto-rows: 240px;
  }

  .photo-card.large,
  .photo-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .video-copy {
    padding: 22px 16px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .guide-tab {
    flex: 1 1 100%;
  }

  .video-card.reel {
    width: min(100%, 290px);
  }

  .panorama-viewer {
    min-height: 340px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 54px;
    font-size: 34px;
  }

  .rank-card,
  .wide-card {
    min-height: auto;
  }
}

/* Blossom Carousel Gallery Styles */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gallery-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.gallery-tab.is-active {
  background: var(--text-light);
  color: var(--bg-dark);
  font-weight: 500;
}

.carousel-container {
  position: relative;
  width: 100%;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(12, 11, 9, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-nav-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-nav-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-50%) scale(1.1);
  border-color: var(--gold);
}

.carousel-nav-btn.prev { left: -26px; }
.carousel-nav-btn.next { right: -26px; }

blossom-carousel {
  display: flex;
  width: 100%;
  height: 70vh;
  border-radius: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  background: transparent;
  scrollbar-width: none;
  gap: 2rem;
  padding: 2rem 5vw;
}

blossom-carousel::-webkit-scrollbar {
  display: none;
}

blossom-slide {
  flex: 0 0 340px;
  height: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

blossom-slide.is-snapped {
  box-shadow: 0 20px 50px rgba(234, 215, 167, 0.15);
}

blossom-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  border-radius: inherit;
  animation: ken-burns 15s ease-in-out infinite alternate;
}

@supports (animation-timeline: view(inline)) {
  blossom-slide {
    animation: blossom-snap linear both;
    animation-timeline: view(inline);
  }
  @keyframes blossom-snap {
    0% { transform: scale(0.85); opacity: 0.5; }
    40%, 60% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.85); opacity: 0.5; }
  }
}

@media (max-width: 768px) {
  blossom-carousel {
    padding: 2rem 12.5vw;
  }
  blossom-slide {
    flex: 0 0 75vw;
  }
  .carousel-nav-btn.prev { left: 10px; }
  .carousel-nav-btn.next { right: 10px; }
}

/* Accordion Styles */
.accordion-section {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion {
  border: 1px solid rgba(234, 215, 167, 0.2);
  border-radius: var(--radius);
  background: rgba(12, 11, 9, 0.4);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: background 0.3s ease;
}

.accordion:hover {
  background: rgba(12, 11, 9, 0.6);
}

.accordion summary {
  padding: 1.25rem 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  color: var(--gold-soft);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.accordion summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold-soft);
  transition: transform 0.3s ease;
}

.accordion[open] summary::after {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--stone);
  line-height: 1.6;
}

.accordion-content h4 {
  color: var(--ivory);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.accordion-content ul {
  padding-left: 1.2rem;
}

/* ==========================================================================
   Carrusel de videos (blossom)
   ========================================================================== */
.video-carousels blossom-carousel {
  height: auto;
  padding: 1.5rem clamp(1rem, 3vw, 2.5rem);
  gap: 1.5rem;
  align-items: stretch;
}

.video-carousels blossom-slide {
  flex: 0 0 calc((100% - 3rem) / 3);
  height: auto;
  aspect-ratio: 9 / 16;
  max-height: 70vh;
  background: #000;
  scroll-snap-align: center;
  scroll-snap-stop: normal;
  /* Videos uniformes: sin el efecto cover-flow (encoger/atenuar) que los descentraba */
  animation: none;
  opacity: 1;
  transform: none;
  border: 1px solid rgba(234, 215, 167, 0.18);
}

.video-carousels blossom-slide.is-snapped {
  border-color: rgba(234, 215, 167, 0.45);
}

.video-carousels blossom-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  background: #000;
}

@media (max-width: 980px) {
  .video-carousels blossom-slide {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 600px) {
  .video-carousels blossom-slide {
    flex: 0 0 80vw;
  }
}

/* ==========================================================================
   Planes en Bucaramanga
   ========================================================================== */
.planes-section {
  max-width: 1360px;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(12, 11, 9, 0.42);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 215, 167, 0.5);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
}

.plan-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.plan-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms ease;
}

.plan-card:hover .plan-media img {
  transform: scale(1.07);
}

.plan-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(12, 11, 9, 0.7));
}

.plan-stop {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(234, 215, 167, 0.5);
  background: rgba(12, 11, 9, 0.6);
  backdrop-filter: blur(10px);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.plan-body h3 {
  color: var(--ivory);
}

.plan-body p {
  font-size: 14px;
}

.plan-body small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.plan-actions {
  margin-top: auto;
  padding-top: 18px;
}

.plan-actions a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border: 1px solid rgba(234, 215, 167, 0.32);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease;
}

.plan-actions a:hover {
  border-color: rgba(234, 215, 167, 0.7);
  background: rgba(234, 215, 167, 0.12);
}

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

@media (max-width: 620px) {
  .plan-route {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Footer SEO
   ========================================================================== */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  max-width: 760px;
  margin: 0 auto;
}

.footer-nav a {
  color: var(--stone);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.footer-seo {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

