/* ============================================================
   HOLLYWOOD STARS — MAIN STYLESHEET
   ============================================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --gold-dark: #8A6A1E;
  --orange: #E8621A;
  --orange-light: #FF8040;
  --dark: #050507;
  --dark-2: #0C0C10;
  --dark-3: #12121A;
  --dark-4: #1A1A26;
  --dark-5: #22223A;
  --white: #FFFFFF;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.25);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

input,
textarea,
select {
  font-family: var(--font-body);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
  background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor.cursor-expand {
  width: 22px;
  height: 22px;
  background: var(--gold-light);
  opacity: 0.7;
}

.cursor-follower.cursor-expand {
  width: 70px;
  height: 70px;
  border-color: var(--gold);
}

/* ── PAGE LOADER ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loader-content {
  text-align: center;
}

.loader-star {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  animation: spinner 2s linear infinite;
}

@keyframes spinner {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.loader-text {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.4em;
  color: var(--white);
  margin-bottom: 2rem;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--white-10);
  border-radius: 1px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  width: 0%;
  animation: load 1.8s ease-in-out forwards;
}

@keyframes load {
  0% {
    width: 0%
  }

  100% {
    width: 100%
  }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white-30);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: var(--white);
  border: 1.5px solid var(--white-10);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #FFD700, #B8860B);
  color: var(--dark);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 5, 7, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-star {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.6));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  line-height: 1.1;
  color: var(--white);
}

.logo-sub {
  color: var(--gold);
  font-size: 0.85em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-70);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  border-radius: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark-2);
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(101%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(232, 98, 26, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #050507 0%, #0C0C12 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><pattern id="g" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 2rem 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.badge-star {
  font-size: 0.9rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.92;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-gold {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(201, 168, 76, 0.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--white-70);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--white-70);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--white-10);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--white-30);
  font-weight: 600;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* Hero floating cards */
.hero-floating {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.floating-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px var(--white-10);
  border: 2px solid rgba(201, 168, 76, 0.2);
}

.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}

.fc1 {
  width: 220px;
  height: 300px;
  right: 18%;
  top: 15%;
  transform: rotate(-3deg);
}

.fc2 {
  width: 180px;
  height: 250px;
  right: 38%;
  top: 30%;
  transform: rotate(2deg);
  z-index: 2;
}

.fc3 {
  width: 200px;
  height: 280px;
  right: 8%;
  bottom: 12%;
  transform: rotate(4deg);
}

.hero-floating::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left, transparent 40%, var(--dark) 80%);
}

/* ── MARQUEE ── */
.marquee-strip {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--dark);
  flex-shrink: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.marquee-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  filter: saturate(0.85);
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── CONTAINER ── */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTION STYLES ── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '━━━';
  margin: 0 0.5rem;
  color: rgba(201, 168, 76, 0.3);
  font-size: 0.6em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.text-gold {
  color: var(--gold);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--white-70);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── CELEBRITIES SECTION ── */
.celebrities-section {
  padding: 8rem 0 5rem;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.filter-tab {
  background: var(--white-05);
  border: 1.5px solid var(--white-10);
  color: var(--white-70);
  padding: 0.55rem 1.5rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: none;
  transition: var(--transition);
}

.filter-tab.active,
.filter-tab:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.celebrities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
  margin-bottom: 4rem;
}

/* CELEBRITY CARD */
.celeb-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  transition: var(--transition);
  cursor: none;
  group: true;
}

.celeb-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.celeb-card-img {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.celeb-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.85);
}

.celeb-card:hover .celeb-card-img img {
  transform: scale(1.06);
  filter: saturate(1);
}

.celeb-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--dark-3), transparent);
}

.celeb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.celeb-card:hover .celeb-overlay {
  opacity: 1;
}

.celeb-quick-btns {
  display: flex;
  gap: 0.75rem;
}

.celeb-quick-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  cursor: none;
  transition: var(--transition);
}

.celeb-quick-btn.book {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}

.celeb-quick-btn.view {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid var(--white-30);
}

.celeb-quick-btn:hover {
  transform: scale(1.05);
}

.celeb-genre {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 3;
}

.celeb-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  position: relative;
  z-index: 1;
}

.celeb-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.celeb-tagline {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.celeb-bio {
  font-size: 0.85rem;
  color: var(--white-70);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.celeb-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.celeb-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}

.celeb-price small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--white-70);
  display: block;
  line-height: 1;
}

.celeb-view-btn {
  background: none;
  border: 1.5px solid var(--white-10);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: none;
  transition: var(--transition);
}

.celeb-view-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Section CTA */
.section-cta {
  text-align: center;
  padding-top: 1rem;
}

.section-cta p {
  color: var(--white-70);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* ── FAN CARDS SECTION ── */
.fan-cards-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.fan-cards-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    var(--dark-2);
}

.fan-cards-section .container {
  position: relative;
  z-index: 1;
}

.cards-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.tier-card {
  position: relative;
  background: var(--dark-3);
  border: 1.5px solid var(--white-10);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: var(--transition);
}

.tier-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.3);
}

.tier-featured {
  background: linear-gradient(160deg, #18181F, #0C0C15);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: var(--shadow-gold);
  transform: scale(1.04);
  z-index: 1;
}

.tier-featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.tier-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.tier-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.tier-badge {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tier-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 2rem;
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
  color: var(--gold);
}

.tier-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-70);
  margin-bottom: 2rem;
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.tier-features li {
  font-size: 0.875rem;
  color: var(--white-70);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.tier-celebs-preview {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.tier-celebs-preview img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dark-3);
  margin-left: -12px;
  filter: saturate(0.85);
  transition: var(--transition);
}

.tier-celebs-preview img:first-child {
  margin-left: 0;
}

.tier-celebs-preview img:hover {
  transform: scale(1.1);
  filter: saturate(1);
  z-index: 10;
}

.tier-celebs-preview span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-05);
  border: 2px solid var(--dark-3);
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  z-index: 0;
}

.tier-btn {
  width: 100%;
  justify-content: center;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 8rem 0;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step-card {
  flex: 1;
  padding: 2.5rem 2rem;
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  text-align: center;
}

.step-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  margin-bottom: -0.5rem;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.step-card p {
  font-size: 0.875rem;
  color: var(--white-70);
  line-height: 1.65;
}

.step-connector {
  font-size: 1.5rem;
  color: var(--gold-dark);
  padding-top: 3rem;
  flex-shrink: 0;
  padding: 2rem 0.5rem;
  align-self: center;
  opacity: 0.5;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 8rem 0;
  background: var(--dark-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
}

.t-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.t-celeb-ref {
  margin-bottom: 1rem;
}

.t-celeb-ref img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  filter: saturate(0.9);
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.t-author span {
  font-size: 0.75rem;
  color: var(--gold);
}

/* ── CONTACT CTA ── */
.contact-cta {
  padding: 8rem 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cta-text .section-tag {
  text-align: left;
}

.cta-text .section-tag::before {
  display: none;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.cta-text p {
  font-size: 1rem;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ci-icon {
  font-size: 1.1rem;
}

.contact-item a {
  color: var(--white-70);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--gold);
}

/* Contact Form */
.cta-form-wrapper {
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white-70);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white-05);
  border: 1.5px solid var(--white-10);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-30);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  cursor: none;
}

.form-group select option {
  background: var(--dark-3);
  color: var(--white);
}

/* ── FOOTER ── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--white-05);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--white-70);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-70);
  transition: var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: var(--white-70);
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-col p {
  font-size: 0.875rem;
  color: var(--white-70);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input {
  background: var(--white-05);
  border: 1.5px solid var(--white-10);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--white-05);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--white-30);
}

.footer-bottom a {
  color: var(--white-70);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ════════════════════════
   CELEBRITY DETAIL PAGE
   ════════════════════════ */
.celeb-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}

.celeb-hero-bg {
  position: absolute;
  inset: 0;
}

.celeb-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}

.celeb-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 5, 7, 0.95) 40%, rgba(5, 5, 7, 0.3) 100%),
    linear-gradient(to top, var(--dark) 0%, transparent 50%);
}

.celeb-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.celeb-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-70);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3rem;
  transition: color 0.3s;
}

.celeb-back-btn:hover {
  color: var(--gold);
}

.celeb-hero-badge {
  margin-bottom: 1rem;
}

.celeb-hero-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.92;
  margin-bottom: 0.5rem;
}

.celeb-hero-tagline {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.celeb-hero-bio {
  font-size: 1rem;
  color: var(--white-70);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.celeb-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.celeb-quick-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cqs-item {}

.cqs-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white-30);
  margin-bottom: 4px;
}

.cqs-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

/* Celebrity Detail Body */
.celeb-detail {
  background: var(--dark);
}

.celeb-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  padding: 6rem 0;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.detail-section {
  margin-bottom: 3rem;
}

.detail-section h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.bio-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.profile-portrait {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid var(--white-10);
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

@media (max-width:768px) {
  .bio-content {
    flex-direction: column;
  }

  .profile-portrait {
    width: 100%;
    height: auto;
    max-height: 400px;
  }
}

.detail-section p {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.filmography-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.film-item {
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.film-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.film-year {
  font-size: 0.8rem;
  color: var(--gold);
}

.film-role {
  font-size: 0.8rem;
  color: var(--white-70);
  margin-top: 4px;
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.award-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.875rem 1rem;
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
}

.award-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.award-info strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.award-info span {
  font-size: 0.8rem;
  color: var(--white-70);
}

/* Booking Sidebar */
.booking-sidebar {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: var(--dark-3);
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.booking-card-header {
  background: linear-gradient(135deg, #1A1A26, #12121A);
  padding: 2rem;
  border-bottom: 1px solid var(--white-10);
  text-align: center;
}

.booking-card-header .celeb-mini-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
  filter: saturate(0.8);
}

.booking-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.booking-card-header p {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

.booking-card-body {
  padding: 2rem;
}

.tier-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.tier-radio {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white-05);
  border: 1.5px solid var(--white-10);
  border-radius: var(--radius);
  padding: 1rem;
  cursor: none;
  transition: var(--transition);
  position: relative;
}

.tier-radio input[type="radio"] {
  display: none;
}

.tier-radio.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.tier-radio-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.tier-radio-info strong {
  display: block;
  font-size: 0.875rem;
  color: var(--white);
}

.tier-radio-info span {
  font-size: 0.78rem;
  color: var(--white-70);
}

.tier-radio-price {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}

.booking-form-group {
  margin-bottom: 1rem;
}

.booking-form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-70);
  margin-bottom: 0.4rem;
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
  width: 100%;
  background: var(--white-05);
  border: 1.5px solid var(--white-10);
  border-radius: var(--radius);
  padding: 0.75rem 0.875rem;
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
  font-family: var(--font-body);
}

.booking-form-group input::placeholder {
  color: var(--white-30);
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
  border-color: var(--gold);
}

.booking-form-group select {
  appearance: none;
  cursor: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 12px;
}

.booking-form-group select option {
  background: var(--dark-3);
}

.booking-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--white-10);
  padding-top: 1rem;
  margin-bottom: 1.25rem;
}

.booking-total span {
  font-size: 0.85rem;
  color: var(--white-70);
}

.booking-total strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

/* Celebrity nav */
.celeb-nav-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--white-10);
  padding: 1.5rem 0;
}

.celeb-nav-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cn-prev,
.cn-next {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white-70);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s;
}

.cn-prev:hover,
.cn-next:hover {
  color: var(--gold);
}

.cn-arrow {
  font-size: 1.25rem;
}

.cn-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white-10);
  filter: saturate(0.85);
  transition: border-color 0.3s;
}

.cn-prev:hover .cn-img,
.cn-next:hover .cn-img {
  border-color: var(--gold);
}

.cn-all {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width:1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards-tier-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .tier-featured {
    transform: none;
  }

  .tier-featured:hover {
    transform: translateY(-8px);
  }

  .celeb-detail-grid {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }
}

@media (max-width:900px) {
  .hero-floating {
    display: none;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-connector {
    transform: rotate(90deg);
    padding: 0;
    align-self: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .celeb-hero-name {
    font-size: clamp(3rem, 10vw, 6rem);
  }
}

@media (max-width:768px) {

  .nav-links,
  .nav-ctas {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .celebrities-grid {
    grid-template-columns: 1fr;
  }

  .filmography-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:480px) {
  .hero-stats {
    gap: 1.25rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* ── UTILS ── */
.hidden {
  opacity: 0;
  transform: translateY(30px);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.no-scroll {
  overflow: hidden;
}