/* Color pallette
#c9a961 - btn purple.
#1a0b2e - btn-text purple.
rgba(15, 10, 30, 0.7); dark purple tint to match theme - dark purple background for textboxes
*/

html {
  box-sizing: border-box;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  background: #ffffff;
  color: #ffffff;
  font-weight: 300;
  font-size: clamp(16px, 2.5vw, 20px);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #c9a961;
  outline-offset: 2px;
}

/* centers entire block */
.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
}

@media (min-width: 576px) {
  .container {
    padding: 0 20px;
  }
}

/* *********** BUTTON ******/

.btn:link,
.btn:visited {
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 32px);
  border-radius: 999px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Button element styles */
button.btn {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 32px);
  border-radius: 999px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

button.sub-cta {
  font-size: 17px;
}

@media (max-width: 480px) {
  button.sub-cta {
    font-size: 14px;
  }
}

.btn:hover,
button.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.cta-container {
  display: flex;
  gap: clamp(12px, 2vw, 20px);
  flex-wrap: nowrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .cta-container {
    justify-content: flex-start;
  }
}

.main-cta,
.sub-cta {
  font-size: 17px;
  padding: 10px 24px;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

@media (max-width: 480px) {
  .main-cta,
  .sub-cta {
    font-size: 14px;
    padding: 8px 18px;
  }
}

.sub-cta {
  background: rgba(0, 0, 0, 0.45);
  color: #c9a961;
  border-color: #c9a961;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.sub-cta:hover {
  background: #c9a961;
  color: #1a0b2e;
  text-shadow: none;
}

.main-cta {
  background: #c9a961;
  color: #1a0b2e;
  border-color: #c9a961;
}

.main-cta:hover {
  background: #b8932e;
}

.nav-cta {
  background: transparent;
  color: #c9a961;
}

.nav-cta:hover {
  color: #ffffff;
}

/*-------------------------- */
/* HEADER */
/*-------------------------- */

header {
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  height: 100vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.1)),
    url(/resources/img/img-1.webp);
}

@media (max-width: 767px) {
  header {
    background-color: black;
    background-position: center -200px;
    background-image:
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0) 20%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.92) 82%,
        rgba(0, 0, 0, 1) 100%
      ),
      url(/resources/img/img-6.webp);
  }
}

.hero-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-height: 100vh;
  overflow: hidden;
  padding: 0 15px;
}

/* Movie poster: image dominates top, text anchored to bottom */
@media (max-width: 767px) {
  .hero-box {
    align-self: stretch; /* fill the full 100vh header height */
    align-items: flex-end; /* push spine-text-box to the bottom */
    padding: 0 16px clamp(24px, 6vw, 40px);
  }
}

@media (min-width: 1024px) {
  .hero-box {
    justify-content: flex-start;
    padding: 0 40px;
  }
}

@media (min-width: 1280px) {
  .hero-box {
    padding: 0;
    transform: translateX(-120px);
  }
}

@media (min-width: 1440px) {
  .hero-box {
    transform: translateX(-200px);
  }
}

.spine-text-box {
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  text-align: center;
  background: rgba(15, 10, 30, 0.32);
  padding: clamp(20px, 4vw, 40px) clamp(18px, 4vw, 50px);
  margin-top: clamp(60px, 10vw, 30px);
  border-radius: clamp(16px, 2vw, 24px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

@media (max-width: 767px) {
  .spine-text-box {
    background: rgba(15, 10, 30, 0.08);
    box-shadow: none;
    margin-top: 0; /* bottom-anchored — no top push needed */
  }
}

@media (min-width: 768px) {
  .spine-text-box {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .spine-text-box {
    width: 90%;
  }
}

.heading-primary {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 500;
  word-spacing: 2px;
  margin-top: 0;
  margin-bottom: clamp(16px, 3vw, 32px);
  line-height: 1.2;
}

@media (max-width: 767px) {
  .heading-primary {
    text-shadow:
      0 2px 16px rgba(0, 0, 0, 0.95),
      0 1px 4px rgba(0, 0, 0, 0.8);
  }
}

.heading-primary::after {
  content: '|';
  animation: blink 0.75s step-end infinite;
}

.heading-primary.typed::after {
  content: '';
  animation: none;
}

@keyframes blink {
  from,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.heading-primary.typed {
  border-right: none;
  animation: none;
  white-space: normal;
  max-width: none;
}

.heading-primary--sub {
  font-size: clamp(19px, 3vw, 26px);
  line-height: 1.6;
  font-weight: 400;
  word-spacing: 2px;
  margin-bottom: clamp(24px, 5vw, 48px);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

@media (max-width: 767px) {
  .heading-primary--sub {
    text-shadow:
      0 1px 10px rgba(0, 0, 0, 0.95),
      0 1px 3px rgba(0, 0, 0, 0.75);
  }
}

@media (min-width: 768px) {
  .heading-primary--sub {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ========================================
   HERO PACKAGES BANNER
   ======================================== */

.hero-packages-banner {
  display: flex;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  padding: clamp(12px, 2vw, 16px) 0;
  margin-bottom: clamp(20px, 4vw, 32px);
  align-items: center;
}

.hero-package {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(8px, 1.5vw, 16px);
  text-decoration: none;
  transition: background 0.2s ease;
}

@media (hover: hover) {
  .hero-package:hover {
    background: rgba(201, 169, 97, 0.1);
  }
}

.hero-package-divider {
  width: 1px;
  height: clamp(36px, 5vw, 48px);
  background: rgba(201, 169, 97, 0.3);
  flex-shrink: 0;
}

.hero-package-header {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  white-space: nowrap;
}

.hero-package-name {
  font-family: 'Rubik', sans-serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.3;
}

.hero-package-starting {
  font-size: clamp(9px, 1vw, 12px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin-left: 6px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-package-price {
  color: rgb(201, 169, 97);
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 17px);
  margin-left: 4px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-package-detail {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: 2px;
  white-space: nowrap;
}

.hero-package-desc {
  font-size: clamp(11px, 1.2vw, 13px);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Mobile: Stack banner vertically */
@media (max-width: 767px) {
  .hero-packages-banner {
    flex-direction: column;
    background: rgba(0, 0, 0, 0.35);
    padding: 0;
    gap: 0;
    align-items: stretch;
    border-top: 2px solid rgba(201, 169, 97, 0.45);
    border-bottom: 2px solid rgba(201, 169, 97, 0.45);
  }

  .hero-package {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: clamp(8px, 2vw, 12px);
    padding: clamp(12px, 3vw, 16px) clamp(20px, 5vw, 32px);
  }

  .hero-package-header {
    flex-wrap: nowrap;
  }

  .hero-package-divider {
    width: 100%;
    height: 2px;
    background: rgba(201, 169, 97, 0.45);
    margin: 0;
  }

  .hero-package-name {
    font-size: clamp(16px, 4vw, 20px);
  }

  .hero-package-detail {
    margin-top: 0;
  }

  .hero-package-desc {
    font-size: clamp(12px, 3vw, 14px);
  }

  .hero-package-price {
    font-size: clamp(14px, 3.5vw, 16px);
  }

  .hero-package-starting {
    font-size: clamp(10px, 2.5vw, 12px);
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-package-name {
    font-size: clamp(18px, 2.5vw, 22px);
  }

  .hero-package-price {
    font-size: clamp(14px, 1.8vw, 16px);
  }

  .hero-package-desc {
    font-size: clamp(11px, 1.4vw, 13px);
  }
}

/* ************ NAVI*********** */

.nav-overlay {
  position: fixed;
  max-height: 90px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(26, 11, 46, 0.249);
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-overlay.scrolled {
  background-color: rgba(26, 11, 46, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (min-width: 1024px) {
  .nav {
    padding: 8px 0;
    gap: 12px;
  }
}

@media (min-width: 1200px) {
  .nav {
    gap: 24px;
  }
}

/* Desktop nav links - hidden by default, shown at 1024px */
.nav-links {
  display: none;
  gap: 32px;
  list-style: none;
  margin: 0;
  margin-left: auto;
  padding: 0;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    gap: 16px;
  }
}

@media (min-width: 1200px) {
  .nav-links {
    gap: 32px;
  }
}

.nav-links a {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a961;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  z-index: 1001;
}

.logo img {
  height: clamp(45px, 8vw, 65px);
  width: auto;
  display: block;
  margin: 0;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Desktop CTA - hidden by default, shown at 1024px */
/* Using higher specificity to override .btn:link */
a.nav-cta.btn {
  display: none;
  font-size: 16px;
  padding: 0;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 8px;
  background: transparent !important;
  color: #c9a961 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

a.nav-cta.btn:hover {
  transform: none !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

@media (min-width: 1024px) {
  a.nav-cta.btn {
    display: inline-block;
  }
}

/* ********* HAMBURGER MENU ************* */

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: block;
  position: fixed;
  top: calc(clamp(45px, 8vw, 65px) + 16px);
  left: 0;
  right: 0;
  background-color: rgba(26, 11, 46, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
  pointer-events: none;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links li {
  text-align: center;
}

.mobile-nav-links a {
  display: inline-block;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 400;
  transition: all 0.2s ease;
  position: relative;
}

.mobile-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #c9a961;
  transition: width 0.3s ease;
}

.mobile-nav-links a:hover {
  color: #c9a961;
}

.mobile-nav-links a:hover::after {
  width: 60%;
}

/* Mobile CTA - styled as gold text link, not button */
.mobile-cta.btn {
  background: transparent !important;
  color: #c9a961 !important;
  padding: 12px 20px !important;
  border: none !important;
  border-radius: 0 !important;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-cta.btn:hover {
  transform: none;
  box-shadow: none;
  color: #ffffff !important;
}

/* ********* PINTEREST-STYLE GALLERY ************* */

.gallery-section {
  padding: clamp(50px, 10vw, 100px) 0;
  overflow: hidden;
  position: relative;
  background: #1a0b2e;
}

.gallery-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to top, rgba(6, 4, 8, 0.5), transparent);
  pointer-events: none;
  z-index: 1;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) {
  .gallery-container {
    padding: 0 20px;
  }
}

@media (min-width: 1024px) {
  .gallery-container {
    padding: 0 40px;
  }
}

.gallery-heading {
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  margin-bottom: clamp(30px, 6vw, 60px);
  padding-left: 20px;
  position: relative;
}

.gallery-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: #c9a961;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(201, 169, 97, 0.6);
}

/* Pinterest Masonry Grid */
.gallery-masonry {
  columns: 1;
  column-gap: 15px;
}

@media (min-width: 576px) {
  .gallery-masonry {
    columns: 2;
    column-gap: 18px;
  }
}

@media (min-width: 900px) {
  .gallery-masonry {
    columns: 3;
    column-gap: 22px;
  }
}

@media (min-width: 1200px) {
  .gallery-masonry {
    columns: 4;
    column-gap: 25px;
  }
}

/* Gallery Item */
.gallery-item {
  break-inside: avoid;
  margin-bottom: 15px;
  position: relative;
}

@media (min-width: 576px) {
  .gallery-item {
    margin-bottom: 18px;
  }
}

@media (min-width: 900px) {
  .gallery-item {
    margin-bottom: 22px;
  }
}

@media (min-width: 1200px) {
  .gallery-item {
    margin-bottom: 25px;
  }
}

/* Gallery expand / collapse buttons — hidden on desktop, shared styles */
.gallery-expand-btn,
.gallery-collapse-btn {
  display: none;
  align-items: center;
  gap: 8px;
  margin: 8px auto 0;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid rgba(201, 169, 97, 0.45);
  border-radius: 6px;
  color: #c9a961;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.gallery-expand-btn:hover,
.gallery-expand-btn:active,
.gallery-collapse-btn:hover,
.gallery-collapse-btn:active {
  background: rgba(201, 169, 97, 0.1);
  border-color: #c9a961;
}

.gallery-expand-btn svg,
.gallery-collapse-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Mobile (< 576px): show first 6, hide the rest */
@media (max-width: 575px) {
  .gallery-masonry .gallery-item:nth-child(n + 7) {
    display: none;
  }
  .gallery-masonry.is-expanded .gallery-item:nth-child(n + 7) {
    display: block;
  }

  .gallery-expand-btn {
    display: flex;
  }
  .gallery-masonry.is-expanded ~ .gallery-expand-btn {
    display: none;
  }
  .gallery-masonry.is-expanded ~ .gallery-collapse-btn {
    display: flex;
  }
}

/* Tablet (576px–899px): show first 8, hide the rest */
@media (min-width: 576px) and (max-width: 899px) {
  .gallery-masonry .gallery-item:nth-child(n + 9) {
    display: none;
  }
  .gallery-masonry.is-expanded .gallery-item:nth-child(n + 9) {
    display: block;
  }

  .gallery-expand-btn {
    display: flex;
  }
  .gallery-masonry.is-expanded ~ .gallery-expand-btn {
    display: none;
  }
  .gallery-masonry.is-expanded ~ .gallery-collapse-btn {
    display: flex;
  }
}

/* Gallery Item Inner */
.gallery-item-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

/* Lift animation on hover (desktop) */
@media (min-width: 768px) {
  .gallery-item-inner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.5),
      0 0 40px rgba(201, 169, 97, 0.15),
      0 0 0 1px rgba(201, 169, 97, 0.2);
  }
}

/* Gallery Image */
.gallery-item-inner img {
  width: 100%;
  height: auto;
  display: block;
  transition:
    filter 0.4s ease,
    transform 0.5s ease;
  filter: brightness(0.9);
}

/* Brighten image on hover */
@media (min-width: 768px) {
  .gallery-item-inner:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
  }
}

/* Uneven Image Sizes - Tall variant */
.gallery-item--tall .gallery-item-inner img {
  min-height: 350px;
  object-fit: cover;
}

@media (min-width: 576px) {
  .gallery-item--tall .gallery-item-inner img {
    min-height: 400px;
  }
}

/* Uneven Image Sizes - Wide variant */
@media (min-width: 900px) {
  .gallery-item--wide {
    break-inside: avoid;
  }
}

/* Gallery Overlay */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0) 70%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Show overlay on hover (desktop) */
@media (min-width: 768px) {
  .gallery-item-inner:hover .gallery-item-overlay {
    opacity: 1;
  }
}

/* Always show on touch devices */
@media (max-width: 767px) {
  .gallery-item-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0) 70%
    );
  }

  .gallery-view-btn {
    transform: translateY(0);
    opacity: 1;
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* View Setup Button */
.gallery-view-btn {
  padding: 12px 28px;
  background: rgba(201, 169, 97, 0.15);
  border: 2px solid #c9a961;
  border-radius: 30px;
  color: #ffffff;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  transform: translateY(20px);
  opacity: 0;
  box-shadow: 0 0 20px rgba(201, 169, 97, 0.2);
}

@media (min-width: 768px) {
  .gallery-item-inner:hover .gallery-view-btn {
    transform: translateY(0);
    opacity: 1;
  }
}

.gallery-view-btn:hover {
  background: #c9a961;
  color: #1a0b2e;
  box-shadow:
    0 0 30px rgba(201, 169, 97, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.gallery-view-btn:active {
  transform: scale(0.98);
}

/* Golden Glow Effect */
.gallery-item-glow {
  position: absolute;
  bottom: -30%;
  left: 5%;
  right: 5%;
  height: 60%;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(201, 169, 97, 0.25) 0%,
    rgba(201, 169, 97, 0.1) 40%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(15px);
}

@media (min-width: 768px) {
  .gallery-item-inner:hover .gallery-item-glow {
    opacity: 1;
  }
}

/* Subtle border glow on hover */
.gallery-item-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0) 0%,
    rgba(201, 169, 97, 0.3) 50%,
    rgba(201, 169, 97, 0) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 10;
}

@media (min-width: 768px) {
  .gallery-item-inner:hover::before {
    opacity: 1;
  }
}

/* ********* REVIEWS CAROUSEL ************* */

.reviews-section {
  padding: clamp(30px, 6vw, 60px) 0;
  overflow: hidden;
  position: relative;
  background: #1a0b2e;
  container-type: inline-size;
  container-name: reviews;
}

.reviews-section::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -140px 200px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 1;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 576px) {
  .reviews-container {
    padding: 0 20px;
  }
}

.testimonials-heading {
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  margin-bottom: clamp(20px, 4vw, 40px);
  padding-left: 15px;
  position: relative;
}

@media (min-width: 576px) {
  .testimonials-heading {
    padding-left: 20px;
  }
}

.testimonials-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: #c9a961;
  border-radius: 2px;
}

.carousel-wrapper {
  position: relative;
  padding: 0 35px;
}

@media (min-width: 576px) {
  .carousel-wrapper {
    padding: 0 50px;
  }
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 15px;
}

@media (min-width: 576px) {
  .carousel-track {
    gap: 20px;
  }
}

/* Base: 1 card visible */
.review-card {
  min-width: 100%;
  width: 100%;
  padding: clamp(18px, 3vw, 30px) clamp(16px, 2.5vw, 25px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: 240px;
  backdrop-filter: blur(5px);
}

/* 576px+: 2 cards visible */
@media (min-width: 576px) {
  .review-card {
    min-width: calc(50% - 10px);
    width: calc(50% - 10px);
    min-height: 260px;
  }
}

/* 768px+: 3 cards visible */
@media (min-width: 768px) {
  .review-card {
    min-width: calc(33.333% - 14px);
    width: calc(33.333% - 14px);
    min-height: 280px;
  }
}

.stars {
  margin-bottom: 15px;
  text-align: left;
  width: 100%;
}

.star {
  color: #c9a961;
  font-size: clamp(16px, 2.5vw, 20px);
  margin: 0 2px;
  text-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

.review-text {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: #ffffff;
  font-weight: 300;
  font-style: italic;
  margin: 0 0 15px 0;
  text-align: left;
  flex-grow: 1;
}

.review-text .highlight {
  color: #c9a961;
  font-weight: 500;
  font-style: normal;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  align-self: flex-start;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a961 0%, #a8893d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-avatar svg {
  width: 20px;
  height: 20px;
  fill: #1a0b2e;
}

.reviewer-details {
  text-align: left;
}

.reviewer-name {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.reviewer-location {
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.reviewer-date {
  font-size: clamp(11px, 1.2vw, 13px);
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
  font-style: italic;
}

/* Carousel buttons - always visible on touch devices */
.carousel-btn {
  background: transparent;
  border: none;
  color: #c9a961;
  width: clamp(32px, 5vw, 40px);
  height: clamp(32px, 5vw, 40px);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 10;
}

/* Hide buttons on hover for desktop */
@media (min-width: 1024px) {
  .carousel-btn {
    opacity: 0;
  }

  .carousel-wrapper:hover .carousel-btn {
    opacity: 1;
  }
}

.carousel-btn-prev {
  left: 0;
}

.carousel-btn-next {
  right: 0;
}

.carousel-btn:hover {
  background: rgba(201, 169, 97, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn svg {
  width: clamp(18px, 3vw, 24px);
  height: clamp(18px, 3vw, 24px);
}

/* ========================================
   SECTION DIVIDERS — gold brand line
   ======================================== */

.services-section,
.reviews-section,
.gallery-section,
.packages-section,
.faq-section,
.contact-section {
  border-bottom: 1px solid rgba(201, 169, 97, 0.45);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
  background: #1a0b2e;
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
  /* NO overflow or container-type here - they break position:sticky */
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) {
  .services-container {
    padding: 0 20px;
  }
}

/*
 * SERVICES LAYOUT
 * Mobile: Single column, all elements stack naturally
 * Desktop: Two columns - static about text + scrolling cards
 */

.services-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 60px);
}

/* Desktop: CSS Grid two-column layout */
@media (min-width: 1024px) {
  .services-layout {
    display: grid;
    grid-template-columns: 40% 1fr;
    column-gap: clamp(40px, 5vw, 80px);
    align-items: start;
  }
}

/*
 * LEFT COLUMN: About Content
 * Mobile: Full width, above cards
 * Desktop: Sticky positioning for scroll-along effect
 */

.services-about {
  width: 100%;
  text-align: center;
  order: 2; /* Show text after cards on mobile */
}

@media (min-width: 1024px) {
  .services-about {
    width: auto;
    position: sticky;
    top: 120px; /* Below fixed nav */
    text-align: left;
    max-height: calc(100vh - 140px);
    order: 0;
  }
}

.services-heading {
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(16px, 3vw, 24px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding-left: 15px;
  position: relative;
}

@media (min-width: 1024px) {
  .services-heading {
    padding-left: 20px;
    margin-bottom: clamp(24px, 4vw, 40px);
  }
}

.services-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: #c9a961;
  border-radius: 2px;
}

.services-intro {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-bottom: 16px;
  text-align: left;
  text-wrap: pretty;
}

.services-intro:last-of-type {
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .services-intro:last-of-type {
    margin-bottom: 24px;
  }
}

@media (min-width: 992px) {
  .services-intro:last-of-type {
    margin-bottom: 32px;
  }
}

/* Social Links */
/* Social Section - Centered below two-column layout */
.social-section {
  margin-top: clamp(60px, 8vw, 100px);
  text-align: left;
}

.social-heading {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0px 0 12px 0px;
  text-align: left;
}

@media (min-width: 576px) {
  .social-heading {
    margin: 0 0 12px 0;
  }
}

@media (min-width: 1024px) {
  .social-heading {
    margin: 0 0 16px 0;
  }
}

.social-arrow {
  color: #c9a961;
}

.social-tagline {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  margin: 20px 0 0 0;
  text-align: left;
}

@media (min-width: 576px) {
  .social-tagline {
    margin-top: 22px;
  }
}

@media (min-width: 1024px) {
  .social-tagline {
    margin-top: 24px;
  }
}

.social-links {
  display: flex;
  gap: 18px;
  justify-content: left;
  margin-top: 16px;
  margin-bottom: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid rgba(201, 169, 97, 0.4);
  color: #c9a961;
  text-decoration: none;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 576px) {
  .social-links {
    gap: 20px;
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 1024px) {
  .social-links {
    gap: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .social-link {
    width: 46px;
    height: 46px;
  }

  .social-link svg {
    width: 22px;
    height: 22px;
  }
}

/* Hover effects for devices that support hover */
@media (hover: hover) {
  .social-link {
    transition: all 0.3s ease;
  }

  .social-link:hover {
    background: #c9a961;
    color: #1a0b2e;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.4);
  }
}

/* Active state for touch devices */
.social-link:active {
  background: #c9a961;
  color: #1a0b2e;
}

/*
 * RIGHT COLUMN: Service Cards Wrapper
 */

.services-cards-wrapper {
  width: 100%;
  order: 1; /* Show cards after heading, before text on mobile */
}

@media (min-width: 1024px) {
  .services-cards-wrapper {
    width: auto;
    order: 0;
  }
}

/*
 * SERVICE CARDS CONTAINER
 */

.services-cards {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 24px);
}

/*
 * SERVICE CARDS
 */

.service-card {
  background: rgba(26, 11, 46, 0.6);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: clamp(12px, 2vw, 20px);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Active card - elevated */
.service-card.is-active {
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 169, 97, 0.3);
}

@media (min-width: 1024px) {
  .service-card {
    backdrop-filter: blur(8px);
  }
}

/*
 * CARD INNER CONTENT
 */

.service-card-inner {
  padding: clamp(20px, 4vw, 32px);
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .service-card-inner {
    padding: 32px 36px;
  }
}

.service-header {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
  margin-bottom: clamp(8px, 1.5vw, 12px);
}

.service-icon {
  width: clamp(32px, 6vw, 48px);
  height: clamp(32px, 6vw, 48px);
  flex-shrink: 0;
  object-fit: contain;
}

.service-title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.service-description {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: rgb(255, 255, 255);
  font-weight: 300;
  margin: 0;
}

/* Service accent - gold gradient line at bottom */
.service-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 169, 97, 0.5) 20%,
    rgba(201, 169, 97, 0.8) 50%,
    rgba(201, 169, 97, 0.5) 80%,
    transparent 100%
  );
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.service-card.is-active .service-accent,
.service-card:hover .service-accent {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .service-card,
  .service-accent {
    transition: none;
  }
}

/* ============================================================
   PACKAGES SECTION — REDESIGNED
   ============================================================ */

/* --- Section --- */
.packages-section {
  background: #1a0b2e;
  padding: clamp(60px, 10vw, 100px) 0;
  position: relative;
  border-bottom: 1px solid rgba(201, 169, 97, 0.45);
}

.packages__overlay {
  position: absolute;
  inset: 0;
  background-image: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* --- Container --- */
.packages-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) {
  .packages-container {
    padding: 0 20px;
  }
}

/* --- Heading (gold left-bar accent) --- */
.packages-heading {
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  margin-bottom: clamp(24px, 4vw, 40px);
  padding-left: 15px;
  position: relative;
}

@media (min-width: 576px) {
  .packages-heading {
    margin-bottom: 30px;
    padding-left: 20px;
  }
}

@media (min-width: 992px) {
  .packages-heading {
    margin-bottom: 40px;
  }
}

.packages-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: #c9a961;
  border-radius: 2px;
}

/* --- Card grid --- */
.packages-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 32px);
}

@media (min-width: 768px) {
  .packages-grid {
    flex-direction: row;
    align-items: stretch;
  }
}

/* --- Card --- */
.pkg-card {
  width: 100%;
  max-width: 400px;
  border-radius: clamp(12px, 2vw, 20px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.2);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .pkg-card {
    max-width: none;
    flex: 1;
    border-radius: 20px;
  }
}

@media (min-width: 1024px) {
  .pkg-card {
    border-radius: 24px;
  }
}

@media (hover: hover) {
  .pkg-card {
    transition:
      transform 0.3s,
      box-shadow 0.3s;
  }
  .pkg-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(201, 169, 97, 0.25);
  }
}

/* --- Card background image + overlay --- */
.pkg-card__bg {
  position: absolute;
  inset: 0;
  background-image: url('/resources/img/img-19.webp');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.pkg-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 4, 20, 0.88) 0%,
    rgba(16, 6, 32, 0.92) 40%,
    rgba(20, 8, 38, 0.95) 100%
  );
}

@media (min-width: 992px) {
  .pkg-card__bg {
    background-size: 300% 100%;
  }
  .pkg-card[data-package='sundown'] .pkg-card__bg {
    background-position: left center;
  }
  .pkg-card[data-package='twilight'] .pkg-card__bg {
    background-position: center center;
  }
  .pkg-card[data-package='nebula'] .pkg-card__bg {
    background-position: right center;
  }
}

/* --- Card content layer (above bg) --- */
.pkg-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* --- Featured card (Twilight) --- */
.pkg-card--featured {
  border-color: rgba(201, 169, 97, 0.5);
}

@media (hover: hover) {
  .pkg-card--featured:hover {
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(201, 169, 97, 0.4);
  }
}

/* --- Badge --- */
.pkg-card__badge {
  position: absolute;
  top: clamp(14px, 2vw, 18px);
  right: clamp(14px, 2vw, 18px);
  z-index: 2;
  background: #c9a961;
  color: #1a0b2e;
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 600;
  padding: clamp(4px, 0.6vw, 5px) clamp(10px, 1.5vw, 14px);
  border-radius: 999px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.pkg-card__badge--premium {
  background: rgba(201, 169, 97, 0.15);
  color: #c9a961;
  border: 1px solid rgba(201, 169, 97, 0.35);
}

/* --- Card header --- */
.pkg-card__header {
  padding: clamp(20px, 3vw, 28px) clamp(18px, 3vw, 24px) clamp(16px, 2vw, 20px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.pkg-card__name {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: clamp(4px, 0.5vw, 6px);
  line-height: 1.2;
}

.pkg-card__tagline {
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: clamp(4px, 0.5vw, 6px);
}

.pkg-card__price-note {
  font-size: clamp(10px, 1.3vw, 11px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  margin-bottom: clamp(10px, 1.5vw, 14px);
}

.pkg-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pkg-card__price-label {
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.pkg-card__price-amount {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  color: #c9a961;
}

/* ============================================================
   ACCORDIONS
   ============================================================ */
.pkg-accordion {
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.pkg-accordion:last-of-type {
  border-bottom: none;
}

.pkg-accordion__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: clamp(12px, 2vw, 16px) clamp(18px, 3vw, 24px);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-family: Rubik, sans-serif;
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
  text-align: left;
}

.pkg-accordion__trigger:hover {
  color: #c9a961;
}

.pkg-accordion__chevron {
  flex-shrink: 0;
  color: rgba(201, 169, 97, 0.5);
  transition: transform 0.3s ease;
}

.pkg-accordion.is-open .pkg-accordion__chevron {
  transform: rotate(180deg);
}

/* Panel: hidden by default, shown when .is-open */
.pkg-accordion__panel {
  display: none;
  padding: 0 clamp(18px, 3vw, 24px) clamp(14px, 2vw, 20px);
}

.pkg-accordion.is-open .pkg-accordion__panel {
  display: block;
}

/* ============================================================
   WHAT'S INCLUDED LIST
   ============================================================ */
.pkg-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pkg-includes__item {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 1.2vw, 10px);
  padding: clamp(4px, 0.6vw, 5px) 0;
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* Checkmark before each item */
.pkg-includes__item::before {
  content: '✓';
  color: #c9a961;
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- Inherited items (from previous tier) --- */
.pkg-includes__item--inherited {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.pkg-includes__item--inherited::before {
  opacity: 0.45;
}

/* ============================================================
   INHERITED FEATURES — COLLAPSIBLE ON 768px+
   ============================================================ */

/*
   MOBILE DEFAULT (< 768px):
   - Trigger button is HIDDEN
   - Inherited list is ALWAYS VISIBLE (shown inline with lighter styling)
*/
.pkg-inherited__trigger {
  display: none;
}

.pkg-inherited__list {
  display: block;
}

/*
   TABLET + DESKTOP (768px+):
   - Trigger button is VISIBLE ("+ Everything in Sundown")
   - Inherited list is HIDDEN by default
   - Clicking trigger toggles .is-expanded on the .pkg-inherited wrapper
   - When .is-expanded, the list shows
*/
@media (min-width: 768px) {
  .pkg-inherited {
    margin-top: clamp(6px, 1vw, 10px);
    padding-top: clamp(6px, 1vw, 10px);
    border-top: 1px dashed rgba(201, 169, 97, 0.15);
  }

  .pkg-inherited__trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: rgba(201, 169, 97, 0.7);
    font-family: Rubik, sans-serif;
    font-size: clamp(12px, 1.5vw, 13px);
    font-weight: 400;
    cursor: pointer;
    padding: clamp(4px, 0.6vw, 6px) 0;
    transition: color 0.2s;
    width: 100%;
    text-align: left;
  }

  .pkg-inherited__trigger:hover {
    color: #c9a961;
  }

  .pkg-inherited__icon {
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s;
    flex-shrink: 0;
  }

  .pkg-inherited.is-expanded .pkg-inherited__icon {
    transform: rotate(45deg);
  }

  .pkg-inherited__list {
    display: none;
    margin-top: clamp(4px, 0.6vw, 6px);
  }

  .pkg-inherited.is-expanded .pkg-inherited__list {
    display: block;
  }
}

/* ============================================================
   GOOD TO KNOW (pills layout)
   ============================================================ */
.pkg-notes {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(6px, 1vw, 8px);
}

.pkg-notes__pill {
  font-size: clamp(10px, 1.3vw, 12px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: clamp(4px, 0.6vw, 5px) clamp(8px, 1.2vw, 10px);
  line-height: 1.4;
}

/* ============================================================
   ADD-ONS & BUNDLES
   ============================================================ */
.pkg-addons__intro {
  font-size: clamp(11px, 1.4vw, 12px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-bottom: clamp(10px, 1.5vw, 14px);
  line-height: 1.5;
}

.pkg-addons__label {
  font-size: clamp(11px, 1.4vw, 12px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: clamp(6px, 1vw, 8px);
  margin-top: clamp(10px, 1.5vw, 14px);
}

.pkg-addons__label:first-of-type {
  margin-top: 0;
}

/* --- Bundles (mini-cards) --- */
.pkg-bundles {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 8px);
}

.pkg-bundle {
  background: rgba(201, 169, 97, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.12);
  border-radius: clamp(6px, 1vw, 8px);
  padding: clamp(8px, 1.2vw, 10px) clamp(10px, 1.5vw, 12px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
}

.pkg-bundle--highlight {
  border-color: rgba(201, 169, 97, 0.3);
  background: rgba(201, 169, 97, 0.1);
}

.pkg-bundle__name {
  font-size: clamp(12px, 1.6vw, 13px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.pkg-bundle__popular-tag {
  font-size: 9px;
  font-weight: 600;
  color: #c9a961;
  background: rgba(201, 169, 97, 0.15);
  padding: 2px 6px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pkg-bundle__items {
  font-size: clamp(11px, 1.4vw, 12px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  width: 100%;
}

/* --- Optional add-on pills --- */
.pkg-addons__pills {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(5px, 0.8vw, 6px);
}

.pkg-addon-pill {
  font-size: clamp(10px, 1.3vw, 11px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(201, 169, 97, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.12);
  border-radius: 999px;
  padding: clamp(3px, 0.5vw, 4px) clamp(8px, 1.2vw, 10px);
  line-height: 1.4;
}

/* ============================================================
   CTA BUTTONS — ALL SOLID GOLD
   ============================================================ */
.pkg-card__footer {
  padding: clamp(14px, 2vw, 18px) clamp(18px, 3vw, 24px) clamp(18px, 3vw, 24px);
  margin-top: auto;
}

.pkg-cta {
  display: block;
  text-align: center;
  padding: clamp(10px, 1.5vw, 13px);
  border-radius: 999px;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  background: #c9a961;
  color: #1a0b2e;
  border: 2px solid #c9a961;
}

.pkg-cta:hover {
  background: #b8932e;
  border-color: #b8932e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* ============================================================
   FOOTNOTES
   ============================================================ */
.packages-footnotes {
  text-align: left;
  margin-top: clamp(24px, 4vw, 40px);
}

.packages-footnotes p {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 300;
  color: rgb(255, 255, 255);
  line-height: 1.6;
  margin-bottom: 4px;
}

/* ========================================
   PACKAGES MODAL
   ======================================== */

.packages-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.packages-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.packages-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.packages-modal-content {
  position: relative;
  width: 95%;
  max-width: 1200px;
  max-height: 90vh;
  background: #1a0b2e;
  border-radius: clamp(12px, 2vw, 24px);
  border: 1px solid rgba(201, 169, 97, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
}

.packages-modal.is-open .packages-modal-content {
  transform: scale(1) translateY(0);
}

.packages-modal-close {
  position: absolute;
  top: clamp(12px, 2vw, 20px);
  right: clamp(12px, 2vw, 20px);
  width: clamp(36px, 5vw, 44px);
  height: clamp(36px, 5vw, 44px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.packages-modal-close:hover {
  background: rgba(201, 169, 97, 0.2);
  border-color: rgba(201, 169, 97, 0.4);
}

.packages-modal-close svg {
  width: clamp(18px, 2.5vw, 24px);
  height: clamp(18px, 2.5vw, 24px);
}

.packages-modal-body {
  padding: clamp(50px, 6vw, 70px) clamp(20px, 4vw, 40px) clamp(30px, 4vw, 50px);
  overflow-y: auto;
  max-height: 90vh;
}

/* Modal-specific packages grid adjustments */
.packages-modal-body .packages-grid {
  gap: 20px;
}

@media (min-width: 768px) {
  .packages-modal-body .packages-grid {
    gap: 24px;
  }
}

/* Modal heading */
.packages-modal-body .packages-heading {
  text-align: center;
  padding-left: 0;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.packages-modal-body .packages-heading::before {
  display: none;
}

/* Modal packages info */
.packages-modal-body .packages-info {
  margin-top: clamp(24px, 4vw, 40px);
}

/* Mobile modal adjustments */
@media (max-width: 767px) {
  .packages-modal-content {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .packages-modal-body {
    max-height: 100vh;
    padding-top: 60px;
  }

  .packages-modal-body .packages-grid {
    gap: 16px;
  }

  .packages-modal-body .package-card {
    max-width: 100%;
  }
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* ========================================
   SINGLE PACKAGE MODAL
   ======================================== */

.single-package-modal {
  position: fixed;
  inset: 0;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.single-package-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.single-package-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.single-package-modal-content {
  position: relative;
  width: 95%;
  max-width: 440px;
  max-height: 90vh;
  background: transparent;
  overflow: visible;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
}

.single-package-modal.is-open .single-package-modal-content {
  transform: scale(1) translateY(0);
}

.single-package-modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: clamp(36px, 5vw, 44px);
  height: clamp(36px, 5vw, 44px);
  background: rgba(26, 11, 46, 0.95);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.single-package-modal-close:hover {
  background: rgba(201, 169, 97, 0.3);
  border-color: rgba(201, 169, 97, 0.6);
}

.single-package-modal-close svg {
  width: clamp(18px, 2.5vw, 24px);
  height: clamp(18px, 2.5vw, 24px);
}

.single-package-modal-body {
  overflow-y: auto;
  max-height: 90vh;
}

/* Single package card in modal - full width and remove hover transforms */
.single-package-modal-body .pkg-card {
  max-width: 100%;
  width: 100%;
  transform: none !important;
  cursor: default;
}

.single-package-modal-body .pkg-card:hover {
  transform: none !important;
}

/* Mobile adjustments for single package modal */
@media (max-width: 767px) {
  .single-package-modal-content {
    width: 92%;
    max-width: 100%;
    margin: 0 auto;
  }

  .single-package-modal-close {
    top: -10px;
    right: -6px;
  }

  .single-package-modal-body {
    max-height: 85vh;
  }
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
  position: relative;
  padding: 60px 0;
  background: #1a0b2e;
  overflow: hidden;
}

@media (min-width: 576px) {
  .faq-section {
    padding: 80px 0;
  }
}

@media (min-width: 992px) {
  .faq-section {
    padding: 100px 0;
  }
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) {
  .faq-container {
    padding: 0 20px;
  }
}

/* FAQ Heading - matches other section headings */
.faq-heading {
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  margin-bottom: 30px;
  padding-left: 15px;
  position: relative;
}

@media (min-width: 576px) {
  .faq-heading {
    margin-bottom: 40px;
    padding-left: 20px;
  }
}

@media (min-width: 992px) {
  .faq-heading {
    margin-bottom: 50px;
  }
}

.faq-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: #c9a961;
  border-radius: 2px;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}

@media (min-width: 576px) {
  .faq-list {
    gap: 16px;
  }
}

@media (min-width: 800px) {
  .faq-list {
    margin: 0 auto;
  }
}

/* FAQ Item */
.faq-item {
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(26, 11, 46, 0.5);
}

@media (min-width: 576px) {
  .faq-item {
    border-radius: 10px;
  }
}

@media (min-width: 992px) {
  .faq-item {
    border-radius: 12px;
  }
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: center;
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  min-height: 44px;
}

@media (min-width: 576px) {
  .faq-question {
    padding: 18px 20px;
    gap: 16px;
  }
}

@media (min-width: 992px) {
  .faq-question {
    padding: 20px 24px;
  }
}

.faq-question-text {
  flex: 1;
  text-align: center;
}

/* FAQ Icon - decorative dots on each side */
.faq-icon {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border: 2px solid #c9a961;
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: #c9a961;
  border-radius: 1px;
}

@media (min-width: 576px) {
  .faq-icon {
    width: 14px;
    height: 14px;
    min-width: 14px;
  }

  .faq-icon::before {
    width: 5px;
    height: 5px;
  }
}

/* Hover state for question */
@media (hover: hover) {
  .faq-question {
    transition: background-color 0.2s ease;
  }

  .faq-question:hover {
    background: rgba(201, 169, 97, 0.1);
  }
}

/* Active/Focus states */
.faq-question:focus {
  outline: none;
  background: rgba(201, 169, 97, 0.1);
}

.faq-question:focus-visible {
  outline: 2px solid #c9a961;
  outline-offset: -2px;
}

/* Expanded state indicator */
.faq-item.is-open .faq-icon {
  background: #c9a961;
}

.faq-item.is-open .faq-icon::before {
  background: #1a0b2e;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  transition: max-height 0.4s ease-in;
}

.faq-answer p {
  padding: 0 16px 16px;
  margin: 0;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.faq-answer p:first-child {
  padding-top: 4px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.faq-answer p + p {
  padding-top: 12px;
}

@media (min-width: 576px) {
  .faq-answer p {
    padding: 0 20px 16px;
  }

  .faq-answer p:first-child {
    padding-top: 8px;
  }
}

@media (min-width: 992px) {
  .faq-answer p {
    padding: 0 24px 18px;
  }

  .faq-answer p:first-child {
    padding-top: 12px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .faq-answer {
    transition: none;
  }

  .faq-item.is-open .faq-answer {
    transition: none;
  }

  .faq-question {
    transition: none;
  }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
  position: relative;
  padding: 60px 0;
  background: #1a0b2e;
  overflow: hidden;
}

@media (min-width: 576px) {
  .contact-section {
    padding: 80px 0;
  }
}

@media (min-width: 992px) {
  .contact-section {
    padding: 100px 0;
  }
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) {
  .contact-container {
    padding: 0 20px;
  }
}

/* Contact Heading */
.contact-heading {
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  margin-bottom: 30px;
  padding-left: 15px;
  position: relative;
}

@media (min-width: 576px) {
  .contact-heading {
    margin-bottom: 40px;
    padding-left: 20px;
  }
}

@media (min-width: 992px) {
  .contact-heading {
    margin-bottom: 50px;
  }
}

.contact-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: #c9a961;
  border-radius: 2px;
}

/* Contact Layout */
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .contact-layout {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }
}

@media (min-width: 992px) {
  .contact-layout {
    gap: 60px;
  }
}

/* Contact Map */
.contact-image {
  width: 100%;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 169, 97, 0.2);
}

.contact-photo-credit {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
}

.contact-subheading {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 12px 0;
}

@media (min-width: 576px) {
  .contact-image img {
    border-radius: 10px;
  }

  .contact-location {
    font-size: 15px;
    margin-top: 14px;
  }
}

@media (min-width: 768px) {
  .contact-image {
    flex: 1;
  }
}

@media (min-width: 992px) {
  .contact-image img {
    border-radius: 12px;
  }

  .contact-location {
    font-size: 16px;
    margin-top: 16px;
  }
}

/* Contact Info */
.contact-info {
  width: 100%;
}

@media (min-width: 768px) {
  .contact-info {
    flex: 1;
  }
}

.contact-intro {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px 0;
}

@media (min-width: 576px) {
  .contact-intro {
    margin: 0 0 28px 0;
  }
}

@media (min-width: 992px) {
  .contact-intro {
    margin: 0 0 32px 0;
  }
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 576px) {
  .contact-details {
    gap: 20px;
  }
}

.contact-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.contact-item a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.contact-label {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.contact-link {
  font-size: 16px;
  font-weight: 400;
  color: #c9a961;
  text-decoration: none;
}

@media (hover: hover) {
  .contact-link {
    transition: color 0.2s ease;
  }

  .contact-link:hover {
    color: #ffffff;
  }
}

/* Contact Social Links */
.contact-social {
  display: flex;
  gap: 12px;
  margin-left: 4px;
}

.contact-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid rgba(201, 169, 97, 0.4);
  color: #c9a961;
  text-decoration: none;
}

.contact-social-link svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 576px) {
  .contact-social {
    gap: 14px;
  }

  .contact-social-link {
    width: 40px;
    height: 40px;
  }

  .contact-social-link svg {
    width: 20px;
    height: 20px;
  }
}

@media (hover: hover) {
  .contact-social-link {
    transition: all 0.3s ease;
  }

  .contact-social-link:hover {
    background: #c9a961;
    color: #1a0b2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.4);
  }
}

.contact-social-link:active {
  background: #c9a961;
  color: #1a0b2e;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: #1a0b2e;
  padding: 40px 0 24px;
}

@media (min-width: 576px) {
  .site-footer {
    padding: 50px 0 28px;
  }
}

@media (min-width: 992px) {
  .site-footer {
    padding: 60px 0 32px;
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 576px) {
  .footer-container {
    padding: 0 20px;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
  }
}

/* Footer Navigation */

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 576px) {
  .footer-links {
    gap: 20px 32px;
  }
}

.footer-links a {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

@media (hover: hover) {
  .footer-links a {
    transition: color 0.2s ease;
  }

  .footer-links a:hover {
    color: #c9a961;
  }
}

/* Footer Social Links */
.footer-social {
  display: flex;
  gap: 14px;
}

@media (min-width: 576px) {
  .footer-social {
    gap: 16px;
  }
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 576px) {
  .footer-social-link {
    width: 44px;
    height: 44px;
  }

  .footer-social-link svg {
    width: 20px;
    height: 20px;
  }
}

@media (hover: hover) {
  .footer-social-link {
    transition: all 0.3s ease;
  }

  .footer-social-link:hover {
    background: #c9a961;
    color: #1a0b2e;
    transform: translateY(-2px);
  }
}

.footer-social-link:active {
  background: #c9a961;
  color: #1a0b2e;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

@media (min-width: 576px) {
  .footer-bottom {
    padding-top: 24px;
  }
}

.footer-copyright {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */

/* --- Section wrapper --- */
.how-section {
  background: #1a0b2e;
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
  border-bottom: 1px solid rgba(201, 169, 97, 0.45);
}

/* --- Container --- */
.how-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) {
  .how-container {
    padding: 0 20px;
  }
}

/* --- Heading (matches site heading pattern: gold left-bar accent) --- */
.how-heading {
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(10px, 3vw, 20px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding-left: 15px;
  position: relative;
  text-align: left;
}

@media (min-width: 1024px) {
  .how-heading {
    padding-left: 20px;
    margin-bottom: clamp(20px, 3vw, 30px);
  }
}

.how-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: #c9a961;
  border-radius: 2px;
}

/* --- Steps grid --- */
.how-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 3vw, 20px);
}

@media (min-width: 768px) {
  .how-steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }
}

/* --- Arrow connectors (between steps) --- */
.how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Vertical arrows: visible on mobile, hidden on tablet+ */
.how-arrow--vertical {
  display: flex;
  margin-top: clamp(42px, 2vw, 16px);
  margin-bottom: clamp(-100px, 1vw, -42px);
}

.how-arrow--vertical svg {
  width: clamp(36px, 8vw, 50px);
  height: auto;
}

/* Horizontal arrows: hidden on mobile, visible on tablet+ */
.how-arrow--horizontal {
  display: none;
}

@media (min-width: 768px) {
  .how-arrow--vertical {
    display: none;
  }

  .how-arrow--horizontal {
    display: flex;
    align-self: flex-start;
    margin-top: clamp(90px, 10vw, 115px);
    width: clamp(48px, 6vw, 80px);
  }

  .how-arrow--horizontal svg {
    width: clamp(48px, 6vw, 70px);
    height: auto;
  }
}

/* --- Individual step card --- */
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
  flex: 1;
}

@media (min-width: 768px) {
  .how-step {
    max-width: none;
  }
}

/* --- Icon wrapper --- */
.how-step__icon-wrapper {
  margin-bottom: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(180px, 18vw, 220px);
}

.how-step__icon {
  width: clamp(200px, 20vw, 250px);
  height: clamp(200px, 20vw, 250px);
  object-fit: contain;
}

/* Individual icon size overrides */
.how-step__icon--package {
  width: clamp(180px, 18vw, 210px);
  height: clamp(180px, 18vw, 210px);
  margin-top: -15px;
}

.how-step__icon--setup {
  width: clamp(200px, 20vw, 280px);
  height: clamp(200px, 20vw, 220px);
}

.how-step__icon--enjoy {
  width: clamp(200px, 20vw, 300px);
  height: clamp(200px, 20vw, 220px);
}

/* --- Tablet portrait adjustments (768px - 900px) --- */
@media (min-width: 768px) and (max-width: 900px) {
  .how-steps {
    transform: scale(0.8);
    transform-origin: top center;
    margin-bottom: -80px;
  }

  .how-heading {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .how-step__title {
    white-space: nowrap;
  }

  .how-step[data-step='1'] {
    margin-top: 16px;
  }
}

/* --- iPad Pro adjustments (901px - 1100px) --- */
@media (min-width: 901px) and (max-width: 1100px) {
  .how-step[data-step='1'] {
    margin-top: 25px;
  }
}

/* --- Step label row (number badge + title) --- */
.how-step__label {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 12px);
  margin-bottom: clamp(8px, 1.5vw, 12px);
}

/* --- Number badge --- */
.how-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(26px, 3.5vw, 32px);
  height: clamp(26px, 3.5vw, 32px);
  border-radius: 50%;
  background: #c9a961;
  color: #1a0b2e;
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 600;
  flex-shrink: 0;
  line-height: 1;
}

/* --- Step title --- */
.how-step__title {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

/* --- Step description --- */
.how-step__desc {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 260px;
}

@media (min-width: 768px) {
  .how-step__desc {
    max-width: 220px;
  }
}

@media (min-width: 1024px) {
  .how-step__desc {
    max-width: 260px;
  }
}

/* ===========================
   Sticky Mobile CTA Bar
   =========================== */

.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(26, 11, 46, 0.97);
    border-top: 1px solid rgba(201, 169, 97, 0.25);
    padding: 10px 20px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
    opacity: 0;
    transition:
      transform 0.3s ease-out,
      opacity 0.3s ease-out;
    pointer-events: none;
  }

  .sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sticky-cta__text {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #e8e0d0;
  }

  .sticky-cta__price {
    color: rgb(201, 169, 97);
    font-weight: 600;
  }

  .sticky-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 44px;
    padding: 10px 24px;
    background: #c9a961;
    color: #1a0b2e;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid #c9a961;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.3s ease;
  }

  .sticky-cta__btn:hover,
  .sticky-cta__btn:focus {
    background: #b8932e;
    border-color: #b8932e;
  }

  .sticky-cta__btn:active {
    transform: scale(0.97);
  }

  /* Push page content up so the sticky bar doesn't overlap the footer */
  .site-footer {
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  }
}

/* ********* about us ************* */
