/* Hotel BLH — Bucaramanga Loft Hotel */
:root {
  --green: #3d9a52;
  --green-deep: #2d7340;
  --green-glow: #5cbf72;
  --green-mist: #eef6f0;
  --ink: #121816;
  --ink-soft: #2a3530;
  --muted: #5c6b64;
  --line: rgba(18, 24, 22, 0.1);
  --sand: #f3f1ec;
  --sand-deep: #e8e4db;
  --forest: #0f1f17;
  --forest-mid: #163022;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(15, 31, 23, 0.1);
  --shadow-lg: 0 28px 70px rgba(15, 31, 23, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 80px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--sand);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.scrolled,
.header--inner {
  background: rgba(15, 31, 23, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav { display: flex; align-items: center; gap: 1.75rem; }

.nav__list {
  display: flex;
  gap: 1.5rem;
}

.nav__link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--green-glow);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active { color: var(--white); }

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition);
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(61, 154, 82, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
  margin-top: 1.5rem;
}

.btn--dark:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green-deep);
}

.btn--whatsapp {
  background: #22c55e;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(34, 197, 94, 0.4);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

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

.menu-toggle.active span:nth-child(2) { opacity: 0; }

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

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: var(--white);
  overflow: hidden;
  padding: 0 0 12vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero-hd.jpg') center/cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 14s ease-out forwards;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 22, 16, 0.82) 0%, rgba(10, 22, 16, 0.45) 48%, rgba(10, 22, 16, 0.25) 100%),
    linear-gradient(to top, rgba(10, 22, 16, 0.75) 0%, transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1160px, 92vw);
  margin: 0 auto;
  max-width: 640px;
  padding: 0;
  animation: fadeUp 1.1s var(--transition) both;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.hero__title {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.01em;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 18ch;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  max-width: 36ch;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: max(4vw, calc((100vw - 1160px) / 2));
  z-index: 2;
  width: 28px;
  height: 48px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll-line {
  width: 2px;
  height: 10px;
  background: var(--green-glow);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

/* ─── SECTIONS ─── */
section { padding: 6.5rem 0; }

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.25rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--green-deep);
}

.section-desc {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── ABOUT ─── */
.about {
  background:
    radial-gradient(ellipse at 10% 20%, rgba(61, 154, 82, 0.08), transparent 50%),
    var(--sand);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 31, 23, 0.2), transparent 40%);
  pointer-events: none;
}

.about__image img,
.about__image video {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about__video {
  background: #0f1f17;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.25rem;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ─── ICON SYSTEM ─── */
.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.icon-wrap--sm,
.icon-wrap--md {
  border-radius: 50%;
  background: rgba(61, 154, 82, 0.1);
  border: 1px solid rgba(61, 154, 82, 0.18);
  color: var(--green-deep);
}

.icon-wrap--sm { width: 32px; height: 32px; }
.icon-wrap--md { width: 44px; height: 44px; }

.icon-wrap--pill {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-mist);
  color: var(--green-deep);
}

.icon {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
}

.icon-wrap--sm .icon {
  width: 15px;
  height: 15px;
  max-width: 15px;
  max-height: 15px;
}

.icon-wrap--md .icon {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
}

.meta-chip .icon-wrap--sm {
  background: rgba(92, 191, 114, 0.18);
  border-color: rgba(92, 191, 114, 0.3);
  color: var(--green-glow);
  width: 28px;
  height: 28px;
}

.meta-chip .icon-wrap--sm .icon {
  width: 14px;
  height: 14px;
}

/* ─── SERVICES ─── */
.services {
  background:
    linear-gradient(180deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: var(--white);
  padding: 2.25rem 0;
}

.services .section-header {
  margin-bottom: 1.25rem;
}

.services .section-header--compact .section-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 0;
}

.services .section-tag {
  margin-bottom: 0.45rem;
}

.services .section-title { color: var(--white); }
.services .section-tag { color: var(--green-glow); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem 1rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0;
  border-bottom: none;
  transition: transform var(--transition);
}

.service-item:hover { transform: translateX(2px); }

.service-item__icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  max-width: 30px;
  max-height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  color: var(--green-glow);
  background: rgba(92, 191, 114, 0.1);
  border: 1px solid rgba(92, 191, 114, 0.22);
}

.service-item__icon svg,
.service-item__icon .icon {
  display: block;
  flex-shrink: 0;
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  fill: none !important;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item__name {
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
}

/* ─── ROOMS ─── */
.rooms {
  background:
    radial-gradient(ellipse at 90% 0%, rgba(61, 154, 82, 0.07), transparent 45%),
    var(--sand);
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.room-card {
  background: var(--white);
  border: 1px solid rgba(18, 24, 22, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(15, 31, 23, 0.08);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(15, 31, 23, 0.14);
  border-color: rgba(61, 154, 82, 0.25);
}

.room-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16/10;
}

.room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.room-card__guests {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 31, 23, 0.72);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

.room-card__body { padding: 1.1rem 1.15rem 1.2rem; }

.room-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.room-card__title a:hover { color: var(--green-deep); }

.room-card__desc {
  font-size: 0.88rem;
  font-weight: 350;
  color: var(--muted);
  margin-bottom: 0.95rem;
  line-height: 1.55;
}

.room-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.85rem;
}

.room-card__price-amount {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--green-deep);
}

.room-card__price-amount--consult,
.room-booking__price-amount--consult {
  font-size: 1.2rem;
  color: var(--ink-soft);
}

.room-card__price-night {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
}

.rooms .btn--ghost {
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
  min-width: 98px;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.rooms .btn--ghost:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(61, 154, 82, 0.28);
}

/* ─── ROOM DETAIL PAGE ─── */
.room-hero {
  position: relative;
  height: 58vh;
  min-height: 380px;
  margin-top: var(--header-h);
  overflow: hidden;
}

.room-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

.room-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 16, 0.88) 0%, rgba(10, 22, 16, 0.25) 55%);
}

.room-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 0;
  color: var(--white);
  z-index: 2;
}

.breadcrumb {
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
  opacity: 0.7;
}

.breadcrumb a:hover { color: var(--green-glow); }

.room-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.room-hero__meta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.room-detail {
  padding: 4.5rem 0 6rem;
  background: var(--sand);
}

.room-detail__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.room-detail__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.room-detail__gallery img:first-child {
  grid-row: span 2;
  height: 100%;
  object-fit: cover;
}

.room-detail__gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  transition: transform var(--transition), opacity var(--transition);
}

.room-detail__gallery img:hover {
  transform: scale(1.015);
  opacity: 0.94;
}

.room-detail__section { margin-bottom: 2.5rem; }

.room-detail__section h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}

.room-detail__amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.room-detail__amenity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.room-detail__amenity svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  color: var(--green);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.room-booking {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.room-booking__price {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.room-booking__price-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.room-booking__price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.2;
}

.room-booking__price-night {
  font-size: 0.9rem;
  color: var(--muted);
}

.room-booking__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.room-booking__info-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.room-booking__info-item span:first-child { color: var(--muted); }
.room-booking__info-item span:last-child { font-weight: 600; color: var(--ink); }

.room-booking .btn { width: 100%; padding: 1rem; font-size: 1rem; }

.room-booking__note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

.related-rooms {
  padding: 4.5rem 0;
  background: var(--sand-deep);
}

.related-rooms__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.related-room {
  display: block;
  overflow: hidden;
  transition: transform var(--transition);
}

.related-room:hover { transform: translateY(-4px); }

.related-room img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.related-room__body { padding: 0.9rem 0.1rem 0; }

.related-room__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.related-room__price {
  font-size: 0.85rem;
  color: var(--green-deep);
  font-weight: 600;
}

.footer--simple {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.65);
  padding: 2.5rem 0;
}

.footer--simple .footer__bottom {
  border: none;
  padding: 0;
}

/* ─── FACILITIES ─── */
.facilities {
  background: var(--white);
}

.facilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.facility {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
}

.facility img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.facility:hover img { transform: scale(1.06); }

.facility figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.75rem 1.4rem;
  background: linear-gradient(to top, rgba(10, 22, 16, 0.88), transparent);
  color: var(--white);
}

.facility h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.facility p {
  font-size: 0.88rem;
  font-weight: 300;
  opacity: 0.8;
  line-height: 1.5;
}

/* ─── ECO ─── */
.eco {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(61, 154, 82, 0.12), transparent 50%),
    var(--green-mist);
  overflow: hidden;
}

.eco__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eco__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.eco__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.eco__points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.eco__point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.eco__point-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.4;
  min-width: 2rem;
}

.eco__point strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.eco__point p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  margin: 0;
}

/* ─── BREAKFAST ─── */
.breakfast {
  background:
    linear-gradient(135deg, rgba(232, 228, 219, 0.6), transparent),
    var(--sand);
}

.breakfast__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.breakfast__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.breakfast__image img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background:
    radial-gradient(ellipse at center, rgba(61, 154, 82, 0.18) 0%, transparent 60%),
    var(--forest);
  padding: 5.5rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.85rem;
  position: relative;
  letter-spacing: -0.02em;
}

.cta-banner__desc {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.72;
  margin-bottom: 2rem;
  position: relative;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.68);
  padding-top: 0;
}

.footer__map {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  filter: grayscale(40%) contrast(1.05);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer__brand img {
  height: 56px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 0.55rem;
  transition: color var(--transition);
}

.footer__link:hover,
.footer__link--accent { color: var(--green-glow); }

.footer__link--accent { margin-top: 1rem; }

.footer__social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.footer__social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.footer__social a .icon { width: 18px; height: 18px; }

.footer__social a [data-icon],
.whatsapp-float [data-icon] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 300;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseWa 2.8s ease-in-out infinite;
}

.whatsapp-float .icon {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.55);
  animation: none;
}

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

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

@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.4; transform: translateY(12px); }
}

@keyframes pulseWa {
  0%, 100% { box-shadow: 0 8px 24px rgba(34, 197, 94, 0.45); }
  50% { box-shadow: 0 8px 28px rgba(34, 197, 94, 0.65), 0 0 0 10px rgba(34, 197, 94, 0.12); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

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

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 14, 11, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.lightbox__caption {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-align: center;
  max-width: 80vw;
}

.lightbox__counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background var(--transition);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ─── RESPONSIVE ─── */
@media (min-width: 1025px) {
  .about__image {
    max-width: 90%;
    margin-left: auto;
  }
}

@media (max-width: 1024px) {
  .about__grid,
  .eco__grid,
  .breakfast__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .facilities__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .related-rooms__grid { grid-template-columns: 1fr 1fr; }
  .hero { align-items: center; padding-bottom: 0; text-align: left; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  section { padding: 4.25rem 0; }

  .nav__list {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(15, 31, 23, 0.98);
    flex-direction: column;
    padding: 1.75rem 1.5rem 2rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__list.open { display: flex; }

  .nav .btn--primary { display: none; }
  .menu-toggle { display: flex; }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 18vh;
  }

  .hero__brand { margin-bottom: 0.85rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }

  .about__features { grid-template-columns: 1fr; }
  .facilities__grid { grid-template-columns: 1fr; }
  .rooms__grid { grid-template-columns: 1fr; }
  .services { padding: 1.75rem 0; }
  .services .section-header { margin-bottom: 0.9rem; }
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem 0.55rem;
  }
  .service-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 0.4rem;
    padding: 0.25rem 0;
  }
  .service-item__icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    max-width: 26px;
    max-height: 26px;
  }
  .service-item__icon svg,
  .service-item__icon .icon {
    width: 13px !important;
    height: 13px !important;
    max-width: 13px !important;
    max-height: 13px !important;
  }
  .service-item__name {
    font-size: 0.68rem;
    line-height: 1.15;
  }
  .room-detail__grid { grid-template-columns: 1fr; }
  .room-detail__gallery { grid-template-columns: 1fr; }
  .room-detail__gallery img:first-child { grid-row: auto; }
  .room-booking { position: static; }
  .room-detail__amenities { grid-template-columns: 1fr; }
  .related-rooms__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .lightbox__prev { left: 0.75rem; }
  .lightbox__next { right: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}
