:root {
  --green-primary: #0e3e2c;
  --green-deep: #052218;
  --green-whatsapp: #006837;
  --gold-accent: #fdb913;
  --text-dark: #121d18;
  --text-muted: #5a6b63;
  --bg-page: #f9faf7;
  --bg-soft: #f1f4f0;
  --bg-alt: #f4f6f2;
  --surface: #ffffff;
  --border-soft: #e0e4dd;
  --soft-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-elegant: 0 10px 40px rgba(0, 0, 0, 0.08);
  --radius-lg: 32px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-page);
  line-height: 1.8;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--green-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

h2,
h3 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  text-wrap: balance;
}

p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

img {
  display: block;
  max-width: 100%;
  border-radius: 12px;
}

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

.section {
  padding: clamp(80px, 12vw, 140px) 0;
}

.section h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 1.5rem;
}

.section-intro {
  max-width: 80ch;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0));
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.58);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: grid;
  place-content: center;
  background: var(--gold-accent);
  color: #113020;
  font-weight: 700;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.05);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.28rem;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: normal;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
  filter: brightness(0.9);
}

a,
button {
  min-width: 48px;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-deep));
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 104, 55, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-deep), var(--green-primary));
}

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

.btn-secondary:hover {
  background: var(--gold-accent);
  color: #2d2203;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #125c3d, #0e3e2c);
  color: #fff;
  box-shadow: 0 20px 48px rgba(14, 62, 44, 0.35);
  font-size: 1.1rem;
  padding: 1.1rem 2rem;
}

.btn-whatsapp svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.btn-whatsapp:hover {
  box-shadow: 0 24px 54px rgba(14, 62, 44, 0.45);
  background: linear-gradient(135deg, #1a7a52, #125c3d);
}

.btn-whatsapp {
  position: relative;
  overflow: hidden;
}

.pulse-soft {
  animation: pulse-soft 2.5s infinite;
}

@keyframes pulse-soft {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 62, 44, 0.4);
  }

  80% {
    box-shadow: 0 0 0 20px rgba(14, 62, 44, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(14, 62, 44, 0);
  }
}

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

.hero-media,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-shell {
  z-index: 2;
  position: relative;
  padding: 9rem 0 2.8rem;
  display: grid;
  gap: 1.5rem;
}

.hero-copy {
  color: #f6f7f3;
  text-align: center;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  max-width: 16ch;
  margin-inline: auto;
  text-wrap: balance;
  line-height: 1.2;
  margin-bottom: 3rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-copy p {
  color: #eff2ed;
  max-width: 65ch;
  margin-inline: auto;
  line-height: 1.8;
  margin-bottom: 3.5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-bullets {
  margin: 2.5rem auto 3.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-bullets li:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero-bullets svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: var(--gold-accent);
}

.narrative {
  background: var(--surface);
}

.narrative-grid {
  display: grid;
  gap: 4rem;
}

.narrative-text {
  padding: 2rem 0;
}

.narrative-space {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}

.narrative-space img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.narrative-space:hover img {
  transform: scale(1.05);
}

.kicker {
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

.check-list {
  margin: 1.1rem 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.check-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-dark);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold-accent);
}



.experiences {
  background: var(--bg-alt);
}

.experience-grid {
  display: grid;
  gap: 1.25rem;
}

@media (max-width: 899px) {
  .experience-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem 4%;
    margin: 0 -4%;
    scrollbar-width: none;
    /* Hide scrollbar for clean look */
  }

  .experience-grid::-webkit-scrollbar {
    display: none;
  }

  .experience-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: var(--surface);
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elegant);
}

.experience-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.experience-icon-card {
  display: flex;
  flex-direction: column;
  padding: 3rem 2.2rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.experience-icon-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-elegant);
}

.experience-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 20px;
  background: var(--bg-soft);
  color: var(--green-primary);
  display: grid;
  place-content: center;
  margin-bottom: 1.8rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-icon-card:hover .experience-icon-wrap {
  background: var(--gold-accent);
  color: var(--green-deep);
  transform: scale(1.08) rotate(5deg);
}

.experience-icon-wrap svg {
  width: 2rem;
  height: 2rem;
  stroke-width: 2px;
}

.experience-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.experience-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  color: var(--green-primary);
}

.experience-content p {
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 0;
  color: var(--text-muted);
}

@media (max-width: 899px) {
  .experience-icon-card {
    padding: 2.2rem 1.8rem;
    min-height: 260px;
  }
}

.experience-overlay {
  position: absolute;
  inset: 0;
  padding: 1.3rem;
  display: grid;
  align-content: end;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.78));
}

.experience-overlay h3,
.experience-overlay p {
  color: #fff;
  margin-bottom: 0.45rem;
}

.experience-overlay h3 {
  font-size: 1.12rem;
}

.experience-overlay p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.accommodations {
  background: #fff;
}

.accommodation-magazine {
  display: grid;
  gap: 1.1rem;
}

.chalet-feature {
  display: grid;
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  border: 1px solid var(--border-soft);
  margin-bottom: 2rem;
}

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

.chalet-content {
  padding: 1.4rem;
  font-family: "Inter", Arial, sans-serif;
}

.chalet-content h3 {
  font-size: 1.5rem;
}

.feature-icons {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.feature-icons li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #1f3128;
}

.feature-icons li span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  border: 2px solid var(--green-primary);
  background: rgba(0, 104, 55, 0.1);
  flex-shrink: 0;
}

.badge {
  display: inline-block;
  margin-bottom: 0.6rem;
  border-radius: 999px;
  padding: 0.36rem 0.76rem;
  background: var(--gold-accent);
  color: #413102;
  font-size: 0.78rem;
  font-weight: 700;
}

.all-inclusive {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: #f7f8f4;
}

.included {
  background: #fff;
}

.included-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}

@media (max-width: 899px) {
  .included-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .included-grid .split-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    text-align: left;
  }

  .included-grid .split-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--green-primary);
  }

  .included-grid .split-card p {
    font-size: 0.95rem;
    margin: 0;
  }

  /* Custom Icon for list items */
  .included-grid .split-card::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23006837' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 0.2rem;
  }
}

.split-layout {
  background: var(--bg-soft);
}

.split-grid {
  display: grid;
  gap: 1.2rem;
}

.split-card {
  border-radius: var(--radius-md);
  background: #fff;
  padding: 2.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--soft-shadow);
  transition: border-color 0.3s ease;
}

.split-card:hover {
  border-color: var(--gold-accent);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.56rem;
  border-bottom: 1px solid #e8ebe4;
}

.price-table th {
  color: var(--green-primary);
}

.event-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.event-gallery img {
  border-radius: 0.9rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tradition {
  background: #fff;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.timeline-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  background: #f8f8f5;
}

.timeline-item span {
  color: var(--green-primary);
  font-weight: 700;
}

.memories {
  background: var(--bg-soft);
}

.memory-wall {
  display: grid;
  gap: 1rem;
}

.memory-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 1.1rem;
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.memory-card::before {
  content: "“";
  position: absolute;
  top: -24px;
  right: 12px;
  font-size: 7rem;
  line-height: 1;
  color: rgba(253, 185, 19, 0.26);
  font-family: "Playfair Display", Georgia, serif;
  pointer-events: none;
}

.memory-card img {
  border-radius: 0.8rem;
  margin-bottom: 0.6rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.memory-card p {
  position: relative;
  z-index: 1;
  font-style: italic;
  font-size: 1.1rem;
}

.memory-card.memory-photo {
  padding: 0;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 220px;
}

.memory-card.memory-photo::before {
  content: none;
}

.memory-card.memory-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 0;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.memory-card.memory-photo:hover img {
  transform: scale(1.05);
}

.memory-author {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-primary);
  font-style: normal;
}

.placeholder-card {
  padding: 2.5rem;
  text-align: center;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 2px dashed var(--border-soft);
  color: var(--text-muted);
}

.placeholder-card svg {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.location {
  background: #fff;
}

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--soft-shadow);
}

.map-wrap iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
}

.site-footer {
  padding: clamp(120px, 12vw, 156px) 0;
  background: linear-gradient(135deg, var(--green-primary), var(--green-deep));
  color: rgba(255, 255, 255, 0.85);
}

.site-footer h2 {
  color: #ffffff;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer .footer-note {
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-content p {
  max-width: 74ch;
  margin-inline: auto;
}

.footer-note {
  margin-top: 1rem;
  font-size: 0.95rem;
}

@media (max-width: 899px) {
  .section {
    padding: clamp(60px, 10vw, 100px) 0;
  }

  .hero-actions .btn,
  .btn-whatsapp {
    width: auto;
    min-width: 280px;
    max-width: 340px;
    margin-inline: auto;
    padding: 0.82rem 1.4rem;
  }

  .nav-wrap {
    min-height: 72px;
    gap: 0.45rem;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .site-header .btn-primary {
    display: none;
    /* Hide top button to avoid redundancy with sticky bar */
  }

  .site-header {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
  }

  .hide-desktop {
    display: block !important;
  }

  .hide-mobile {
    display: none !important;
  }

  /* Headlines sizes */
  .hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
    max-width: 14ch;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    margin-inline: auto;
  }

  .hero-copy p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3rem;
  }

  .hero-bullets {
    gap: 0.75rem;
    margin-bottom: 3.5rem;
    padding: 0 0.5rem;
    justify-content: center;
  }

  .hero-support {
    font-size: 0.98rem;
    margin-top: 4rem;
  }

  .hero-bullets li {
    font-size: 0.88rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-actions,
  .location .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  /* Sticky Booking Bar */
  .sticky-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border-soft);
  }

  .sticky-booking-bar .btn-whatsapp {
    width: 100%;
    max-width: 100%;
    background: var(--green-whatsapp);
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    min-width: unset;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .site-footer .btn {
    width: 100%;
    max-width: 340px;
    margin: 0;
  }

  .booking-widget {
    width: 100%;
    max-width: 100%;
    padding: 1.05rem;
  }

  .booking-form input,
  .booking-form select {
    min-height: 44px;
  }



  .chalet-feature img {
    min-height: 220px;
  }

  .event-gallery {
    grid-template-columns: 1fr;
  }

  .memory-card::before {
    font-size: 5.8rem;
    top: -18px;
  }

  iframe,
  img,
  video,
  canvas,
  svg {
    max-width: 100%;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (min-width: 900px) {
  .main-nav {
    display: flex;
    gap: 1.2rem;
  }

  .main-nav a {
    color: #f7f8f4;
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid transparent;
  }

  .main-nav a:hover {
    border-bottom-color: var(--gold-accent);
    color: #fff;
  }

  .hero-shell {
    padding-bottom: 3.2rem;
    text-align: center;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy p {
    margin-inline: auto;
  }

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

  .hero-bullets {
    margin-inline: auto;
  }

  .narrative-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

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

  .chalet-feature {
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }

  .chalet-feature:nth-child(even) img {
    order: 2;
  }

  .chalet-feature:nth-child(even) .chalet-content {
    order: 1;
  }

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

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

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

  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }

  .memory-quote-lg {
    grid-column: span 2;
    grid-row: span 2;
  }

  .memory-photo {
    grid-column: span 2;
  }
}