@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
  --navy: #0b1a30;
  --red: #c2392a;
  --red-dark: #a82e22;
  --slate: #334155;
  --muted: #64748b;
  --light: #f7f8fa;
  --border: #edf0f4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); overflow-x: hidden; background: #fff; color: var(--slate); }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: var(--sans); }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-d1 { transition-delay: 0.08s; }
.fade-d2 { transition-delay: 0.16s; }
.fade-d3 { transition-delay: 0.24s; }
.fade-d4 { transition-delay: 0.32s; }
.fade-d5 { transition-delay: 0.4s; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,16,32,0.25); backdrop-filter: blur(14px);
  transition: all 0.4s;
}
.navbar.scrolled {
  background: rgba(8,16,32,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-logo {
  cursor: pointer; display: flex; align-items: center; gap: 6;
  background: none; border: none;
}
.nav-logo .ski { font-family: var(--serif); font-size: 23px; font-weight: 700; color: #fff; letter-spacing: 1.5px; }
.nav-logo .in { font-family: var(--serif); font-size: 12px; color: rgba(255,255,255,0.4); font-style: italic; }
.nav-logo .chile { font-family: var(--serif); font-size: 23px; font-weight: 700; color: var(--red); letter-spacing: 1.5px; }
.nav-logo .rental { font-size: 9.5px; color: rgba(255,255,255,0.3); letter-spacing: 4px; text-transform: uppercase; margin-left: 4px; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-link {
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; font-weight: 400; transition: color 0.3s;
  padding: 4px 0; border-bottom: 1px solid transparent;
}
.nav-link.active { color: #fff; font-weight: 600; border-bottom-color: var(--red); }
.nav-link:hover { color: #fff; }

.mob-toggle {
  display: none; background: none; border: none;
  color: #fff; font-size: 22px; cursor: pointer; padding: 8px;
}
.mob-menu {
  display: none; background: rgba(8,16,32,0.98);
  padding: 12px 28px 20px; flex-direction: column; gap: 10px;
}
.mob-menu.open { display: flex; }
.mob-link {
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; text-align: left; padding: 8px 0; font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mob-link.active { color: #fff; font-weight: 600; }

/* ─── LANG BAR ─── */
.lang-bar {
  position: fixed; top: 76px; right: 28px; z-index: 99;
  display: flex; gap: 4px; background: rgba(8,16,32,0.88);
  backdrop-filter: blur(12px); border-radius: 8px;
  padding: 5px 6px; border: 1px solid rgba(255,255,255,0.07);
}
.lang-btn {
  background: transparent; border: 1px solid transparent;
  border-radius: 6px; padding: 5px 10px; cursor: pointer;
  transition: all 0.3s; color: rgba(255,255,255,0.45);
  font-weight: 500; display: flex; align-items: center; gap: 5;
  font-size: 10px; letter-spacing: 1px;
}
.lang-btn.active {
  background: rgba(194,57,42,0.2);
  border-color: rgba(194,57,42,0.5);
  color: #fff;
}
.lang-btn .flag { font-size: 15px; }

/* ─── PAGE SECTIONS ─── */
.page { display: none; }
.page.active { display: block; }

/* Hero */
.hero-section {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('img/skier.jpg') center/cover; opacity: 0.4;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,16,32,0.65) 0%, rgba(8,16,32,0.25) 40%, rgba(8,16,32,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 1280px;
  margin: 0 auto; padding: 150px 28px 100px; width: 100%;
}
.hero-content h1 {
  font-family: var(--serif); font-size: clamp(40px,5.8vw,72px);
  color: #fff; line-height: 1.06; margin-bottom: 28px;
  font-weight: 700; max-width: 680;
}
.hero-content p {
  font-size: clamp(13px,1.5vw,16px); color: rgba(255,255,255,0.65);
  line-height: 1.8; margin-bottom: 44px; max-width: 520; font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  background: var(--red); color: #fff; padding: 14px 34px;
  border-radius: 2px; font-size: 11.5px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 10px; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  background: transparent; color: #fff; padding: 14px 34px;
  border-radius: 2px; border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer; font-size: 11.5px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 400; transition: all 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.35); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff; padding: 11px 24px;
  border-radius: 2px; font-size: 10.5px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500;
}

/* Stats */
.stats-bar {
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.05);
}
.stats-inner {
  max-width: 1000px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 34px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.stat-item:last-child { border-right: none; }
.stat-val { font-family: var(--serif); font-size: 34px; color: var(--red); font-weight: 700; margin-bottom: 4px; }
.stat-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); }

/* Section containers */
.section-white { padding: 96px 28px; background: #fff; }
.section-light { padding: 80px 28px; background: var(--light); }
.section-dark { padding: 76px 28px; background: var(--navy); text-align: center; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-narrow { max-width: 860px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--serif); font-size: clamp(28px,3.5vw,44px); color: var(--navy); margin-bottom: 14px; }
.section-header p { font-size: 14px; color: var(--muted); max-width: 480px; margin: 0 auto; line-height: 1.7; font-weight: 300; }

/* Why us cards */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.why-card {
  padding: 32px 28px; border-radius: 3px; border: 1px solid var(--border);
  transition: all 0.4s; cursor: default;
}
.why-card:hover { border-color: var(--red); box-shadow: 0 10px 36px rgba(10,20,40,0.05); }
.why-card .accent { width: 28px; height: 1px; background: var(--red); margin-bottom: 18px; }
.why-card h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* Gallery */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  max-width: 1200px; margin: 0 auto;
}
.gallery-item {
  border-radius: 4px; overflow: hidden; aspect-ratio: 4/5;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.04); }

/* CTA dark section */
.cta-dark h2 { font-family: var(--serif); font-size: clamp(28px,3.5vw,42px); color: #fff; margin-bottom: 16px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-dark p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; font-weight: 300; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 168px 28px 76px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,16,32,0.9), rgba(8,16,32,0.7));
}
.page-hero h1 {
  position: relative; z-index: 2;
  font-family: var(--serif); font-size: clamp(32px,4.5vw,54px); color: #fff; margin-bottom: 14px;
}
.page-hero p {
  position: relative; z-index: 2;
  font-size: 13.5px; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto; line-height: 1.7; font-weight: 300;
}

/* ─── RENTAL ─── */
.price-section h2 {
  font-family: var(--serif); font-size: 26px; color: var(--navy);
  margin-bottom: 6px; padding-left: 16px; border-left: 3px solid var(--red);
}
.price-divider { height: 1px; background: var(--border); margin: 18px 0 28px; }
.price-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px; font-weight: 500;
}
.price-table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 460px; margin-bottom: 36px; }
.price-table thead th {
  padding: 13px 16px; text-align: center; font-weight: 500;
  font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: #fff; background: var(--navy); border-bottom: 2px solid var(--red);
}
.price-table thead th:first-child { text-align: left; }
.price-table tbody td {
  padding: 13px 16px; text-align: center;
  color: #475569; font-weight: 400; font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.price-table tbody td:first-child { text-align: left; color: #1e293b; font-weight: 500; }
.price-table tbody tr:nth-child(even) td { background: #fafbfc; }

.rental-photos { display: flex; gap: 10px; margin: 32px 0; flex-wrap: wrap; justify-content: center; }
.rental-photo { width: 200px; height: 150px; border-radius: 3px; overflow: hidden; }
.rental-photo img { width: 100%; height: 100%; object-fit: cover; }

.premium-photos { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.premium-photo { width: 150px; height: 190px; border-radius: 3px; overflow: hidden; }
.premium-photo img { width: 100%; height: 100%; object-fit: cover; }

.price-note {
  margin-top: 44px; padding: 24px; background: var(--light);
  border-radius: 3px; text-align: center; border: 1px solid var(--border);
  font-size: 12.5px; color: var(--muted); line-height: 1.7;
}

/* ─── LOCATION ─── */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 36px; }
.map-link { display: block; border-radius: 4px; overflow: hidden; box-shadow: 0 6px 28px rgba(10,20,40,0.1); margin-bottom: 22px; transition: transform 0.3s; }
.map-link:hover { transform: translateY(-3px); }
.map-link img { width: 100%; }
.loc-info { padding: 24px 22px; background: var(--light); border-radius: 4px; border: 1px solid var(--border); }
.loc-info-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.loc-info-row p { font-size: 13.5px; color: #475569; }
.loc-info-row p.bold { color: #1e293b; font-weight: 500; line-height: 1.6; }

.store-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.store-photo { border-radius: 3px; overflow: hidden; }
.store-photo.tall { height: 200px; }
.store-photo.short { height: 160px; }
.store-photo img { width: 100%; height: 100%; object-fit: cover; }

.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 28px; max-width: 880px; margin: 0 auto; }
.how-step { text-align: center; }
.how-num { font-family: var(--serif); font-size: 38px; color: var(--red); font-weight: 700; margin-bottom: 10px; opacity: 0.75; }
.how-step h3 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 6px; letter-spacing: 1.5px; text-transform: uppercase; }
.how-step p { font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 300; }

.info-item {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px;
  padding: 14px 18px; background: var(--light); border-radius: 3px; border: 1px solid var(--border);
}
.info-item p { font-size: 13.5px; color: #475569; line-height: 1.6; }

/* ─── ABOUT ─── */
.about-rating {
  padding: 28px; background: var(--navy); border-radius: 3px;
  text-align: center; margin-bottom: 40px;
}
.about-rating p { font-size: 16px; color: #fff; font-weight: 500; margin-top: 10px; }
.about-text p { font-size: 15px; color: var(--slate); line-height: 1.9; margin-bottom: 18px; font-weight: 300; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; max-width: 960px; margin: 0 auto; }
.value-card { padding: 28px 24px; background: #fff; border-radius: 3px; border: 1px solid var(--border); }
.value-card .accent { width: 24px; height: 1.5px; background: var(--red); margin-bottom: 16px; }
.value-card h3 { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 12.5px; color: var(--muted); line-height: 1.75; font-weight: 300; }

.about-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  max-width: 1200px; margin: 0 auto;
}
.about-gallery-item { border-radius: 3px; overflow: hidden; aspect-ratio: 3/4; }
.about-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.about-gallery-item:hover img { transform: scale(1.03); }

/* ─── FOOTER ─── */
.footer { background: #060d1a; padding: 60px 28px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 36px; margin-bottom: 44px; }
.footer-logo { display: flex; align-items: center; gap: 5px; margin-bottom: 14px; }
.footer h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px; font-weight: 500; }
.footer p, .footer span { font-size: 12.5px; color: rgba(255,255,255,0.5); }
.footer .tagline { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; font-weight: 300; max-width: 250px; }
.footer-link { display: block; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 12.5px; cursor: pointer; padding: 4px 0; transition: color 0.3s; text-align: left; }
.footer-link:hover { color: #fff; }
.footer-row { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; }
.footer-wa { color: var(--red); font-weight: 500; }
.footer-social { display: flex; gap: 8px; }
.footer-social span {
  font-size: 10.5px; color: rgba(255,255,255,0.4);
  padding: 4px 10px; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px; cursor: pointer; transition: all 0.3s;
}
.footer-social span:hover { border-color: rgba(194,57,42,0.4); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px; text-align: center;
}
.footer-bottom p { font-size: 10.5px; color: rgba(255,255,255,0.18); letter-spacing: 0.5px; }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 99;
  width: 52px; height: 52px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 14px rgba(37,211,102,0.35); transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.08); }

/* SVG icon helper */
.icon { display: inline-flex; vertical-align: middle; }
.icon svg { width: 100%; height: 100%; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .mob-toggle { display: block !important; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-gallery { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .lang-bar { top: 74px; right: 16px; }
  .hero-content { padding: 130px 20px 80px; }
}
