@charset "UTF-8";

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Poppins', sans-serif; background: #0a0908; color: #f5f1e8; overflow-x: hidden; line-height: 1.7; font-weight: 300; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
a:hover { opacity: 1; }
ul, ol { list-style: none; }

/* ============================================================
   CSS VARIABLES — LUXURY (Onyx · Champagne Gold · Ivory)
   ============================================================ */
:root {
  /* Backgrounds — deep onyx, never flat */
  --bg-0:        #0a0908;     /* deepest — true onyx */
  --bg-1:        #100e0c;     /* primary surface — warm black */
  --bg-2:        #181613;     /* raised — espresso */
  --bg-3:        #221e19;     /* highlight — bistre */
  --bg-card:     rgba(245, 241, 232, 0.025);
  --glass-border: rgba(201, 169, 110, 0.12);

  /* Accent — champagne gold replaces all blues */
  --accent:      #c9a96e;     /* champagne gold */
  --accent-2:    #e8c98a;     /* light champagne */
  --accent-glow: rgba(201, 169, 110, 0.15);
  --gold:        #c9a96e;
  --gold-bright: #e8c98a;
  --gold-deep:   #8a7440;
  --gold-glow:   rgba(201, 169, 110, 0.18);

  /* Velvet wine — subtle HIV-ribbon-aware accent */
  --wine:        #8b1d2b;
  --wine-soft:   #c4485c;

  /* Rose-gold — soft LGBTQ+ supportive accents */
  --rose:        #d4a5a5;     /* dusty rose */
  --rose-soft:   #e8c5cc;     /* champagne pink */
  --rose-deep:   #a87878;     /* antique mauve */
  --rose-glow:   rgba(212, 165, 165, 0.12);

  /* Text — ivory & silk */
  --text-1:      #f5f1e8;     /* pearl */
  --text-2:      #b8aa92;     /* silk */
  --text-3:      #7a6e58;     /* mist */

  --radius:      6px;
  --radius-sm:   4px;
  --shadow:      0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow-deep: 0 40px 100px rgba(0, 0, 0, 0.7);
  --transition:  0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-dark  { background: var(--bg-1); }
.section-dark2 { background: var(--bg-2); }

.section-heading { text-align: center; margin-bottom: 72px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 600;
  font-style: normal;
  color: var(--text-1);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.section-title span {
  background: linear-gradient(135deg, #e8c98a 0%, #d4a5a5 50%, #c9a96e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section-desc {
  font-size: 15px;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* ============================================================
   BUTTONS — LUXURY
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: linear-gradient(135deg, #c9a96e 0%, #b8985a 100%);
  color: #1a0e00;
  font-weight: 600;
  font-size: 12px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(201, 169, 110, 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(201, 169, 110, 0.4);
  background: linear-gradient(135deg, #e8c98a 0%, #c9a96e 100%);
  opacity: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: transparent;
  color: var(--gold);
  font-weight: 500;
  font-size: 12px;
  border-radius: 60px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.btn-outline:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(201, 169, 110, 0.08);
  opacity: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: var(--text-2);
  font-size: 12px;
  border-radius: 60px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.btn-ghost:hover { color: var(--gold); border-color: rgba(201,169,110,0.3); opacity: 1; }

.btn-wp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-wp:hover { background: #1cb954; transform: translateY(-2px); opacity: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201, 169, 110, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.header-logo img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.85));
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 11px 26px;
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 60px;
}
.header-nav a {
  font-size: 11px;
  font-weight: 500;
  color: rgba(245, 241, 232, 0.78);
  transition: var(--transition);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
}
.header-nav a:hover { color: var(--gold-bright); opacity: 1; }
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.header-nav a:hover::after { width: 100%; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-wp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: rgba(201, 169, 110, 0.08);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 60px;
  border: 1px solid rgba(201, 169, 110, 0.32);
  transition: var(--transition);
}
.header-wp-btn:hover {
  background: linear-gradient(135deg, #c9a96e, #b8985a);
  color: #1a0e00;
  border-color: var(--gold);
  opacity: 1;
}
.header-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger-line + .hamburger-line { margin-top: 5px; }

/* Mobile Menu */
.mobile-menus {
  position: fixed;
  left: -200% !important;
  top: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--bg-2);
  border-right: 1px solid var(--glass-border);
  z-index: 999999999999;
  padding: 80px 24px 24px;
  transition: left 0.4s ease;
  overflow-y: auto;
}
.mobile-menus.mobile-menus-active { left: 0 !important; }
.menuClose {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  z-index: 999999999998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.menuClose.mobile-menus-active { opacity: 1; pointer-events: auto; }
html.mobile-menus-active { overflow: hidden; }
.mobile-menu-list ul li a {
  color: var(--text-1) !important;
  font-size: 15px;
  font-weight: 500;
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}
.mobile-menu-list ul li a:hover { color: var(--accent) !important; opacity: 1; }
.mobil-menu-logo img { height: 36px; filter: brightness(0) invert(1); }
.mobil-menu-inner { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobil-menu-btn { display: block; width: 22px; height: 2px; background: var(--text-1); position: relative; }
.mobil-menu-btn::before { content: ''; position: absolute; top: -7px; left: 0; width: 22px; height: 2px; background: var(--text-1); }
.mobil-menu-btn::after  { content: ''; position: absolute; top: 7px;  left: 0; width: 14px; height: 2px; background: var(--text-1); }
.mobile-hamburger-menu { padding: 8px; }
.mobile-social { display: flex; gap: 16px; margin-top: 32px; }
.mobile-social a { color: var(--text-2); font-size: 18px; transition: var(--transition); }
.mobile-social a:hover { color: var(--accent); opacity: 1; }

/* ============================================================
   HERO — base (all detailed styles live in index.html <style>)
   ============================================================ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-0);
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; padding-top: 110px; padding-bottom: 56px; }
.hero-inner {
  display: flex;
  align-items: center;
  gap: 56px;
}
.hero-content { flex: 1; min-width: 0; }
.pkg-video-caption { z-index: 3; }
.rbrand { font-size: small; position: absolute; }

/* ============================================================
   LUXURY CONSULTATION FORM SECTION
   ============================================================ */
.section-multiform {
  background:
    radial-gradient(ellipse at 20% top, rgba(212, 165, 165, 0.06), transparent 55%),
    radial-gradient(ellipse at 85% bottom, rgba(201, 169, 110, 0.05), transparent 55%),
    var(--bg-1);
}

/* intl-tel-input — global base (luxury overrides live in index.html) */
.iti { width: 100%; }
.iti__flag-container { z-index: 10; }
.iti__selected-flag { background: transparent !important; }
.iti__divider { border-color: var(--glass-border); }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.section-before-after {
  background:
    radial-gradient(ellipse at 85% 25%, rgba(212, 165, 165, 0.05), transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(201, 169, 110, 0.04), transparent 55%),
    var(--bg-0);
  overflow: hidden;
}
.section-before-after .container { margin-bottom: 0; }

.before-after-swiper {
  width: 100%;
  padding: 0 0 20px;
  margin-top: 40px;
}
.before-after-swiper .swiper-slide {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
}
.before-after-swiper .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(232, 201, 138, 0.85) 0%,
    rgba(201, 169, 110, 0.4) 40%,
    rgba(201, 169, 110, 0.1) 70%,
    rgba(201, 169, 110, 0.55) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.before-after-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.before-after-swiper .swiper-button-next,
.before-after-swiper .swiper-button-prev {
  color: var(--gold);
  background: rgba(10, 9, 8, 0.75);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  top: calc(50% - 22px);
  backdrop-filter: blur(8px);
}
.before-after-swiper .swiper-button-next:hover,
.before-after-swiper .swiper-button-prev:hover {
  background: var(--gold);
  color: #1a0e00;
}
.before-after-swiper .swiper-button-next::after,
.before-after-swiper .swiper-button-prev::after { font-size: 14px; }

.before-after-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   PACKAGES — LUXURY
   ============================================================ */
.section-packages {
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 110, 0.05), transparent 60%),
    radial-gradient(ellipse at 15% 80%, rgba(212, 165, 165, 0.05), transparent 55%),
    var(--bg-1);
}

.packages-intro {
  text-align: center;
  max-width: 720px;
  margin: -28px auto 60px;
  padding: 26px 32px;
  background: linear-gradient(165deg, rgba(201, 169, 110, 0.05), rgba(201, 169, 110, 0.02));
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 4px;
  position: relative;
}
.packages-intro::before,
.packages-intro::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
}
.packages-intro::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.packages-intro::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.packages-intro p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.85;
  font-weight: 300;
}
.packages-intro strong { color: var(--gold-bright); font-weight: 600; letter-spacing: 0.5px; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.pkg-card {
  background: linear-gradient(180deg, rgba(245, 241, 232, 0.025), rgba(245, 241, 232, 0.005));
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 4px;
  padding: 44px 36px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transition: width 0.6s ease;
}
.pkg-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}
.pkg-card:hover::before { width: 90%; }

.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 22px;
  color: var(--gold-bright);
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.3);
}
.pkg-badge.gold,
.pkg-badge.blue {
  color: var(--gold-bright);
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.pkg-header { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.pkg-header-text { display: flex; flex-direction: column; gap: 5px; }
.pkg-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(70%) sepia(28%) saturate(540%) hue-rotate(2deg) brightness(95%) contrast(88%);
}
.pkg-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: normal;
  font-size: 30px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: 0.3px;
}
.pkg-subtitle {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.pkg-list-highlight {
  background: rgba(232, 201, 138, 0.16);
  border-left: 3px solid var(--gold-bright);
  border-radius: 2px;
  padding: 10px 14px !important;
  border-bottom: none !important;
  margin: 6px 0;
  color: #f5ecd6 !important;
}
.pkg-list-highlight i { color: var(--gold-bright) !important; }
.pkg-list-note {
  font-size: 11px;
  color: #b8aa92;
  display: block;
  margin-top: 3px;
  letter-spacing: 0.3px;
}
.pkg-list { list-style: none; margin-bottom: 32px; }
.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #e0d6c4;
  padding: 9px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
  line-height: 1.65;
  font-weight: 400;
}
.pkg-list li:last-child { border-bottom: none; }
.pkg-list li i {
  font-size: 12px;
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
}
.pkg-card .btn-primary { width: 100%; justify-content: center; }

/* ============================================================
   METHODS / SERVICES
   ============================================================ */
.section-methods { background: var(--bg-0); }

.methods-swiper { margin-top: 20px; }
.methods-swiper .swiper-slide {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}
.methods-swiper .swiper-slide:hover {
  border-color: rgba(201,169,110,0.25);
  transform: translateY(-4px);
}
.method-img { height: 200px; overflow: hidden; }
.method-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.methods-swiper .swiper-slide:hover .method-img img { transform: scale(1.05); }
.method-body { padding: 28px; }
.method-title { font-size: 18px; font-weight: 700; color: var(--text-1); margin-bottom: 12px; }
.method-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.methods-swiper .swiper-button-next,
.methods-swiper .swiper-button-prev {
  color: var(--accent);
  background: rgba(10,9,8,0.8);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
}
.methods-swiper .swiper-button-next::after,
.methods-swiper .swiper-button-prev::after { font-size: 14px; }
.methods-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   VIDEOS / SHORTS
   ============================================================ */
.section-videos { background: var(--bg-1); }

.videos-swiper { margin-top: 20px; }
.video-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.video-item a {
  display: block;
  position: relative;
}
.video-item img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.video-item:hover img { transform: scale(1.04); }
.video-item img.video-thumb-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: unset;
  pointer-events: none;
  transition: transform 0.5s ease;
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,9,8,0.35);
  transition: var(--transition);
}
.video-item:hover .video-play { background: rgba(10,9,8,0.5); }
.play-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--bg-0);
  transition: var(--transition);
  opacity: 0.2;
}
.video-item:hover .play-circle { transform: scale(1.1); background: #fff; }

.videos-swiper .swiper-button-next,
.videos-swiper .swiper-button-prev {
  color: var(--gold);
  background: rgba(10, 9, 8, 0.75);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  backdrop-filter: blur(8px);
}
.videos-swiper .swiper-button-next:hover,
.videos-swiper .swiper-button-prev:hover {
  background: var(--gold);
  color: #1a0e00;
}
.videos-swiper .swiper-button-next::after,
.videos-swiper .swiper-button-prev::after { font-size: 14px; }

.featured-video {
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.featured-video img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.featured-video .video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,9,8,0.4);
}
.featured-video .play-circle {
  width: 80px; height: 80px;
  font-size: 26px;
  background: rgba(255,255,255,0.95);
}
.videos-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   ABOUT — LUXURY
   ============================================================ */
.section-about {
  background:
    radial-gradient(ellipse at bottom left, rgba(201, 169, 110, 0.05), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 165, 165, 0.05), transparent 55%),
    var(--bg-1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-deep);
}
.about-img img { width: 100%; height: 540px; object-fit: cover; display: block; }
.about-img::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(245, 241, 232, 0.18);
  pointer-events: none;
}
.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 9, 8, 0.5));
  pointer-events: none;
}
.about-content .section-heading { text-align: left; margin-bottom: 32px; }
.about-content .section-heading .section-label { display: inline-flex; }
.about-content p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.95;
  margin-bottom: 18px;
  font-weight: 300;
}
.about-content p:last-of-type { margin-bottom: 32px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 38px; }
.about-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 300;
  letter-spacing: 0.3px;
}
.about-feat i {
  color: var(--gold);
  font-size: 14px;
  width: 22px;
}

/* ============================================================
   FAQ — LUXURY
   ============================================================ */
.section-faq {
  background:
    radial-gradient(ellipse at top, rgba(201, 169, 110, 0.05), transparent 60%),
    radial-gradient(ellipse at 10% 60%, rgba(212, 165, 165, 0.04), transparent 50%),
    radial-gradient(ellipse at 90% 90%, rgba(212, 165, 165, 0.05), transparent 55%),
    var(--bg-0);
}

.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: linear-gradient(180deg, rgba(245, 241, 232, 0.025), rgba(245, 241, 232, 0.005));
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 2px;
  margin-bottom: 12px;
  padding: 0 30px;
  transition: var(--transition);
  position: relative;
}
.faq-item:hover { border-color: rgba(201, 169, 110, 0.3); }
.faq-item.open { border-color: rgba(201, 169, 110, 0.35); background: linear-gradient(180deg, rgba(201, 169, 110, 0.05), rgba(201, 169, 110, 0.01)); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  user-select: none;
}
.faq-question-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-1);
  line-height: 1.55;
  letter-spacing: 0.2px;
}
.faq-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.25);
  color: var(--gold);
  font-size: 13px;
  transition: var(--transition);
  background: rgba(201, 169, 110, 0.04);
}
.faq-item.open .faq-icon {
  background: linear-gradient(135deg, #c9a96e, #8a7440);
  border-color: var(--gold);
  color: #1a0e00;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 1200px; }
.faq-answer-inner { padding-bottom: 28px; padding-right: 20px; }
.faq-answer-inner p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.95;
  font-weight: 300;
  margin-bottom: 10px;
}
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner ul {
  list-style: none;
  padding-left: 0 !important;
}
.faq-answer-inner ul li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 8px;
}
.faq-answer-inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.faq-answer-inner strong { color: var(--gold-bright); font-weight: 500; }
.faq-item:hover .faq-question-text { color: var(--gold-bright); }

/* ============================================================
   MAP
   ============================================================ */
.section-map { background: var(--bg-1); padding: 100px 0 0; }
.map-iframe-wrap {
  border-radius: 0;
  overflow: hidden;
  margin-top: 60px;
  filter: saturate(0.15) brightness(0.45) hue-rotate(15deg);
}
.map-iframe-wrap iframe { width: 100%; display: block; }

/* ============================================================
   CONTACT — LUXURY
   ============================================================ */
.section-contact {
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 110, 0.05), transparent 60%),
    radial-gradient(ellipse at 20% 20%, rgba(212, 165, 165, 0.06), transparent 55%),
    radial-gradient(ellipse at 60% 100%, rgba(212, 165, 165, 0.04), transparent 50%),
    var(--bg-2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 90px;
  align-items: center;
}
.contact-info .section-heading { text-align: left; margin-bottom: 36px; }
.contact-info .section-heading .section-label { display: inline-flex; }
.contact-detail { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-text span { display: block; font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text p { font-size: 14.5px; color: var(--text-1); transition: var(--transition); letter-spacing: 0.3px; }
.contact-detail-text a:hover { color: var(--gold-bright); opacity: 1; }

.simple-form { display: flex; flex-direction: column; gap: 18px; }
.simple-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.simple-form input[type="text"],
.simple-form input[type="email"],
.simple-form input[type="tel"],
.simple-form textarea {
  width: 100%;
  padding: 18px 0 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.22);
  color: var(--text-1);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: border-color 0.35s ease;
  -webkit-appearance: none;
  border-radius: 0;
}
.simple-form input::placeholder,
.simple-form textarea::placeholder { color: rgba(245, 241, 232, 0.4); font-weight: 300; }
.simple-form input:focus,
.simple-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
  background: transparent;
}
.simple-form textarea { resize: none; min-height: 90px; padding-top: 16px; }
/* phone field flag/dial code spacing — luxury overrides in index.html cover the rest */
.simple-form .btn-primary { width: 100%; justify-content: center; padding: 18px; font-size: 12px; margin-top: 8px; }

/* ============================================================
   FOOTER — LUXURY
   ============================================================ */
.footer {
  background:
    radial-gradient(ellipse at top right, rgba(212, 165, 165, 0.05), transparent 55%),
    var(--bg-0);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  margin-bottom: 56px;
  align-items: start;
}
.footer-brand img { height: 42px; margin-bottom: 24px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.95;
  max-width: 380px;
  font-weight: 300;
  letter-spacing: 0.3px;
}
.footer-col-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-bright);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: var(--text-3); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); opacity: 1; }
.footer-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-contact-item i { color: var(--gold); font-size: 13px; width: 18px; }
.footer-contact-item a, .footer-contact-item span {
  font-size: 13.5px;
  color: var(--text-2);
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.footer-contact-item a:hover { color: var(--gold-bright); opacity: 1; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  transition: var(--transition);
}
.footer-social a:hover {
  color: #1a0e00;
  border-color: var(--gold);
  background: var(--gold);
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.5px;
  font-weight: 300;
}

/* ============================================================
   FLOATING BUTTONS — LUXURY
   ============================================================ */
.float-wp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #c9a96e, #b8985a);
  color: #1a0e00;
  border-radius: 60px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(201, 169, 110, 0.3);
  transition: var(--transition);
  border: 1px solid rgba(232, 201, 138, 0.6);
}
.float-wp i { font-size: 20px; }
.float-wp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(201, 169, 110, 0.5);
  background: linear-gradient(135deg, #e8c98a, #c9a96e);
  opacity: 1;
}
.float-wp-text { line-height: 1.3; }
.float-wp-text strong { display: block; font-size: 11px; letter-spacing: 1.5px; }
.float-wp-text span { font-size: 10px; opacity: 0.75; font-weight: 500; letter-spacing: 1px; }
.float-wp .bubble { display: none; }

.float-cta {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.float-cta:hover { color: var(--accent); border-color: var(--accent); opacity: 1; }
.float-cta svg { width: 18px; height: 18px; fill: var(--accent); }

/* Mobile contact bar */
.mContact {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
}
.mContact .col-md-6 { width: 50%; float: left; padding: 0 !important; }
.mContact .col-md-6 a { padding: 14px; font-size: 14px; display: block; text-align: center; }
.mContact .wp { background: linear-gradient(135deg, #c9a96e, #b8985a); color: #1a0e00; font-weight: 600; letter-spacing: 1px; }
.mContact .tl { background: linear-gradient(to bottom, #181613, #0a0908); color: var(--gold-bright); font-weight: 600; letter-spacing: 1px; border-right: 1px solid rgba(201,169,110,0.15); }
.mContact .tl span, .mContact .wp span { font-size: 12px; }
.mContact img { width: 22px; display: inline-block; margin-right: 6px; vertical-align: middle; }
.mContact span { color: #fff; font-weight: bold; vertical-align: middle; }

/* ============================================================
   SWIPER OVERRIDES (global)
   ============================================================ */
.swiper-button-next, .swiper-button-prev { outline: none; }
.swiper-pagination-bullet { background: var(--text-3); }
.swiper-pagination-bullet-active { background: var(--accent); }

/* ============================================================
   AOS FALLBACK
   ============================================================ */
[data-aos] { pointer-events: auto !important; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.img-fluid   { max-width: 100%; height: auto; }
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.col-md-6 { width: 50%; padding: 0 12px; }
.col-md-12 { width: 100%; padding: 0 12px; }

/* ============================================================
   FEATURED PACKAGE CARDS + VIDEO FRAME
   ============================================================ */
.pkg-card-featured {
  background: linear-gradient(180deg, rgba(245, 241, 232, 0.04), rgba(245, 241, 232, 0.01));
  border-color: rgba(201, 169, 110, 0.2);
}
.pkg-video-frame {
  position: relative;
  margin-bottom: 26px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 169, 110, 0.12);
}
.pkg-video-frame video,
.pkg-video-frame iframe {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  border: none;
}
.pkg-video-frame > img {
  width: 100%;
  height: auto;
  display: block;
}
.pkg-video-thumb {
  display: block;
  position: relative;
  overflow: hidden;
}
.pkg-video-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}
.pkg-video-thumb:hover img {
  transform: scale(1.05);
}
.pkg-video-thumb .video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.25s;
}
.pkg-video-thumb:hover .video-play {
  background: rgba(0,0,0,0.4);
}
.pkg-video-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.82) 100%);
  color: #fff;
}
.pkg-video-caption strong {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.pkg-video-caption span {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}

/* ============================================================
   WHATSAPP POPUP — LUXURY
   ============================================================ */
.wp-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(6, 5, 3, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 0 16px 0;
}
.wp-popup-overlay.active { opacity: 1; pointer-events: auto; }
.wp-popup-box {
  width: 100%;
  max-width: 500px;
  background:
    radial-gradient(ellipse at top, rgba(201, 169, 110, 0.06), transparent 60%),
    var(--bg-2);
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  padding: 40px 32px 44px;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.1, 0.64, 1);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
}
.wp-popup-box::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.wp-popup-overlay.active .wp-popup-box { transform: translateY(0); }
.wp-popup-close {
  position: absolute;
  top: 18px; right: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.25);
  background: transparent;
  color: var(--gold);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.wp-popup-close:hover { background: var(--gold); color: #1a0e00; border-color: var(--gold); }
.wp-popup-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-bright);
  margin: 8px auto 18px;
}
.wp-popup-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
  text-align: center;
}
.wp-popup-box > p {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 26px;
  line-height: 1.75;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.3px;
}
.wp-popup-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.wp-popup-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 2px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  background: rgba(245, 241, 232, 0.02);
  color: var(--text-1);
  text-decoration: none;
  transition: var(--transition);
}
.wp-popup-option:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.06);
  opacity: 1;
  transform: translateX(4px);
}
.wp-popup-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 169, 110, 0.22);
}
.wp-popup-option-body { flex: 1; }
.wp-popup-option-body strong {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 3px;
  letter-spacing: 0.3px;
  color: var(--text-1);
}
.wp-popup-option-body span {
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.3px;
  font-weight: 300;
}
.wp-popup-arrow { color: var(--gold); font-size: 11px; flex-shrink: 0; }
.wp-popup-note {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.wp-popup-note i { color: var(--gold); }
.wp-popup-note strong { color: var(--gold-bright); font-weight: 500; }

/* ============================================================
   HERO — LUXURY (HIV / HEPATITIS)
   ============================================================ */
.hero-supportive { min-height: 92vh; }
.hero-supportive .hero-bg {
  background:
    radial-gradient(ellipse at 18% 25%, rgba(201, 169, 110, 0.18), transparent 55%),
    radial-gradient(ellipse at 75% 35%, rgba(212, 165, 165, 0.13), transparent 50%),
    radial-gradient(ellipse at 82% 82%, rgba(139, 29, 43, 0.12), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(212, 165, 165, 0.07), transparent 65%),
    linear-gradient(135deg, #0a0908 0%, #100e0c 55%, #060503 100%);
  background-size: cover;
  opacity: 1;
}
.hero-supportive::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(201, 169, 110, 0.06) 1px, transparent 2px),
    radial-gradient(circle at 88% 80%, rgba(201, 169, 110, 0.05) 1px, transparent 2px),
    radial-gradient(circle at 45% 55%, rgba(245, 241, 232, 0.04) 1px, transparent 2px);
  background-size: 320px 320px, 240px 240px, 400px 400px;
  pointer-events: none;
  z-index: 1;
}
.hero-supportive .hero-inner { align-items: center; gap: 64px; }
.hero-supportive .hero-content { max-width: 640px; }

/* Awareness row — luxury restraint */
.hero-awareness-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 11px 22px;
  background: linear-gradient(135deg, rgba(245, 241, 232, 0.04), rgba(212, 165, 165, 0.05));
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 60px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-awareness-row .ribbon-inline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ribbon-inline i { font-size: 15px; }
.ribbon-inline.ribbon-red { color: #c4485c; }
.ribbon-inline.ribbon-red i {
  color: #c4485c;
  filter: drop-shadow(0 0 6px rgba(196, 72, 92, 0.55));
}
.ribbon-inline.ribbon-yellow { color: var(--gold-bright, #e8c98a); }
.ribbon-inline.ribbon-yellow i {
  color: var(--gold-bright, #e8c98a);
  filter: drop-shadow(0 0 6px rgba(232, 201, 138, 0.55));
}
.awareness-divider { width: 1px; height: 14px; background: rgba(201, 169, 110, 0.3); }

.hero-supportive h1 {
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: -1px;
  color: #f5f1e8;
}
.hero-supportive h1 em {
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, #e8c98a 0%, #d4a5a5 50%, #c9a96e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.5px;
}
.hero-supportive .hero-desc {
  font-size: 17px;
  line-height: 1.8;
  max-width: 580px;
  color: rgba(245, 241, 232, 0.72);
  margin-bottom: 38px;
  font-weight: 300;
}
.hero-supportive .hero-desc strong { color: #f5f1e8; font-weight: 500; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 60px;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.35);
  color: #c9a96e;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}
.btn-ghost-hero:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.6);
  color: #e8c98a;
  transform: translateY(-2px);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12.5px;
  color: rgba(245, 241, 232, 0.7);
  letter-spacing: 0.5px;
}
.hero-trust-item i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #c9a96e;
}

/* Banner visual side — gold-edged */
.hero-banner-visual { flex: 0 0 460px; position: relative; }
.hero-banner-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, rgba(201, 169, 110, 0.06), rgba(139, 29, 43, 0.04));
  box-shadow:
    0 50px 120px rgba(0,0,0,0.7),
    0 0 0 1px rgba(201, 169, 110, 0.18),
    inset 0 0 0 1px rgba(245, 241, 232, 0.04);
}
.hero-banner-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(155deg,
    rgba(232, 201, 138, 0.55) 0%,
    rgba(201, 169, 110, 0.25) 35%,
    transparent 60%,
    rgba(201, 169, 110, 0.35) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}
.hero-banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 9, 8, 0.92) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-ribbon-stack {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  gap: 12px;
  z-index: 2;
}
.ribbon-chip {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 4px;
}
.ribbon-chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.ribbon-chip-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #f5f1e8;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.ribbon-chip-text span {
  display: block;
  font-size: 10px;
  color: rgba(245, 241, 232, 0.55);
  letter-spacing: 1.5px;
  margin-top: 3px;
  text-transform: uppercase;
}
.ribbon-chip-red .ribbon-chip-icon {
  background: rgba(196, 72, 92, 0.12);
  color: #c4485c;
  border: 1px solid rgba(196, 72, 92, 0.35);
}
.ribbon-chip-yellow .ribbon-chip-icon {
  background: rgba(201, 169, 110, 0.12);
  color: #e8c98a;
  border: 1px solid rgba(201, 169, 110, 0.4);
}

.hero-supportive-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.floating-ribbon {
  position: absolute;
  font-size: 84px;
  opacity: 0.04;
  animation: floatRibbon 14s ease-in-out infinite;
}
.floating-ribbon.fr-1 { top: 14%; left: 5%; color: #c4485c; animation-delay: 0s; }
.floating-ribbon.fr-2 { bottom: 18%; right: 7%; color: #c9a96e; animation-delay: 4s; font-size: 64px; }
.floating-ribbon.fr-3 { top: 60%; left: 11%; color: #c9a96e; animation-delay: 7s; font-size: 54px; }
.floating-ribbon.fr-4 { top: 28%; right: 18%; color: #d4a5a5; animation-delay: 2s; font-size: 58px; opacity: 0.06; }
.floating-ribbon.fr-5 { bottom: 32%; left: 38%; color: #e8c5cc; animation-delay: 9s; font-size: 44px; opacity: 0.05; }
@keyframes floatRibbon {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-22px) rotate(8deg); }
}

/* ============================================================
   CONSULTATION STRIP (top of page)
   ============================================================ */
.section-strip-form {
  padding: 56px 0;
  background:
    radial-gradient(ellipse at 20% top, rgba(212, 165, 165, 0.06), transparent 55%),
    radial-gradient(ellipse at 85% bottom, rgba(201, 169, 110, 0.05), transparent 55%),
    var(--bg-1);
}
.strip-form-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 36px 28px;
  background: linear-gradient(165deg, rgba(245, 241, 232, 0.04), rgba(212, 165, 165, 0.03));
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.strip-form-wrap::before,
.strip-form-wrap::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold);
}
.strip-form-wrap::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.strip-form-wrap::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.strip-form-label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
}
.strip-form-label > i {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 165, 165, 0.15) 0%, rgba(201, 169, 110, 0.06) 70%);
  border: 1px solid rgba(201, 169, 110, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e8c98a;
  font-size: 15px;
}
.strip-form-label > div { display: flex; flex-direction: column; line-height: 1.2; }
.strip-form-label strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  font-weight: 700;
  color: #f5f1e8;
  letter-spacing: -0.2px;
}
.strip-form-label span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.strip-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}
.strip-field { flex: 1; min-width: 0; position: relative; }
.strip-field input {
  width: 100%;
  padding: 14px 0 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.22);
  color: #f5f1e8;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: border-color 0.35s ease;
  -webkit-appearance: none;
  border-radius: 0;
}
.strip-field input:focus { outline: none; border-bottom-color: #c9a96e; }
.strip-field input::placeholder { color: rgba(245, 241, 232, 0.4); font-weight: 300; }
.strip-field input.invalid { border-bottom-color: #c4485c; }

.strip-submit {
  flex: 0 0 auto;
  padding: 14px 28px;
  background: linear-gradient(135deg, #c9a96e 0%, #b8985a 100%);
  color: #1a0e00;
  border: none;
  border-radius: 60px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 10px 24px rgba(201, 169, 110, 0.25);
  white-space: nowrap;
}
.strip-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(201, 169, 110, 0.4);
  background: linear-gradient(135deg, #e8c98a 0%, #c9a96e 100%);
}
.strip-submit:disabled { opacity: 0.6; cursor: wait; }

.strip-form-success {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 0;
}
.strip-form-success.active { display: flex; animation: luxeFadeIn 0.5s ease; }
.strip-form-success i { font-size: 24px; color: var(--gold); }
.strip-form-success span {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: #f5f1e8;
}

/* ============================================================
   PHONE (intl-tel-input) — luxury overrides
   ============================================================ */
.strip-form .iti,
.simple-form .iti { width: 100%; }
.strip-form .iti--separate-dial-code input,
.simple-form .iti--separate-dial-code input {
  padding-left: 84px !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(201, 169, 110, 0.22) !important;
  color: #f5f1e8 !important;
  border-radius: 0 !important;
  padding-top: 18px !important;
  padding-bottom: 14px !important;
}
.strip-form .iti--separate-dial-code input:focus,
.simple-form .iti--separate-dial-code input:focus {
  border-bottom-color: #c9a96e !important;
  background: transparent !important;
}
.strip-form .iti--separate-dial-code .iti__selected-flag,
.simple-form .iti--separate-dial-code .iti__selected-flag {
  background: transparent !important;
  border-right: 1px solid rgba(201, 169, 110, 0.18) !important;
  padding: 0 8px !important;
}
.strip-form .iti--separate-dial-code .iti__country-code,
.simple-form .iti--separate-dial-code .iti__country-code {
  color: var(--gold-bright) !important;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.strip-form .iti__country-list,
.simple-form .iti__country-list {
  background: #15110b;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: #f5f1e8;
}
.strip-form .iti__country.iti__highlight,
.simple-form .iti__country.iti__highlight { background: rgba(201, 169, 110, 0.12); }

@keyframes luxeFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   LGBTQ+ ALLY BADGE — fixed bottom-left
   ============================================================ */
.ally-flag {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9998;
  animation: allyFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}
.ally-flag-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 12px;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 169, 110, 0.32);
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}
.ally-flag-inner::before,
.ally-flag-inner::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  transition: width 0.35s ease, height 0.35s ease;
}
.ally-flag-inner::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.ally-flag-inner::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.ally-flag:hover .ally-flag-inner {
  transform: translateY(-3px);
  border-color: rgba(212, 165, 165, 0.5);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.65),
              0 0 0 1px rgba(212, 165, 165, 0.18),
              0 0 40px rgba(212, 165, 165, 0.12);
}
.ally-flag:hover .ally-flag-inner::before,
.ally-flag:hover .ally-flag-inner::after {
  width: 14px;
  height: 14px;
}

.ally-flag-img-wrap {
  position: relative;
  width: 46px;
  height: 30px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}
.ally-flag-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: inherit;
  pointer-events: none;
}
.ally-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ally-flag-text {
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ally-flag-text strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: -0.2px;
  white-space: nowrap;
}
.ally-flag-text span {
  font-size: 9px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.55);
  font-weight: 500;
}

@keyframes allyFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE — hero / strip form / ally flag
   ============================================================ */
@media (max-width: 991px) {
  .hero-banner-visual { flex: 0 0 380px; }
}
@media (max-width: 767px) {
  .ally-flag { bottom: 20px; left: 16px; }
  .ally-flag-inner { padding: 9px 14px 9px 9px; gap: 11px; }
  .ally-flag-img-wrap { width: 38px; height: 25px; }
  .ally-flag-text strong { font-size: 12px; }
  .ally-flag-text span { font-size: 8.5px; letter-spacing: 2.2px; }
  .hero-supportive { min-height: auto; padding: 40px 0; }
  .hero-supportive .hero-inner { display: flex; flex-direction: column; gap: 36px; }
  .hero-supportive .hero-content { max-width: 100%; }
  .hero-banner-visual { flex: 0 0 auto; width: 100%; max-width: 380px; margin: 0 auto; position: static; }
  .hero-awareness-row { flex-wrap: wrap; padding: 9px 16px; gap: 10px; }
  .ribbon-inline { font-size: 10px; letter-spacing: 1.5px; }
  .hero-trust-row { gap: 16px; }
  .hero-cta-row .btn-primary, .btn-ghost-hero { font-size: 12px; padding: 13px 22px; letter-spacing: 1px; }
  .section-strip-form { padding: 40px 0; }
  .strip-form-wrap { padding: 22px 20px; gap: 18px; }
  .strip-form { flex-direction: column; align-items: stretch; gap: 14px; }
  .strip-field { flex: 1 1 100%; min-width: 0; }
  .strip-submit { width: 100%; justify-content: center; margin-left: 0; }
  .strip-form-label > i { width: 38px; height: 38px; font-size: 14px; }
  .strip-form-label strong { font-size: 15px; }
}
@media (max-width: 480px) {
  .hero-awareness-row .awareness-divider { display: none; }
  .hero-trust-item { font-size: 11.5px; gap: 9px; }
}

/* ============================================================
   FANCYBOX — LUXURY SHORTS FRAME
   ============================================================ */
.fancybox-luxe-shorts .fancybox-bg {
  background: radial-gradient(ellipse at center, rgba(10, 9, 8, 0.92), rgba(0, 0, 0, 0.98)) !important;
}
.fancybox-luxe-shorts .fancybox-slide--iframe,
.fancybox-luxe-shorts .fancybox-slide--video,
.fancybox-luxe-shorts .fancybox-slide {
  padding: 24px !important;
}
.fancybox-luxe-shorts .fancybox-slide--iframe .fancybox-content,
.fancybox-luxe-shorts .fancybox-slide--video .fancybox-content {
  width: 360px !important;
  height: 640px !important;
  max-width: calc(100vw - 48px) !important;
  max-height: calc(100vh - 80px) !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
  overflow: visible !important;
  position: relative !important;
}
.fancybox-luxe-shorts .fancybox-iframe {
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #0a0908 !important;
  box-shadow:
    0 60px 140px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(201, 169, 110, 0.35) !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}
/* Glowing gradient border */
.fancybox-luxe-shorts .fancybox-slide--iframe .fancybox-content::before,
.fancybox-luxe-shorts .fancybox-slide--video .fancybox-content::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(155deg,
    rgba(232, 201, 138, 0.8) 0%,
    rgba(212, 165, 165, 0.45) 30%,
    rgba(201, 169, 110, 0.2) 55%,
    rgba(201, 169, 110, 0.6) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
/* Gold L-corners around frame */
.fancybox-luxe-shorts .fancybox-slide--iframe .fancybox-content::after,
.fancybox-luxe-shorts .fancybox-slide--video .fancybox-content::after {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  width: 22px; height: 22px;
  border-top: 1px solid var(--gold-bright);
  border-left: 1px solid var(--gold-bright);
  z-index: 3;
  pointer-events: none;
}
/* Close button (top-right) */
.fancybox-luxe-shorts .fancybox-toolbar { top: 18px !important; right: 22px !important; }
.fancybox-luxe-shorts .fancybox-button {
  background: rgba(10, 9, 8, 0.78) !important;
  color: var(--gold-bright) !important;
  border: 1px solid rgba(201, 169, 110, 0.4) !important;
  border-radius: 50% !important;
  width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.fancybox-luxe-shorts .fancybox-button:hover {
  background: var(--gold) !important;
  color: #1a0e00 !important;
  border-color: var(--gold) !important;
}
.fancybox-luxe-shorts .fancybox-button--close-small svg,
.fancybox-luxe-shorts .fancybox-button--close svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor !important;
}
.fancybox-luxe-shorts .fancybox-button--close-small svg path,
.fancybox-luxe-shorts .fancybox-button--close svg path {
  fill: currentColor !important;
}

/* Navigation arrows — hide default SVG, draw clean CSS chevrons */
.fancybox-luxe-shorts .fancybox-navigation .fancybox-button {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
}
.fancybox-luxe-shorts .fancybox-navigation .fancybox-button--arrow_left  { left: 24px !important; right: auto !important; }
.fancybox-luxe-shorts .fancybox-navigation .fancybox-button--arrow_right { right: 24px !important; left: auto !important; }
.fancybox-luxe-shorts .fancybox-navigation .fancybox-button svg,
.fancybox-luxe-shorts .fancybox-navigation .fancybox-button > div {
  display: none !important;
}
.fancybox-luxe-shorts .fancybox-navigation .fancybox-button::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transition: border-color 0.3s ease;
}
.fancybox-luxe-shorts .fancybox-navigation .fancybox-button--arrow_left::before {
  transform: rotate(-135deg);
  margin-left: 3px;
}
.fancybox-luxe-shorts .fancybox-navigation .fancybox-button--arrow_right::before {
  transform: rotate(45deg);
  margin-right: 3px;
}
.fancybox-luxe-shorts .fancybox-navigation .fancybox-button:hover::before {
  border-color: #1a0e00;
}

/* Hide [disabled] state on first/last nav */
.fancybox-luxe-shorts .fancybox-navigation .fancybox-button[disabled] { opacity: 0.3; pointer-events: none; }

/* Mobile — fill more of viewport */
@media (max-width: 480px) {
  .fancybox-luxe-shorts .fancybox-slide--iframe .fancybox-content,
  .fancybox-luxe-shorts .fancybox-slide--video .fancybox-content {
    width: calc(100vw - 32px) !important;
    height: calc((100vw - 32px) * 16 / 9) !important;
    max-height: 80vh !important;
  }
}
