*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --night: #0b4f3a;
  --night-light: #12664c;
  --gold: #d89b1d;
  --gold-light: #e8b950;
  --ivory: #f6f2ea;
  --white: #ffffff;
  --text: #242424;
  --muted: #6e6a63;
  --cobalt: #2d8fbf;

  --font-display: "Bebas Neue", sans-serif;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body), sans-serif;
  font-weight: 400;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* NAV */

nav#navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;

  height: 86px;
  padding: 0 5vw;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 160px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading), sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link--cta {
  background: var(--gold);
  box-shadow: 0 8px 25px rgba(216, 155, 29, 0.35);
  color: var(--white);
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-link--cta:hover {
  background: var(--white);
  color: var(--night);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;

  width: 44px;

  height: 44px;

  border: 0;

  background: transparent;

  cursor: pointer;

  z-index: 120;
}

.nav-toggle span {
  display: block;

  width: 26px;

  height: 2px;

  margin: 6px auto;

  background: var(--white);

  border-radius: 999px;

  transition: 0.25s ease;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 72vw;
    max-width: 300px;
    height: 100dvh;

    padding: 6rem 1.8rem 2rem;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;

    background: rgba(11, 79, 58, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link,
  .nav-link:not(.nav-link--cta) {
    display: block;
    font-size: 0.85rem;
  }

  .nav-link--cta {
    margin-top: 0.7rem;
    padding: 0.8rem 1.3rem;
  }
}
/* HERO */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-image: url("images/intro-bg.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-img.loaded {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 14, 0.88) 0%,
    rgba(10, 22, 14, 0.3) 50%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  padding-top: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-logo {
  width: min(30vw, 190px);
  height: auto;
  margin-bottom: 1.6rem;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.hero-content.visible .hero-logo {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s 0.2s,
    transform 0.8s 0.2s;
}
.hero-title {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  color: var(--white);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 16ch;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s 0.35s,
    transform 0.9s 0.35s;
}
.hero-title em {
  color: var(--gold);
  font-style: normal;
  font-size: 0.4em;

  display: block;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  align-items: center;
  margin-top: 2.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s 0.55s,
    transform 0.8s 0.55s;
}
.hero-tag {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading), sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.45rem 1rem;
}
.hero-btn {
  display: inline-block;
  margin-top: 2.2rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading), sans-serif;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  transition:
    background 0.2s,
    transform 0.2s;
  opacity: 0;
  transform: translateY(20px);
  animation: none;
}
.hero-btn:hover {
  background: var(--night);
  transform: translateY(-2px);
}

.hero-content.visible .hero-eyebrow,
.hero-content.visible .hero-title,
.hero-content.visible .hero-meta,
.hero-content.visible .hero-btn {
  opacity: 1;
  transform: translateY(0);
}
.hero-content.visible .hero-btn {
  transition:
    opacity 0.8s 0.8s,
    transform 0.8s 0.8s,
    background 0.2s;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

/* COMMON */
section {
  padding: 6rem 5vw;
}

.label {
  font-family: var(--font-heading), sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

h2 {
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--night);
}

/* INCLUDED */

.experience-section {
  background: var(--ivory);
  padding: 7rem 5vw;
}

.experience-intro {
  max-width: 760px;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.experience-intro h2 {
  color: var(--night);
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 1.3rem;
}

.experience-intro p {
  color: var(--text);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

.text-link {
  display: inline-flex;
  margin-top: 2rem;
  color: var(--night);
  font-family: var(--font-heading), sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.text-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.experience-gallery {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  grid-template-rows: repeat(2, 250px);
  gap: 1.4rem;
}

.experience-image {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--night);
  box-shadow: 0 18px 45px rgba(36, 36, 36, 0.12);
}

.experience-image--large {
  grid-row: span 2;
}

.experience-image::after {
  content: "";
  position: absolute;
  inset: 0;

  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.experience-image--large::after {
  opacity: 1;
}

.experience-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.experience-image:hover img {
  transform: scale(1.04);
}

.experience-image-content {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
  max-width: 380px;
}

.experience-image-content span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-family: var(--font-heading), sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience-image-content h3 {
  color: var(--white);
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
  font-weight: 800;
}

@media (max-width: 820px) {
  .experience-section {
    padding: 5rem 1.2rem;
  }

  .experience-intro {
    margin-bottom: 3rem;
  }

  .experience-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .experience-image,
  .experience-image--large {
    height: 260px;
    grid-row: auto;
  }

  .experience-image--large {
    height: 380px;
  }

  .experience-image-content {
    left: 1.3rem;
    bottom: 1.3rem;
  }
}

.includes-section {
  background: var(--night);
  padding: 7rem 5vw;
}

.includes-header {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}

.includes-header .label {
  color: var(--gold);
}

.includes-header h2 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.includes-header p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-size: 1.05rem;
}

.includes-grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.include-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(216, 155, 29, 0.35);
  border-radius: 20px;
  padding: 2rem;
  transition: 0.3s;
}

.include-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.include-card i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.include-card h3 {
  color: white;
  font-family: var(--font-heading);
  margin-bottom: 0.6rem;
}

.include-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 1100px) {
  .includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .includes-grid {
    grid-template-columns: 1fr;
  }
}
/* ACTIVITY SLIDER */

.activity-slider {
  width: 100%;
  padding: 90px 5%;
  background: var(--night);
}

.activity-slider__viewport {
  position: relative;
  max-width: 1180px;
  height: 620px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  background: var(--night-light);
}

.activity-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 700ms cubic-bezier(0.76, 0, 0.24, 1);
}

.activity-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;

  transform: translateZ(0);
}

.activity-slide__video {
  position: absolute;

  inset: 0;

  z-index: 0;

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transform: translateZ(0) scale(1.02);

  backface-visibility: hidden;

  -webkit-backface-visibility: hidden;
}
.activity-slide__overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  transform: translateZ(1px);

  backface-visibility: hidden;

  -webkit-backface-visibility: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(4, 32, 23, 0.92) 0%,

      rgba(4, 32, 23, 0.68) 38%,

      rgba(4, 32, 23, 0.18) 70%,

      rgba(4, 32, 23, 0.08) 100%
    ),
    linear-gradient(
      to top,

      rgba(4, 32, 23, 0.7) 0%,

      transparent 55%
    );
}

.activity-slide__content {
  position: absolute;

  z-index: 2;

  left: 70px;

  bottom: 80px;

  max-width: 620px;

  color: var(--white);

  transform: translateZ(2px);

  backface-visibility: hidden;

  -webkit-backface-visibility: hidden;
}

.activity-slide__eyebrow {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--gold-light);
}

.activity-slide__content h2 {
  max-width: 650px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 2vw, 5.3rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--white);
}

.activity-slide__content p {
  max-width: 560px;
  font-size: 0.96rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

/* PILAR */

.activity-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(5, 43, 31, 0.32);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition:
    background 250ms ease,
    border-color 250ms ease,
    transform 250ms ease;
}

.activity-slider__arrow:hover {
  border-color: var(--gold-light);
  background: var(--gold);
  transform: translateY(-50%) scale(1.06);
}

.activity-slider__arrow--previous {
  left: 24px;
}

.activity-slider__arrow--next {
  right: 24px;
}

/* COUNTER */

.activity-slider__counter {
  position: absolute;
  top: 32px;
  right: 36px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

.activity-slider__current {
  color: var(--white);
}

.activity-slider__counter-line {
  width: 35px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

/* PRICKAR */

.activity-slider__dots {
  position: absolute;
  z-index: 5;
  right: 36px;
  bottom: 34px;
  display: flex;
  gap: 9px;
}

.activity-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    width 250ms ease,
    border-radius 250ms ease,
    background 250ms ease;
}

.activity-slider__dot.is-active {
  width: 30px;
  border-color: var(--gold-light);
  border-radius: 20px;
  background: var(--gold-light);
}

@media (max-width: 600px) {
  .activity-slider {
    padding: 48px 20px;
  }

  .activity-slider__viewport {
    height: 590px;
    border-radius: 16px;
  }

  .activity-slide__video {
    object-position: center;
  }

  .activity-slide__overlay {
    background: linear-gradient(
      to top,
      rgba(4, 32, 23, 0.97) 0%,
      rgba(4, 32, 23, 0.75) 10%,
      rgba(4, 32, 23, 0.12) 30%,
      rgba(4, 32, 23, 0.05) 50%
    );
  }

  .activity-slide__content {
    left: 24px;
    right: 24px;
    bottom: 62px;
  }

  .activity-slide__eyebrow {
    margin-bottom: 12px;
    font-size: 0.64rem;
  }

  .activity-slide__content h2 {
    margin-bottom: 15px;
    font-size: 2.45rem;
    line-height: 1;
  }

  .activity-slide__content p {
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .activity-slider__arrow {
    top: 28px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    transform: none;
  }

  .activity-slider__arrow:hover {
    transform: none;
  }

  .activity-slider__arrow--previous {
    right: 72px;
    left: auto;
  }

  .activity-slider__arrow--next {
    right: 24px;
  }

  .activity-slider__counter {
    top: 41px;
    right: auto;
    left: 24px;
  }

  .activity-slider__dots {
    right: auto;
    bottom: 25px;
    left: 24px;
  }
}

/* YOUR WEEKEND */

.journey-divider {
  max-width: 1120px;
  margin: 5rem auto 2rem;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.journey-divider span {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.journey-divider p {
  color: var(--gold);
  font-family: var(--font-heading), sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.journey-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.journey-intro h2 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.journey-intro p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.journey-list {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.journey-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 360px;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 155, 29, 0.28);
}

.journey-row:nth-child(even) {
  grid-template-columns: 1.1fr 0.9fr;
}

.journey-row:nth-child(even) .journey-row-image {
  order: 2;
}

.journey-row-image {
  min-height: 340px;
}

.journey-row-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.journey-row-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey-day {
  width: max-content;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--font-heading), sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journey-row-content h3 {
  color: var(--white);
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.journey-row-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 520px;
}

.journey-toggle {
  margin-top: 1.8rem;
  width: max-content;
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: var(--font-heading), sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.journey-toggle::after {
  content: " +";
}

.journey-row.active .journey-toggle::after {
  content: " −";
}

.journey-schedule {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
  transition:
    max-height 0.45s ease,
    opacity 0.25s ease,
    margin-top 0.25s ease;
}

.journey-row.active .journey-schedule {
  max-height: 500px;
  margin-top: 1.5rem;
  opacity: 1;
}

.journey-schedule div {
  display: flex;
  gap: 1rem;
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.journey-schedule strong {
  min-width: 58px;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 820px) {
  .journey-row,
  .journey-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .journey-row:nth-child(even) .journey-row-image {
    order: 0;
  }

  .journey-row-content {
    padding: 2rem;
  }
}

/* PRICING */

.pricing-section {
  background: var(--ivory);
  padding: 7rem 5vw;
}

.pricing-header {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}

.pricing-header h2 {
  color: var(--night);
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.pricing-header p {
  color: var(--text);
  line-height: 1.8;
  font-size: 1.05rem;
}

.pricing-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.price-card {
  background: var(--white);
  border: 1px solid rgba(11, 79, 58, 0.12);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 18px 45px rgba(36, 36, 36, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(36, 36, 36, 0.12);
}

.price-card.featured {
  background: var(--night);
  color: var(--white);
  border-color: var(--gold);
}

.price-tag {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-family: var(--font-heading), sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-card h3 {
  color: var(--night);
  font-family: var(--font-heading), sans-serif;
  font-size: 1.45rem;
  margin-bottom: 1.4rem;
}

.price-card.featured h3 {
  color: var(--white);
}

.price {
  margin-bottom: 1.4rem;
}

.price span {
  display: block;
  color: var(--night);
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.price small {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-card.featured .price span {
  color: var(--gold);
}

.price-card.featured .price small,
.price-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.price-card p {
  color: var(--muted);
  line-height: 1.8;
  min-height: 115px;
}

.price-card.featured .price-btn:hover {
  background: var(--white);
  color: var(--night);
}

.packages-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
}

.packages-cta p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--night);
  margin: 0;
}

.packages-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--gold);
  color: var(--night);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.packages-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 79, 58, 0.15);
}

.packages-cta-btn i {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.packages-cta-btn:hover i {
  transform: translateX(4px);
}
@media (max-width: 600px) {
  .packages-cta {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
    text-align: center;
  }

  .packages-cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card p {
    min-height: auto;
  }
}

/* BOOKING */
.booking-widget {
  max-width: 950px;
  margin: 3rem auto;
}
.booking {
  max-width: 900px;
  margin: auto;
  padding: 120px 20px 80px;
  text-align: center;
}

.booking h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--night);
  margin: 1rem 0;
}

.booking-text {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--muted);
  line-height: 1.8;
}

.booking-widget {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.booking-back {
  display: inline-block;
  margin-bottom: 2rem;
  text-decoration: none;
  color: var(--night);
  font-weight: 600;
}

.booking-footer {
  padding: 4rem 2rem;
  text-align: center;
}

.booking-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.booking-links a {
  text-decoration: none;
  color: var(--night);
}

/* FOOTER */

.footer {
  background: #083828;
  padding: 3rem 5vw 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-info {
  max-width: 950px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-item span {
  display: block;
  margin-bottom: 1rem;

  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-item a {
  display: block;
  margin-bottom: 0.6rem;

  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;

  transition: 0.25s;
}

.footer-item a:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 0.9rem;
}

.footer-socials a {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(216, 155, 29, 0.35);

  color: var(--gold);
  font-size: 1.25rem;

  transition: 0.25s ease;
}

.footer-socials a:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  /* GENERELLT */

  section {
    padding: 4rem 1.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  /* EXPERIENCE */

  .experience-section {
    padding: 4rem 1.2rem;
  }

  .experience-intro {
    margin-bottom: 2.2rem;
  }

  .experience-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .experience-intro p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .text-link {
    margin-top: 1.4rem;
  }

  .experience-gallery {
    gap: 1rem;
  }

  .experience-image,
  .experience-image--large {
    height: 220px;
    border-radius: 18px;
  }

  /* INCLUDED */

  .includes-section {
    padding: 1rem 4rem;
  }

  .includes-header {
    margin-bottom: 2.5rem;
  }

  .includes-header h2 {
    font-size: 2.15rem;
  }

  .includes-header p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .includes-grid {
    gap: 1rem;
  }

  .include-card {
    padding: 1.4rem;
    border-radius: 18px;
  }

  .include-card i {
    font-size: 2.3rem;
    margin-bottom: 0.8rem;
  }

  .include-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }

  .include-card p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  /* JOURNEY */

  .journey-divider {
    margin: 3.5rem auto 1.5rem;
    gap: 1rem;
  }

  .journey-divider p {
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .journey-intro {
    margin-bottom: 2.5rem;
  }

  .journey-intro h2 {
    font-size: 2.15rem;
  }

  .journey-intro p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .journey-list {
    gap: 1rem;
  }

  .journey-row {
    min-height: 0;
    border-radius: 20px;
  }

  .journey-row-image {
    min-height: 0;
    height: 150px;
  }

  .journey-row-content {
    padding: 1.5rem;
  }

  .journey-day {
    margin-bottom: 0.7rem;
  }

  .journey-row-content h3 {
    font-size: 1.55rem;
    margin-bottom: 0.8rem;
  }

  .journey-row-content p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .journey-toggle {
    margin-top: 1.2rem;
  }

  /* PRICING */

  .pricing-section {
    padding: 1rem 3rem;
  }

  .pricing-header {
    margin-bottom: 1rem;
  }

  .pricing-header h2 {
    font-size: 2.2rem;
  }

  .pricing-header p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .pricing-grid {
    gap: 1rem;
  }

  .price-card {
    padding: 1.3rem;
    border-radius: 20px;
  }

  .price-tag {
    margin-bottom: 0.8rem;
  }

  .price-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .price {
    margin-bottom: 1rem;
  }

  .price span {
    font-size: 2.8rem;
  }

  .price small {
    font-size: 0.6rem;
  }

  .price-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    min-height: auto;
  }

  /* BOOKING */

  .booking {
    padding: 50px 0.2rem 6px;
  }

  .booking-widget {
    border-radius: 50px;
  }

  /* FOOTER */

  .footer {
    padding: 2.5rem 1.2rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img {
    transform: none !important;
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}
