html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", "Arial", sans-serif;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* ── Buttons ── */

.btn {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  text-align: center;
  transition: background-color 0.2s;
}

.btn-primary {
  background-color: #bba98a;
  color: #1a1a1a;
  font-size: 12px;
  padding: 16px 40px;
}

.btn-primary:hover {
  background-color: #dac5a0;
}

.btn-primary:active {
  background-color: #a18f6f;
}

/* ── Section label (line + text) ── */

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #bba98a;
  flex-shrink: 0;
}

.section-label--muted::before {
  background-color: #8b9bb0;
}

.section-label span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #bba98a;
}

.section-label--muted span {
  color: #8b9bb0;
}

/* ── Section title (h2) ── */

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.33;
}

@media (min-width: 567px) {
  .section-title {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 48px;
  }
}

@media (min-width: 1440px) {
  .section-title {
    font-size: 56px;
  }
}


/* ── Section wrapper ── */

.custom-container {
  max-width: 1167px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Bullet dot ── */

.bullet-dot {
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  background-color: #bba98a;
  flex-shrink: 0;
}

/* ── Nav link ── */

.nav-link {
  color: #8b9bb0;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

/* ── Team member ── */

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 9999px;
  border: 2px solid #bba98a;
  overflow: hidden;
  padding: 6px;
  animation: teamBreath 3.5s ease-in-out infinite;
}

.team-card:nth-child(2) .team-photo {
  animation-delay: -0.8s;
}

.team-card:nth-child(3) .team-photo {
  animation-delay: -1.6s;
}

.team-card:nth-child(4) .team-photo {
  animation-delay: -2.4s;
}

@keyframes teamBreath {
  0%, 100% {
    transform: scale(1);
    border-color: #bba98a;
    box-shadow: 0 0 0 0 rgba(187, 169, 138, 0);
  }
  50% {
    transform: scale(1.06);
    border-color: #dac5a0;
    box-shadow: 0 0 24px 6px rgba(187, 169, 138, 0.4);
  }
}

@media (min-width: 1024px) {
  .team-photo {
    width: 180px;
    height: 180px;
  }
}

.team-name {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

@media (min-width: 1024px) {
  .team-name {
    font-size: 16px;
  }
}

.team-role {
  color: #8c7b5f;
  font-size: 12px;
  margin-top: 4px;
}

.team-desc {
  color: #4c5e75;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── Team card ── */

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease;
}

a.team-card:hover {
  transform: translateY(-4px);
}

a.team-card:hover .team-name {
  color: #bba98a;
}

.team-divider {
  width: 40px;
  height: 1px;
  background-color: #bba98a;
}

/* ── Day badge (program cards) ── */

.day-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: #ffe8c1;
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
}

.day-text-link {
  cursor: pointer;
  text-decoration: underline;
  color: #c47f00;
}

.day-link {
  cursor: pointer;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 12px;
  color: #c47f00;
}

.day-text-link:hover,
.day-link:hover {
  text-decoration: none;
}

/* ── Stats ── */

.stat-number {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
}

@media (min-width: 1024px) {
  .stat-number {
    font-size: 72px;
  }
}

.stat-label {
  color: #8b9bb0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ── Burger ── */

.burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  margin-right: -12px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.burger.active .burger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active .burger__line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile menu ── */

.mobile-menu {
  display: none;
  backdrop-filter: blur(12px);
  background: rgba(10, 25, 47, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
  display: block;
}

/* ── Mobile nav ── */

.mobile-menu-link {
  display: block;
  padding: 20px 24px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── Footer link ── */

.footer-link {
  color: #fff;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #bba98a;
}

/* ── Included cards ── */

.included-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.included-card-subtitle {
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: #bba98a;
}

.included-card-text {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.625;
}

/* ── Scrollbar ── */

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* ── Swiper pagination ── */
.swiper-prev, .swiper-next {
  width: 56px;
  height: 56px;
  border-radius: 100px;
  background-color: #4C5E75;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s linear;
}

.swiper-prev:hover, .swiper-next:hover {
  background-color: #6B83A2;
}

.swiper-prev:disabled, .swiper-next:disabled {
  background-color: #4C5E75;
  opacity: 0.2;
}

/* ── Catamaran hotspots ── */

.catamarans-wrapper {
  position: relative;
}

.catamaran-hotspot {
  position: absolute;
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  text-decoration: none;
  cursor: pointer;
  transform: translate(-50%, 0);
}

.catamaran-hotspot:hover .catamaran-label {
  color: #bba98a;
  border-color: #bba98a;
}

.catamaran-hotspot:hover .catamaran-line {
  background: #bba98a;
}

.catamaran-hotspot:hover .catamaran-dot {
  background: #bba98a;
}

@media (min-width: 1024px) {
  .catamaran-hotspot {
    gap: 8px;
  }
}

.catamaran-stem {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.catamaran-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: catamaranPulse 2s ease-out infinite;
  flex-shrink: 0;
}

.catamaran-line {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
  transition: background 0.25s ease;
}

@keyframes catamaranPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.catamaran-label {
  display: block;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
  padding-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  transition: color 0.2s, border-color 0.2s;
}

@media (min-width: 1024px) {
  .catamaran-label {
    font-size: 13px;
  }

  .catamaran-dot {
    width: 10px;
    height: 10px;
  }
}

/* ── Marquee ── */

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  flex-shrink: 0;
}


@media (min-width: 567px) {
  .marquee-content {
    gap: 48px;
    padding-right: 48px;
  }
}

.marquee-item {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1a1a1a;
  white-space: nowrap;
  opacity: .4;
}

.marquee-dot {
  color: #bba98a;
  font-size: 8px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── Scroll reveal ── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger delays for children */
.reveal-stagger > .reveal:nth-child(1) {
  transition-delay: 0s;
}

.reveal-stagger > .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-stagger > .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal-stagger > .reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.reveal-stagger > .reveal:nth-child(5) {
  transition-delay: 0.4s;
}

.reveal-stagger > .reveal:nth-child(6) {
  transition-delay: 0.5s;
}

/* ── Hero entrance ── */

.hero-fade {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-fade:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-fade:nth-child(2) {
  animation-delay: 0.5s;
}

.hero-fade:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ── CTA pulse ── */

.cta-pulse {
  animation: pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(187, 169, 138, 0.5);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(187, 169, 138, 0);
  }
}

/* ── Booking modal ── */

.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.booking-modal.active {
  display: flex;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.7);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease;
}

.booking-modal__content {
  position: relative;
  background: #f5f0e8;
  border: 1px solid #bba98a;
  padding: 48px 32px 40px;
  max-width: 380px;
  width: calc(100% - 48px);
  text-align: center;
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #8b9bb0;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.booking-modal__close:hover {
  color: #1a1a1a;
}

.booking-modal__title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.booking-modal__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  background: #bba98a;
  transition: background-color 0.2s;
}

.booking-modal__btn:hover {
  background: #dac5a0;
}

.booking-modal__btn--tg {
  background: #bba98a;
}

.booking-modal__btn--wa {
  background: #bba98a;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ── Parallax ── */

.parallax {
  will-change: transform;
}

@media (max-width: 1024px) {
  .parallax {
    will-change: auto;
    transform: none !important;
  }
}

/* ── Hero gradient ── */

.gradient-hero {
  background: linear-gradient(180deg, rgba(14, 27, 46, 0.4) 23.37%, rgba(14, 27, 46, 0.77) 60.59%, rgba(14, 27, 46, 0.933) 85.41%);
}

/* ── Program card (clickable) ── */

.program-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(187, 169, 138, 0.12);
}

/* ── Gallery modal ── */

.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.gallery-modal.active {
  display: flex;
  flex-direction: column;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 26, 0.80);
  backdrop-filter: blur(12px);
  animation: fadeIn 0.3s ease;
}

.gallery-modal__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: galleryIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(139, 155, 176, 0.1);
}

.gallery-modal__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-modal__date {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #bba98a;
}

.gallery-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.gallery-modal__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(139, 155, 176, 0.12);
  border: 1px solid rgba(139, 155, 176, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.gallery-modal__close:hover {
  background: rgba(187, 169, 138, 0.2);
  border-color: rgba(187, 169, 138, 0.5);
}

.gallery-modal__stage {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.gallery-swiper {
  width: 100%;
  height: 100%;
}

.gallery-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 80px;
}

.gallery-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 2px;
}

.gallery-modal__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: #8b9bb0;
  text-align: center;
  padding: 40px;
}

.gallery-modal__empty-icon {
  opacity: 0.35;
  margin-bottom: 8px;
}

.gallery-modal__empty p {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
  border: 1px solid rgba(139, 155, 176, 0.2);
  color: #ffffff;
}

.gallery-nav--prev {
  left: 20px;
  background: rgba(139, 155, 176, 0.12);
}

.gallery-nav--next {
  right: 20px;
  background: rgba(76, 94, 117, 0.55);
}

.gallery-nav:hover {
  background: rgba(187, 169, 138, 0.25);
  border-color: rgba(187, 169, 138, 0.5);
}

.gallery-nav.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.gallery-modal__footer {
  padding: 14px 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-top: 1px solid rgba(139, 155, 176, 0.1);
}

.gallery-modal__counter {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #8b9bb0;
  text-transform: uppercase;
}

@keyframes galleryIn {
  from {
    opacity: 0;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .gallery-modal__header {
    padding: 16px 20px;
  }

  .gallery-modal__title {
    font-size: 17px;
  }

  .gallery-swiper .swiper-slide {
    padding: 16px 20px;
  }

  .gallery-nav {
    display: none;
  }

  .gallery-modal__footer {
    padding: 10px 20px 16px;
  }
}
