/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  display: flex;
  height: calc(100vh - var(--nav-h));
  min-height: 560px;
}
.hero-left {
  width: 50%;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 80%,
      rgba(139, 26, 47, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 50%
    ),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: auto, auto, 180px;
  pointer-events: none;
}
.hero-left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold) 40%,
    var(--gold) 60%,
    transparent 100%
  );
  opacity: 0.45;
}
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.deco-circle-lg {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(201, 168, 76, 0.07);
  top: -90px;
  right: -130px;
}
.deco-circle-md {
  width: 220px;
  height: 220px;
  border: 1px solid rgba(139, 26, 47, 0.1);
  bottom: 30px;
  left: -70px;
}
.deco-circle-sm {
  width: 90px;
  height: 90px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-tagline {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: 12.5px;
  color: var(--champ);
  opacity: 0.6;
  line-height: 1.95;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 320px;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Primary / Secondary buttons (hero-specific sizes) */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--dark);
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.3);
  transition:
    opacity 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 168, 76, 0.42);
}
.btn-secondary {
  background: transparent;
  color: var(--champ);
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(232, 213, 176, 0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--champ);
  color: var(--ivory);
  transform: translateY(-2px);
}

.hero-right {
  width: 50%;
  position: relative;
  overflow: hidden;
}

/* ── Stat cards ── */
.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}
.stat-card {
  background: rgba(255, 245, 228, 0.055);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 14px;
  padding: 16px 18px;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(201, 168, 76, 0.1);
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.25s;
  cursor: default;
}
.stat-card:hover {
  border-color: rgba(201, 168, 76, 0.38);
  background: rgba(255, 245, 228, 0.09);
  transform: translateY(-2px);
}
.stat-val {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
.stat-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--champ);
  opacity: 0.72;
  display: block;
  line-height: 1.3;
}

/* ══════════════════════════════════════
   SWIPER (hero slider)
══════════════════════════════════════ */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  position: relative;
  overflow: hidden;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.swiper-slide-active img {
  transform: scale(1);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(26, 15, 10, 0.5) 0%, transparent 50%),
    linear-gradient(to top, rgba(26, 15, 10, 0.9) 0%, transparent 55%);
  z-index: 1;
}
.slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 28px 32px;
  background: linear-gradient(
    to top,
    rgba(18, 8, 4, 0.97) 0%,
    rgba(18, 8, 4, 0.75) 60%,
    transparent 100%
  );
  transform: translateY(100%);
  transition: transform 0.62s cubic-bezier(0.4, 0, 0.2, 1);
}
.swiper-slide-active .slide-info {
  transform: translateY(0);
  animation: slideUp 0.62s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.slide-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 4px;
}
.slide-meta {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--champ);
  opacity: 0.6;
  margin-bottom: 14px;
}
.slide-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.slide-tag {
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--gold);
  font-weight: 600;
}
.slide-tag.tag-vip {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  font-weight: 700;
}
.slide-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.slide-price-val {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.slide-price-unit {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champ);
  opacity: 0.45;
  margin-top: 3px;
  display: block;
}
.slide-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--dark);
  font-family: "Poppins", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.3);
  transition:
    opacity 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.slide-book-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.swiper-pagination {
  position: absolute !important;
  right: 18px !important;
  top: 50% !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
.swiper-pagination-bullet {
  width: 5px !important;
  height: 5px !important;
  background: rgba(232, 213, 176, 0.3) !important;
  border-radius: 50px !important;
  opacity: 1 !important;
  transition:
    height 0.35s,
    background 0.35s !important;
  margin: 0 !important;
  display: block;
}
.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  height: 20px !important;
}

/* ══════════════════════════════════════
   SERVICES TICKER
══════════════════════════════════════ */
.services-ticker {
  height: 52px;
  background: linear-gradient(
    90deg,
    rgba(139, 26, 47, 0.12) 0%,
    rgba(26, 15, 10, 1) 30%,
    rgba(26, 15, 10, 1) 70%,
    rgba(139, 26, 47, 0.12) 100%
  );
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
.services-ticker::before,
.services-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.services-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}
.services-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 22s linear infinite;
  will-change: transform;
}
.ticker-track:hover {
  animation-play-state: paused;
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champ);
  opacity: 0.7;
}
.ticker-chip .chip-star {
  color: var(--gold);
  font-size: 13px;
  opacity: 0.8;
}

/* ══════════════════════════════════════
   CITIES STRIP
══════════════════════════════════════ */
.cities-strip {
  padding: 56px 0;
}
.cities-head {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 32px;
}
.cities-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cities-eyebrow::before,
.cities-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}
.cities-h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.15;
}
.cities-h2 em {
  font-style: italic;
  color: var(--gold);
}
.cities-sub {
  font-size: 11.5px;
  color: var(--champ);
  opacity: 0.5;
  margin-top: 10px;
  line-height: 1.7;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.cities-strip-wrap {
  position: relative;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  overflow: hidden;
  height: 88px;
  display: flex;
  align-items: center;
}
.cities-strip-wrap::before,
.cities-strip-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.cities-strip-wrap::before {
  left: 0;
  background: linear-gradient(to right, #0f0705, transparent);
}
.cities-strip-wrap::after {
  right: 0;
  background: linear-gradient(to left, #0f0705, transparent);
}
.cities-track {
  display: flex;
  white-space: nowrap;
  align-items: center;
  animation: citiesScroll 28s linear infinite;
  will-change: transform;
}
.cities-track:hover {
  animation-play-state: paused;
}
@keyframes citiesScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.city-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-right: 1px solid rgba(201, 168, 76, 0.1);
  flex-shrink: 0;
  cursor: default;
}
.city-item:last-child {
  border-right: none;
}
.city-icon {
  font-size: 18px;
  margin-bottom: 6px;
  filter: saturate(0.7);
  line-height: 1;
}
.city-name {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ivory);
  display: block;
  margin-bottom: 3px;
  line-height: 1;
}
.city-count {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  display: block;
}
.cities-foot {
  text-align: center;
  margin-top: 28px;
  padding: 0 32px;
}
.cities-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 9px 24px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.cities-cta:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

/* ══════════════════════════════════════
   PAGE SECTION WRAPPER
══════════════════════════════════════ */
.page-section {
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
}
.companions-section {
  background: var(--dark-2);
}
.hiw-section {
  background: var(--dark);
}
.pricing-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}
.page-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(139, 26, 47, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.pricing-section::before {
  background:
    radial-gradient(
      ellipse at 50% 100%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 15% 40%,
      rgba(139, 26, 47, 0.08) 0%,
      transparent 50%
    );
}

/* ══════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.section-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-desc {
  font-size: 13px;
  color: var(--champ);
  opacity: 0.55;
  line-height: 1.85;
  max-width: 480px;
  margin: 0 auto;
}
.section-header-sm {
  margin-bottom: 16px;
}
.section-cta-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champ);
  opacity: 0.6;
  text-decoration: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 9px 22px;
  border-radius: 50px;
  transition:
    opacity 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.section-cta-top:hover {
  opacity: 1;
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════════
   COMPANIONS GRID
══════════════════════════════════════ */
.companions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
  margin-bottom: 52px;
}
.companion-card {
  position: relative;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition:
    border-color 0.4s,
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.companion-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-6px);
}
.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.companion-card:hover .card-img {
  transform: scale(1.06);
}
.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.card-badge-bottom {
  top: auto;
  bottom: 16px;
}
.badge-available {
  background: rgba(37, 180, 100, 0.25);
  border: 1px solid rgba(37, 180, 100, 0.5);
  color: #5dea9a;
}
.badge-popular {
  background: rgba(201, 168, 76, 0.25);
  border: 1px solid rgba(201, 168, 76, 0.6);
  color: var(--gold-l);
}
.badge-vip {
  background: rgba(139, 26, 47, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold-l);
}
.card-glass {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 22px 22px 24px;
  background: rgba(14, 7, 4, 0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.reveal-up .card-glass {
  bottom: 0;
  top: auto;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  transform: translateY(calc(100% - 74px));
}
.reveal-up:hover .card-glass {
  transform: translateY(0);
}
.reveal-down .card-glass {
  top: 0;
  bottom: auto;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transform: translateY(calc(-100% + 74px));
}
.reveal-down:hover .card-glass {
  transform: translateY(0);
}
.reveal-up::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(
    to top,
    rgba(10, 5, 3, 0.85) 0%,
    transparent 100%
  );
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.4s;
}
.reveal-up:hover::after {
  opacity: 0;
}
.reveal-down::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(
    to bottom,
    rgba(10, 5, 3, 0.85) 0%,
    transparent 100%
  );
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.4s;
}
.reveal-down:hover::before {
  opacity: 0;
}
.card-name {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-meta {
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--champ);
  opacity: 0.65;
}
.card-extras {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
    opacity 0.35s ease 0.12s;
}
.companion-card:hover .card-extras {
  max-height: 200px;
  opacity: 1;
}
.card-divider {
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
  margin: 14px 0;
}
.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.card-tag {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-weight: 600;
}
.card-tag-vip {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--gold);
  font-weight: 700;
}
.card-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.card-price-val {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.card-price-unit {
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champ);
  opacity: 0.45;
  margin-top: 3px;
  display: block;
}
.card-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--dark);
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
  transition:
    opacity 0.2s,
    transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.card-book-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.section-footer {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.btn-view-all {
  background: transparent;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 50px;
  border: 1.5px solid rgba(201, 168, 76, 0.45);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.btn-view-all:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
  transform: translateY(-2px);
}
.btn-view-all i {
  transition: transform 0.25s;
}
.btn-view-all:hover i {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.hiw-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  z-index: 2;
  align-items: start;
}
.hiw-grid::before {
  content: "";
  position: absolute;
  top: 60px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(139, 26, 47, 0.6) 15%,
    rgba(201, 168, 76, 0.55) 35%,
    rgba(201, 168, 76, 0.55) 65%,
    rgba(139, 26, 47, 0.6) 85%,
    transparent 100%
  );
  z-index: 0;
}
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.hiw-icon-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
  flex-shrink: 0;
}
.hiw-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.2);
  animation: spinSlow 18s linear infinite;
}
.hiw-icon-wrap::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.12);
}
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hiw-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 245, 228, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(201, 168, 76, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.3);
  transition:
    border-color 0.4s,
    box-shadow 0.4s,
    background 0.4s;
}
.hiw-step:hover .hiw-icon {
  border-color: rgba(201, 168, 76, 0.65);
  background: rgba(201, 168, 76, 0.07);
  box-shadow:
    0 0 0 8px rgba(201, 168, 76, 0.06),
    inset 0 1px 0 rgba(201, 168, 76, 0.2),
    0 12px 40px rgba(0, 0, 0, 0.4);
}
.hiw-icon i {
  font-size: 26px;
  color: var(--gold);
  opacity: 0.85;
  transition:
    opacity 0.3s,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hiw-step:hover .hiw-icon i {
  opacity: 1;
  transform: scale(1.15);
}
.hiw-step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
  box-shadow: 0 3px 12px rgba(201, 168, 76, 0.45);
  z-index: 2;
}
.hiw-step-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 10px;
  transition: opacity 0.3s;
}
.hiw-step:hover .hiw-step-label {
  opacity: 1;
}
.hiw-step-title {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.25;
  margin-bottom: 10px;
}
.hiw-step-desc {
  font-size: 12px;
  color: var(--champ);
  opacity: 0.5;
  line-height: 1.8;
  font-weight: 300;
  max-width: 200px;
  transition: opacity 0.3s;
}
.hiw-step:hover .hiw-step-desc {
  opacity: 0.75;
}

/* ══════════════════════════════════════
   SECTION D — HORIZONTAL BANNER
══════════════════════════════════════ */
.sec-d {
  position: relative;
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 560px;
  overflow: hidden;
}
.sec-d-img {
  position: relative;
  overflow: hidden;
}
.sec-d-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 8s ease;
}
.sec-d:hover .sec-d-img img {
  transform: scale(1.05);
}
.sec-d-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--dark-2) 100%);
}
.sec-d-content {
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 72px 72px 56px;
  position: relative;
  overflow: hidden;
}
.sec-d-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 90% 20%,
      rgba(201, 168, 76, 0.05) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 10% 80%,
      rgba(139, 26, 47, 0.08) 0%,
      transparent 50%
    );
}
.sec-d-deco-line {
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(201, 168, 76, 0.45),
    transparent
  );
}
.sec-d-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.12;
  font-size: clamp(28px, 3vw, 46px);
  margin-bottom: 14px;
}
.sec-d-title em {
  font-style: italic;
  color: var(--gold);
}
.sec-d-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 36px;
}
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 245, 228, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 13px;
  padding: 16px 18px;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.feat-item:hover {
  border-color: rgba(201, 168, 76, 0.32);
  background: rgba(255, 245, 228, 0.07);
}
.feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-icon i {
  font-size: 13px;
  color: var(--gold);
}
.feat-title {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 3px;
}
.feat-desc {
  font-size: 10px;
  color: var(--champ);
  opacity: 0.5;
  line-height: 1.5;
}
.sec-d-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sec-d-img-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 5;
  background: rgba(15, 7, 4, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: 12px;
  padding: 14px 18px;
}
.img-badge-name {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 3px;
}
.img-badge-meta {
  font-size: 9.5px;
  color: var(--champ);
  opacity: 0.5;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════
   SECTION E — MAGAZINE EDITORIAL
══════════════════════════════════════ */
.sec-e {
  position: relative;
  overflow: hidden;
}
.sec-e-bg {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.sec-e-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 9s ease;
}
.sec-e:hover .sec-e-bg img {
  transform: scale(1.05);
}
.sec-e-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 15, 10, 0.1) 0%,
    rgba(26, 15, 10, 0.4) 50%,
    rgba(26, 15, 10, 0.98) 100%
  );
}
.sec-e-gold-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 30%,
    var(--gold) 70%,
    transparent
  );
}
.sec-e-headline {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.headline-big {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.05;
}
.headline-big em {
  font-style: italic;
  color: var(--gold);
}
.sec-e-price-col {
  text-align: right;
  min-width: 220px;
}
.big-price {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.big-price-sub {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champ);
  opacity: 0.4;
  display: block;
  margin-top: 4px;
}
.sec-e-lower {
  background: var(--dark-3);
  padding: 48px 64px 60px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
}
.sec-e-lower::before {
  content: "";
  position: absolute;
  top: 0;
  left: 64px;
  right: 64px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.4),
    transparent
  );
}
.sec-e-lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.sec-e-desc .sec-sub {
  margin-bottom: 28px;
}
.sec-e-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.sec-e-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.stat-line:last-child {
  border-bottom: none;
}
.sl-lbl {
  font-size: 10.5px;
  color: var(--champ);
  opacity: 0.55;
  letter-spacing: 0.06em;
}
.sl-val {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}
.sec-e-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}
.book-note {
  font-size: 10px;
  color: var(--champ);
  opacity: 0.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: italic;
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.35),
    rgba(201, 168, 76, 0.35),
    transparent
  );
  position: relative;
  z-index: 2;
  margin-bottom: 64px;
}
.pricing-wrap {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.pricing-row {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 0;
  align-items: center;
  padding: 0 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
  transition: background 0.35s;
}
.pricing-row:last-child {
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.pricing-row:hover {
  background: rgba(201, 168, 76, 0.025);
}
.pricing-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(201, 168, 76, 0.04),
    transparent,
    rgba(201, 168, 76, 0.04)
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.pricing-row:hover::after {
  opacity: 1;
}
.pricing-row-featured {
  background: rgba(201, 168, 76, 0.035);
}
.pricing-row-featured::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.pricing-tier {
  padding: 36px 24px 36px 0;
  border-right: 1px solid rgba(201, 168, 76, 0.1);
}
.pricing-tier-label {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 6px;
}
.pricing-tier-name {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
}
.pricing-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  padding: 3px 10px;
  border-radius: 50px;
}
.pricing-features {
  padding: 36px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 12px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: var(--champ);
  line-height: 1.4;
}
.pricing-feature i {
  font-size: 8px;
  flex-shrink: 0;
}
.feat-on i {
  color: var(--gold);
}
.feat-off {
  opacity: 0.22;
}
.feat-off i {
  color: rgba(255, 255, 255, 0.2);
}
.feat-special i {
  color: #c084fc;
}
.pricing-cta {
  padding: 36px 0 36px 24px;
  border-left: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.pricing-amount {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-align: right;
}
.pricing-period {
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champ);
  opacity: 0.35;
  text-align: right;
  margin-top: 2px;
}
.pricing-note {
  font-size: 9px;
  color: var(--champ);
  opacity: 0.3;
  font-style: italic;
  text-align: right;
}
.pricing-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    opacity 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-outline-gold {
  background: transparent;
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
}
.btn-outline-gold:hover {
  border-color: var(--gold);
}
.btn-gold-fill {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--dark);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.4);
}
.btn-gold-fill:hover {
  opacity: 0.87;
  transform: translateY(-1px);
}
.btn-vip-fill {
  background: linear-gradient(135deg, var(--accent), #5a0e1e);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-l);
  box-shadow: 0 4px 18px rgba(139, 26, 47, 0.35);
}
.btn-vip-fill:hover {
  opacity: 0.87;
  transform: translateY(-1px);
}
.pricing-foot {
  text-align: center;
  margin-top: 52px;
  position: relative;
  z-index: 2;
}
.pricing-foot-note {
  font-size: 11px;
  color: var(--champ);
  opacity: 0.35;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════
   RESPONSIVE — HOME ONLY
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .companions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .pricing-row {
    grid-template-columns: 180px 1fr 180px;
    padding: 0 20px;
  }
  .pricing-features {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 24px;
  }
  .sec-d {
    grid-template-columns: 300px 1fr;
  }
  .sec-d-content {
    padding: 52px 48px 52px 44px;
  }
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .hero-left {
    width: 100%;
    padding: 48px 28px 44px;
    order: 2;
  }
  .hero-right {
    width: 100%;
    order: 1;
    flex-shrink: 0;
    height: 60vw;
    min-height: 320px;
  }
  .hero-left::after {
    display: none;
  }
  .page-section {
    padding: 72px 28px;
  }
  .hiw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 0;
  }
  .pricing-row {
    grid-template-columns: 160px 1fr 160px;
    padding: 0 16px;
  }
  .pricing-tier-name {
    font-size: 26px;
  }
  .pricing-amount {
    font-size: 24px;
  }
  .pricing-features {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 16px;
  }
}
@media (max-width: 860px) {
  .sec-d {
    grid-template-columns: 1fr;
  }
  .sec-d-img {
    height: 280px;
  }
  .sec-d-img::after {
    background: linear-gradient(to bottom, transparent 60%, var(--dark-2) 100%);
  }
  .sec-d-content {
    padding: 44px 32px;
  }
  .sec-e-headline {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 28px;
    gap: 18px;
  }
  .sec-e-price-col {
    text-align: left;
  }
  .sec-e-lower {
    padding: 36px 28px 48px;
  }
  .sec-e-lower::before {
    left: 28px;
    right: 28px;
  }
  .sec-e-lower-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 720px) {
  .pricing-row {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .pricing-tier {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    padding: 24px 0 18px;
  }
  .pricing-features {
    padding: 18px 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-cta {
    border-left: none;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    padding: 18px 0 24px;
    align-items: flex-start;
  }
  .pricing-amount,
  .pricing-period,
  .pricing-note {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .hero-left {
    padding: 36px 20px 32px;
  }
  .hero-sub {
    max-width: 100%;
  }
  .companions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .companion-card {
    height: 400px;
  }
  .card-name {
    font-size: 15px;
  }
  .sec-e-bg {
    height: 380px;
  }
  .sec-e-headline {
    bottom: 30px;
    padding: 0 20px;
  }
  .headline-big {
    font-size: 32px;
  }
  .sec-d-feature-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 480px) {
  .pricing-row {
    padding: 0 12px;
  }
  .pricing-features {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .pricing-feature {
    font-size: 10px;
  }
  .pricing-tier-name {
    font-size: 24px;
  }
}
@media (max-width: 420px) {
  .companions-grid {
    grid-template-columns: 1fr;
  }
}
