:root {
  --bg: #f6f3ed;
  --surface: rgba(255,255,255,0.86);
  --surface-strong: rgba(255,255,255,0.94);
  --green: #1c2d22;
  --green-soft: #2a3c2f;
  --gold: #b88b4a;
  --text: #2e2b27;
  --muted: #6f675f;
  --line: rgba(28,45,34,0.10);
  --shadow: 0 22px 60px rgba(0,0,0,0.14);
  --radius: 26px;
  --max: 1240px;
}

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

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    linear-gradient(rgba(246,243,237,0.60), rgba(246,243,237,0.92)),
    url('images/panorama.jpg') center top / cover fixed no-repeat;
}

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

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, #193023, #2b4738);
  color: #fff;
}

.topbar-inner {
  padding: 11px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar-badges,
.topbar-contact {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-badges span,
.topbar-contact a:last-child {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(249,247,243,0.70);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28,45,34,0.08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.12));
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 500;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(28,45,34,0.12);
  background: rgba(255,255,255,0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
  transition: .25s ease;
}

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

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

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

.sticky-booking-bar {
  position: sticky;
  top: 82px;
  z-index: 110;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.sticky-booking-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-booking-inner > span {
  font-weight: 700;
  color: var(--green);
}

.sticky-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.sticky-actions a {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(28,45,34,0.06);
  border: 1px solid rgba(28,45,34,0.08);
  font-weight: 600;
}

.sticky-actions .sticky-cta {
  background: var(--green);
  color: white;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomHero 18s ease-in-out infinite alternate;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,17,0.76), rgba(17,24,17,0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0 68px;
  text-align: center;
}

.hero-logo {
  width: min(290px, 62vw);
  margin: 0 auto 24px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.hero-box {
  max-width: 760px;
  margin: 0 auto 26px;
  padding: 26px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  backdrop-filter: blur(10px);
}

.hero-box h1 {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.96;
  color: #fff;
}

.hero-box p {
  margin: 0;
  color: rgba(255,255,255,0.94);
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.25s ease;
}

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

.btn.primary:hover {
  background: #132118;
}

.btn.secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.24);
  backdrop-filter: blur(6px);
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.hero-cards img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.20);
}

.section {
  padding: 90px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  margin: 0 0 16px;
  color: var(--green);
}

.section-title.light {
  color: #fff;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.light-text {
  color: rgba(255,255,255,0.90);
}

.two-col {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(184,139,74,0.12);
  border: 1px solid rgba(184,139,74,0.15);
}

.stat strong {
  display: block;
  font-size: 1.65rem;
  color: var(--green);
}

.image-card {
  background: var(--surface-strong);
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 22px;
}

.section-header {
  margin-bottom: 24px;
}

.gallery-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 15px;
}

.gallery-premium .item {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-premium .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-premium .item:hover img {
  transform: scale(1.05);
}

.gallery-premium .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,18,15,0.52), rgba(15,18,15,0.06));
}

.gallery-premium .caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-weight: 600;
}

.big { grid-column: span 2; grid-row: span 2; }
.tall { grid-row: span 2; }
.wide { grid-column: span 2; }

.chalet-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chalet-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.chalet-copy {
  padding: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(28,45,34,0.10);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.review-card span {
  display: block;
  margin-top: 10px;
  color: #6f675f;
  font-size: 0.95rem;
}

.faq-wrap {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(28,45,34,0.10);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.faq-item h3 {
  margin: 0 0 10px;
  color: var(--green);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.access-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.booking-section {
  padding-top: 30px;
}

.booking-shell {
  background: linear-gradient(135deg, rgba(28,45,34,0.96), rgba(20,31,22,0.94)), url('images/booking-bg.jpg') center/cover no-repeat;
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.booking-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 42%);
}

.booking-copy,
.calendar {
  position: relative;
  z-index: 2;
}

.calendar {
  margin-top: 24px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 22px;
  backdrop-filter: blur(8px);
  color: #fff;
}

.calendar h3,
.calendar p,
.calendar a {
  color: #fff;
}

.calendar-box {
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 14px;
  margin: 14px 0 16px;
}

.site-footer {
  padding: 56px 0 30px;
}

.footer-premium {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,255,255,0.64));
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.footer-main {
  max-width: 360px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 12px;
}

.footer-lead {
  color: var(--muted);
}

.footer-bottom {
  padding: 16px 4px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.close {
  position: absolute;
  top: 26px;
  right: 34px;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

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

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
  z-index: 1000;
  animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@media (max-width: 1100px) {
  .footer-premium {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .two-col,
  .chalet-band,
  .access-grid,
  .stats,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-premium {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .big,
  .wide,
  .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-cards {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    padding: 12px 0;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px 0;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
  }

  .sticky-booking-bar {
    top: 82px;
  }
}

@media (max-width: 640px) {
  .hero-cards,
  .gallery-premium,
  .footer-premium {
    grid-template-columns: 1fr;
  }

  .hero-cards img {
    height: 180px;
  }

  .topbar-inner {
    font-size: 0.9rem;
  }

  .logo {
    height: 50px;
  }

  .sticky-booking-inner {
    justify-content: center;
  }

  .sticky-booking-inner > span {
    width: 100%;
    text-align: center;
  }

  .sticky-actions {
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
