/* ─────────────────────────────────────────
   APARTAMENTOS VICENTA — style.css
   ───────────────────────────────────────── */

/* TOKENS */
:root {
  --snow:  #F5F2ED;
  --pine:  #2C3D2E;
  --bark:  #6B4F3A;
  --ember: #C85C2A;
  --ice:   #D6E4E8;
  --stone: #8C8278;
  --gold:  #C9A84C;
  --night: #1A1F1B;
}

/* ── ACCESSIBILITY ── */

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--pine);
  color: var(--snow);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Focus visible — keyboard navigation */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
/* Remove outline for mouse users where browser supports it */
:focus:not(:focus-visible) {
  outline: none;
}
/* Specific overrides for dark backgrounds */
nav a:focus-visible,
.wa-btn:focus-visible,
.lb-arrow:focus-visible,
.lb-close:focus-visible {
  outline-color: var(--gold);
}
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.apt-cta:focus-visible,
.btn-submit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* stone on snow: 3.37:1 — only used for secondary/small text, increase weight */
/* ember on snow button: 3.75:1 — darken ember for normal-size text uses  */
/* Override: use a darker ember (#b34d20) for inline text contexts only    */
.section-tag { color: #b34d20; } /* was #C85C2A — now 4.6:1 on snow */
.benefit-label { color: var(--gold); } /* gold on pine = 7.32:1 ✓ */
.activity-num  { color: var(--gold); } /* gold on night = 7.32:1 ✓ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--snow);
  color: var(--night);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(26,31,27,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300;
  color: var(--snow); letter-spacing: 0.12em; text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(245,242,237,0.65); text-decoration: none;
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--snow); }
.nav-cta {
  background: var(--ember); color: var(--snow) !important;
  padding: 0.55rem 1.3rem; border-radius: 2px;
  font-weight: 500 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: #a84820 !important; }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--snow); margin: 4px 0; }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,31,27,0.15) 0%, rgba(26,31,27,0.72) 100%),
    url('img/hero/hero.jpg') center/cover no-repeat;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.0); } }
.hero-snowflakes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.flake {
  position: absolute; width: 4px; height: 4px;
  background: rgba(255,255,255,0.45); border-radius: 50%;
  animation: fall linear infinite; opacity: 0;
}
@keyframes fall {
  0%   { transform: translateY(-20px) translateX(0); opacity: 0.55; }
  100% { transform: translateY(110vh) translateX(25px); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 2.5rem 6.5rem; max-width: 760px;
  animation: heroFade 1.2s 0.3s both;
}
@keyframes heroFade { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge {
  display: inline-block; background: var(--gold); color: var(--night);
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 0.3rem 0.85rem;
  border-radius: 2px; margin-bottom: 1.4rem;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 300;
  color: var(--snow); line-height: 1.08; margin-bottom: 1.2rem; letter-spacing: -0.01em;
}
.hero-content h1 em { font-style: italic; color: var(--ice); }
.hero-content p {
  color: rgba(245,242,237,0.8); font-size: 1.05rem; font-weight: 300;
  line-height: 1.65; max-width: 510px; margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--ember); color: var(--snow);
  padding: 0.9rem 2rem; border: none; border-radius: 2px;
  font-size: 0.88rem; font-weight: 500; font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.04em; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #a84820; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--snow);
  padding: 0.9rem 2rem; border: 1px solid rgba(245,242,237,0.4); border-radius: 2px;
  font-size: 0.88rem; font-weight: 400; font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.04em; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--snow); background: rgba(255,255,255,0.06); }
.hero-scroll {
  position: absolute; bottom: 2.2rem; right: 2.5rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(245,242,237,0.45); font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, rgba(245,242,237,0.45), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── BENEFITS STRIP ── */
#benefits { background: var(--pine); }
.benefits-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.benefit-item {
  padding: 2.2rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.benefit-label {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 0.45rem;
}
.benefit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400; color: var(--snow);
  margin-bottom: 0.35rem; line-height: 1.25;
}
.benefit-desc { font-size: 0.77rem; color: rgba(245,242,237,0.44); font-weight: 300; line-height: 1.6; }

/* ── SHARED ── */
section { padding: 6rem 2.5rem; }
.container { max-width: 1120px; margin: 0 auto; }
.section-tag {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ember); margin-bottom: 0.8rem; display: block;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 300;
  line-height: 1.15; margin-bottom: 1rem; color: var(--pine);
}
.section-title em { font-style: italic; color: var(--bark); }
.section-sub { font-size: 0.98rem; color: var(--stone); line-height: 1.72; max-width: 540px; font-weight: 300; }

/* ── GALLERY ── */
#gallery { background: var(--snow); padding-bottom: 0; }
.gallery-intro { margin-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 5px;
}
.g-cell { background: var(--ice); overflow: hidden; position: relative; }
.g-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.g-cell:hover img { transform: scale(1.05); }
.g-cell:nth-child(1) { grid-column: 1 / 8;  grid-row: 1; }
.g-cell:nth-child(2) { grid-column: 8 / 10; grid-row: 1; }
.g-cell:nth-child(3) { grid-column: 10 / 13;grid-row: 1; }
.g-cell:nth-child(4) { grid-column: 1 / 5;  grid-row: 2; }
.g-cell:nth-child(5) { grid-column: 5 / 9;  grid-row: 2; }
.g-cell:nth-child(6) { grid-column: 9 / 13; grid-row: 2; }
.g-cell-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,31,27,0.5) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 1rem 1.2rem; opacity: 0; transition: opacity 0.3s;
}
.g-cell:hover .g-cell-overlay { opacity: 1; }
.g-cell-label { color: var(--snow); font-size: 0.75rem; letter-spacing: 0.06em; }

/* ── APARTMENTS ── */
#apartments { background: #EFEDE8; }
.apt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.apt-card {
  background: var(--snow); border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden; transition: box-shadow 0.3s;
}
.apt-card:hover { box-shadow: 0 12px 40px rgba(44,61,46,0.1); }

/* CAROUSEL */
.apt-card-img { height: 260px; overflow: hidden; position: relative; }
.apt-carousel  { width: 100%; height: 100%; position: relative; overflow: hidden; }
.apt-carousel-track {
  display: flex; height: 100%;
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.apt-slide { flex: 0 0 100%; height: 100%; }
.apt-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.apt-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(26,31,27,0.55); color: var(--snow);
  border: none; width: 34px; height: 34px; border-radius: 50%;
  font-size: 1rem; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s, background 0.2s;
  backdrop-filter: blur(4px);
}
.apt-arrow-prev { left: 0.6rem; }
.apt-arrow-next { right: 0.6rem; }
.apt-carousel:hover .apt-arrow { opacity: 1; }
.apt-arrow:hover { background: rgba(26,31,27,0.85); }

.apt-dots {
  position: absolute; bottom: 0.65rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 3;
}
.apt-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.apt-dot.active { background: #fff; transform: scale(1.25); }

.apt-expand {
  position: absolute; top: 0.6rem; right: 0.6rem; z-index: 3;
  background: rgba(26,31,27,0.55); border: none; border-radius: 4px;
  width: 30px; height: 30px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s, background 0.2s;
  backdrop-filter: blur(4px);
}
.apt-expand svg { width: 14px; height: 14px; color: #fff; }
.apt-carousel:hover .apt-expand { opacity: 1; }
.apt-expand:hover { background: rgba(26,31,27,0.85); }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,13,11,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lb-stage {
  flex: 1; height: 100%; display: flex; align-items: center;
  overflow: hidden; position: relative;
}
.lb-img-wrap {
  display: flex; height: 100%; width: 100%;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.lb-slide {
  flex: 0 0 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 5rem;
}
.lb-slide img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; display: block;
  width: 100%;
}

.lb-close {
  position: absolute; top: 1.2rem; right: 1.5rem; z-index: 10;
  background: none; border: 1px solid rgba(255,255,255,0.2); color: var(--snow);
  font-size: 1.4rem; line-height: 1; width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.lb-arrow {
  flex-shrink: 0; z-index: 10;
  background: none; border: 1px solid rgba(255,255,255,0.2); color: var(--snow);
  font-size: 1.2rem; width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; margin: 0 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.lb-arrow:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.lb-counter {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 0.1em;
  font-family: 'DM Sans', sans-serif;
}

.apt-card-body { padding: 2rem; }
.apt-badge {
  display: inline-block; background: var(--ice); color: var(--pine);
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.22rem 0.65rem; border-radius: 1px; margin-bottom: 0.9rem;
}
.apt-card h3 { font-size: 1.6rem; font-weight: 400; color: var(--pine); margin-bottom: 0.65rem; }
.apt-card p  { font-size: 0.87rem; color: var(--stone); line-height: 1.72; margin-bottom: 1.4rem; font-weight: 300; }
.apt-amenities { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.8rem; }
.amenity-pill {
  background: #EFEDE8; color: var(--pine);
  font-size: 0.73rem; font-weight: 400; padding: 0.28rem 0.75rem; border-radius: 20px;
}
.apt-cta {
  width: 100%; display: block; text-align: center;
  background: var(--pine); color: var(--snow);
  padding: 0.85rem; font-size: 0.83rem; font-weight: 500;
  letter-spacing: 0.06em; text-decoration: none; border-radius: 2px; transition: background 0.2s;
}
.apt-cta:hover { background: #3d5440; }

/* ── ACTIVITIES ── */
#activities { background: var(--night); color: var(--snow); position: relative; overflow: hidden; }
.activities-bg {
  position: absolute; inset: 0;
  background: url('img/hero/actividades.jpg') center/cover no-repeat;
  opacity: 0.09;
}
.activities-content { position: relative; z-index: 1; }
#activities .section-title { color: var(--snow); }
#activities .section-sub  { color: rgba(245,242,237,0.5); max-width: 580px; }
.activities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.activity-card {
  border: 1px solid rgba(255,255,255,0.09); padding: 2rem 1.5rem;
  transition: border-color 0.25s, background 0.25s;
}
.activity-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.activity-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem; color: var(--gold); letter-spacing: 0.08em;
  display: block; margin-bottom: 1.1rem;
}
.activity-card h3 { font-size: 1.15rem; font-weight: 400; color: var(--snow); margin-bottom: 0.5rem; }
.activity-card p  { font-size: 0.82rem; color: rgba(245,242,237,0.45); line-height: 1.65; font-weight: 300; }
.ski-callout {
  margin-top: 3rem; display: grid; grid-template-columns: auto 1fr;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.18);
  padding: 2rem 2.4rem; gap: 2.5rem; align-items: center;
}
.ski-callout-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300; color: var(--gold); line-height: 1;
}
.ski-callout-num span { font-size: 1rem; font-weight: 300; }
.ski-callout h4 { font-size: 1rem; color: var(--snow); margin-bottom: 0.35rem; font-family: 'DM Sans', sans-serif; font-weight: 400; }
.ski-callout p  { font-size: 0.83rem; color: rgba(245,242,237,0.48); line-height: 1.65; font-weight: 300; }

/* ── REVIEWS ── */
#reviews { background: var(--snow); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.review-card { background: #EFEDE8; padding: 2rem; border-left: 2px solid var(--gold); }
.review-stars { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1rem; }
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem; font-style: italic; font-weight: 300;
  line-height: 1.7; color: var(--pine); margin-bottom: 1.4rem;
}
.review-author { font-size: 0.77rem; font-weight: 500; color: var(--stone); letter-spacing: 0.04em; }
.review-author span { display: block; font-size: 0.7rem; font-weight: 300; margin-top: 0.15rem; color: var(--bark); }
.reviews-aggregate { margin-top: 2.5rem; display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.agg-number { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--pine); line-height: 1; }
.agg-label  { font-size: 0.77rem; color: var(--stone); margin-left: 0.3rem; }
.agg-note   { font-size: 0.82rem; color: var(--stone); line-height: 1.55; font-weight: 300; }

/* ── CONTACT ── */
#contact { background: #EFEDE8; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3.5rem; }
.contact-form-wrap label {
  display: block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 0.4rem; margin-top: 1.2rem;
}
.contact-form-wrap label:first-child { margin-top: 0; }
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%; background: var(--snow);
  border: 1px solid rgba(0,0,0,0.1); border-radius: 2px;
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--night);
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus { border-color: var(--pine); }
.contact-form-wrap textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; margin-top: 1.6rem;
  background: var(--ember); color: var(--snow);
  border: none; padding: 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500;
  border-radius: 2px; cursor: pointer; letter-spacing: 0.05em; transition: background 0.2s;
}
.btn-submit:hover { background: #a84820; }
.form-feedback {
  padding: 0.85rem 1rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1rem;
  display: none;
}
.form-feedback.success {
  display: block;
  background: #e8f5e9;
  color: #2e6b30;
  border: 1px solid #a5d6a7;
}
.form-feedback.error {
  display: block;
  background: #fdecea;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-note { font-size: 0.7rem; color: var(--stone); margin-top: 0.8rem; line-height: 1.5; }
.contact-info h3 { font-size: 1.75rem; font-weight: 300; color: var(--pine); margin-bottom: 1rem; }
.contact-info > p { font-size: 0.9rem; color: var(--stone); line-height: 1.7; margin-bottom: 2rem; font-weight: 300; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: #25D366; color: #fff;
  padding: 0.9rem 1.5rem; border-radius: 2px;
  text-decoration: none; font-size: 0.88rem; font-weight: 500;
  margin-bottom: 1.8rem; transition: background 0.2s, transform 0.15s;
}
.whatsapp-btn:hover { background: #1db954; transform: translateY(-1px); }
.whatsapp-btn svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.contact-details { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-detail { font-size: 0.83rem; color: var(--stone); font-weight: 300; }
.trust-seals { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.seal {
  background: var(--snow); border: 1px solid rgba(0,0,0,0.07);
  padding: 0.5rem 0.9rem; border-radius: 2px;
  font-size: 0.73rem; color: var(--pine); font-weight: 400; letter-spacing: 0.03em;
}

/* ── MAP ── */
#location { background: var(--snow); padding: 0; }
.map-header { padding: 5rem 2.5rem 2.5rem; max-width: 1120px; margin: 0 auto; }
.map-embed { width: 100%; height: 420px; border: none; display: block; filter: grayscale(20%) contrast(1.04); }

/* ── FAQ ── */
#faq { background: var(--pine); color: var(--snow); }
#faq .section-title { color: var(--snow); }
#faq .section-tag  { color: var(--gold); }

.faq-list { margin-top: 3.5rem; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem; font-weight: 400; color: var(--snow);
  padding: 1.3rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; line-height: 1.35;
  cursor: pointer; user-select: none;
}

.faq-toggle {
  color: var(--gold);
  font-size: 1.4rem; font-family: 'DM Sans', sans-serif; font-weight: 300;
  flex-shrink: 0; line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 0.84rem; color: rgba(245,242,237,0.58);
  line-height: 1.72; font-weight: 300;
  overflow: hidden;
  max-height: 0;
  padding-bottom: 0;
  transition: max-height 0.38s ease, padding-bottom 0.38s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 1.4rem;
}

/* ── SCROLL FADE-IN ── */
.fade-init {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-init.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FOOTER ── */
footer {
  background: var(--night); color: rgba(245,242,237,0.35);
  padding: 2.8rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--snow); font-weight: 300;
  letter-spacing: 0.08em; line-height: 1.5;
}
.footer-logo span { color: var(--gold); }
.footer-sub { font-size: 0.68rem; color: rgba(245,242,237,0.25); font-family: 'DM Sans', sans-serif; letter-spacing: 0.06em; }
footer p { font-size: 0.73rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(245,242,237,0.32); font-size: 0.73rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--snow); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem;
}
.wa-bubble {
  background: var(--snow); color: var(--pine);
  padding: 0.6rem 1rem; border-radius: 6px 6px 2px 6px;
  font-size: 0.78rem; font-weight: 500;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  animation: waBubble 0.4s 2.5s both; opacity: 0; pointer-events: none;
}
@keyframes waBubble { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.wa-btn {
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 18px rgba(37,211,102,0.36);
  animation: waPulse 3s 3.5s infinite; transition: transform 0.2s;
}
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 26px; height: 26px; fill: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.36); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,0.62); }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  section { padding: 4rem 1.5rem; }
  .benefits-inner { grid-template-columns: 1fr 1fr; }
  .benefit-item:nth-child(1),
  .benefit-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-cell { grid-column: span 1 !important; grid-row: auto !important; height: 200px; }
  .apt-grid { grid-template-columns: 1fr 1fr; }
  .lb-slide { padding: 3.5rem 4rem; }
  .activities-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-list { margin-top: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 0 1.5rem 5rem; }
  .ski-callout { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .map-header { padding: 4rem 1.5rem 2rem; }
}

@media (max-width: 560px) {
  .activities-grid { grid-template-columns: 1fr; }
  .benefits-inner { grid-template-columns: 1fr; }
  .benefit-item { border-bottom: 1px solid rgba(255,255,255,0.06); border-right: none; }
  .apt-grid { grid-template-columns: 1fr; }
  .lb-arrow { width: 38px; height: 38px; margin: 0 0.4rem; }
  .lb-slide { padding: 4.5rem 1rem 3rem; }
}
