/* ============================================================
   StarReach – Light / White Theme  
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg:          #ffffff;
  --bg-soft:     #f9f8f6;
  --surface:     #f4f2ee;
  --surface-2:   #ece9e3;
  --border:      rgba(0,0,0,0.09);
  --border-dark: rgba(0,0,0,0.15);
  --gold:        #b8862a;
  --gold-light:  #d4a545;
  --gold-dim:    rgba(184,134,42,0.10);
  --gold-border: rgba(184,134,42,0.28);
  --text:        #1a1814;
  --text-2:      #3d3a34;
  --muted:       #6b6660;
  --muted-2:     #9e9890;
  --error:       #c94040;
  --success:     #2e8b57;
  --info:        #2662c4;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-xs:   5px;
  --nav-h:       72px;
  --shadow:      0 2px 16px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 32px rgba(0,0,0,0.11);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Outfit', sans-serif; font-weight: 400; overflow-x: hidden; line-height: 1.6; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
nav.scrolled { background: #fff; box-shadow: var(--shadow); }
.nav-spacer { height: var(--nav-h); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: -.01em; }
.nav-logo span { color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { color: var(--muted); font-size: .88rem; font-weight: 500; letter-spacing: .02em; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--gold) !important; color: #fff !important; padding: 8px 22px; border-radius: 6px; font-weight: 600 !important; transition: background .2s, transform .15s !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: .93rem; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,134,42,.25); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border-dark); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-ghost { background: var(--surface); color: var(--text-2); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--border-dark); }
.btn-danger { background: rgba(201,64,64,.08); color: var(--error); border: 1px solid rgba(201,64,64,.2); }
.btn-danger:hover { background: rgba(201,64,64,.15); }
.btn-sm { padding: 7px 16px; font-size: .82rem; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 94vh; display: flex; align-items: center;
  overflow: hidden; padding: 0 5%;
  background: linear-gradient(135deg, #fff 0%, #fdf9f2 60%, #f8f2e4 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .035;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-glow {
  position: absolute; top: 0; right: -5%;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(184,134,42,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; animation: fadeUp .9s ease both; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
  border-radius: 999px; background: var(--gold-dim); border: 1px solid var(--gold-border);
  margin-bottom: 1.6rem;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-eyebrow-text { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6.5vw, 5rem); font-weight: 700;
  line-height: 1.07; margin-bottom: 1.3rem; letter-spacing: -.025em; color: var(--text);
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: clamp(.98rem, 1.6vw, 1.1rem); color: var(--muted); max-width: 500px; margin-bottom: 2.4rem; font-weight: 300; line-height: 1.85; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 3px; }
.hero-divider { width: 1px; height: 36px; background: var(--border-dark); }
.hero-img-side {
  position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
  overflow: hidden; display: none;
}
.hero-img-side img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }

/* ── SECTION BASE ─────────────────────────────────────────── */
section { padding: 5.5rem 5%; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.space { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: .9rem; }
.eyebrow-line { width: 28px; height: 2px; background: var(--gold); border-radius: 1px; }
.eyebrow-text { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; margin-bottom: .9rem; color: var(--text); }
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { color: var(--muted); font-size: .97rem; font-weight: 300; max-width: 520px; line-height: 1.8; }
.view-all { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: .88rem; font-weight: 600; letter-spacing: .03em; transition: gap .2s; }
.view-all:hover { gap: 10px; }
.view-all svg { width: 14px; height: 14px; }

/* surfaces */
.bg-soft { background: var(--bg-soft); }
.bg-surface { background: var(--surface); }

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee-wrap { overflow: hidden; padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.marquee-track { display: flex; gap: 2.8rem; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-size: .8rem; color: var(--muted-2); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.service-card { background: #fff; padding: 2.4rem 2rem; position: relative; transition: background .25s; }
.service-card:hover { background: var(--bg-soft); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 2rem; right: 2rem; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity .3s; }
.service-card:hover::after { opacity: 1; }
.service-icon { width: 50px; height: 50px; border-radius: 10px; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; font-size: 1.4rem; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; margin-bottom: .5rem; color: var(--text); }
.service-card p { color: var(--muted); font-size: .88rem; line-height: 1.78; font-weight: 300; }

/* ── CELEBRITY CARDS ──────────────────────────────────────── */
.celebrities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
.celeb-card { position: relative; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); transition: border-color .3s, transform .3s, box-shadow .3s; display: block; color: inherit; text-decoration: none; }
.celeb-card:hover { border-color: var(--gold-border); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.celeb-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.celeb-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.celeb-card:hover .celeb-img-wrap img { transform: scale(1.05); }
.celeb-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,15,5,.75) 0%, rgba(20,15,5,.08) 50%, transparent 100%); }
.celeb-badge { position: absolute; top: 12px; right: 12px; padding: 4px 12px; background: rgba(255,255,255,.88); backdrop-filter: blur(8px); border-radius: 999px; font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; border: 1px solid var(--gold-border); }
.celeb-info { padding: 1.4rem; border-top: 1px solid var(--border); }
.celeb-info h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: .3rem; color: var(--text); }
.celeb-info .bio { font-size: .83rem; color: var(--muted); line-height: 1.65; font-weight: 300; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.celeb-cta { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 700; color: var(--gold); letter-spacing: .05em; text-transform: uppercase; transition: gap .2s; }
.celeb-card:hover .celeb-cta { gap: 10px; }

/* ── FAN CARDS ────────────────────────────────────────────── */
.fan-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.fan-card { border-radius: var(--radius); padding: 2.4rem 2rem; border: 1.5px solid var(--border); position: relative; transition: border-color .3s, transform .3s, box-shadow .3s; background: #fff; box-shadow: var(--shadow); }
.fan-card:hover { border-color: var(--gold-border); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.fan-card.regular { background: #fff; }
.fan-card.premium { background: linear-gradient(140deg, #f8f4ff 0%, #fff 100%); }
.fan-card.elite { background: linear-gradient(140deg, #fdf7ea 0%, #fff 100%); border-color: var(--gold-border); }
.fan-card.elite::before { content: 'Most Popular'; position: absolute; top: 0; right: 0; padding: 5px 16px; background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-bottom-left-radius: 8px; border-top-right-radius: 10px; }
.tier-badge { display: inline-block; padding: 4px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.3rem; }
.fan-card.regular .tier-badge { background: var(--surface-2); color: var(--muted); }
.fan-card.premium .tier-badge { background: rgba(102,70,180,.1); color: #6646b4; }
.fan-card.elite .tier-badge { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-border); }
.fan-card h3 { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }
.fan-card .price { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: .8rem; }
.fan-card .fan-desc { color: var(--muted); font-size: .87rem; line-height: 1.78; font-weight: 300; margin-bottom: 1.6rem; }
.fan-perks { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.8rem; }
.fan-perks li { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: var(--text-2); font-weight: 400; }
.fan-perks li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; background: var(--gold-dim) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23b8862a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat; border: 1px solid var(--gold-border); }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; }
.step { padding: 2rem 1.5rem; position: relative; }
.step-num { font-family: 'Playfair Display', serif; font-size: 3.8rem; font-weight: 700; color: rgba(184,134,42,.12); line-height: 1; margin-bottom: .9rem; }
.step h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; margin-bottom: .45rem; color: var(--text); }
.step p { font-size: .86rem; color: var(--muted); line-height: 1.78; font-weight: 300; }
.step-connector { position: absolute; top: 2.5rem; right: 0; width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--gold-light), transparent); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); transition: border-color .3s, box-shadow .3s; }
.testimonial-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-md); }
.tq { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); line-height: 1; margin-bottom: .8rem; }
.testimonial-card p { font-size: .9rem; color: var(--muted); line-height: 1.82; font-weight: 300; margin-bottom: 1.4rem; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-dim); border: 1.5px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; flex-shrink: 0; }
.t-name { font-size: .9rem; font-weight: 600; color: var(--text); }
.t-title { font-size: .76rem; color: var(--muted-2); }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, #1a1208, #2a1e0a); padding: 5.5rem 5%; text-align: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; letter-spacing: -.02em; margin-bottom: .9rem; color: #f5ead8; }
.cta-band h2 em { font-style: italic; color: var(--gold-light); }
.cta-band p { color: rgba(245,234,216,.6); font-size: .97rem; font-weight: 300; margin: 0 auto 2.4rem; max-width: 440px; line-height: 1.8; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-outline { border-color: rgba(245,234,216,.35); color: #f5ead8; }
.cta-band .btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 1px 6px rgba(0,0,0,.04); }
.faq-q { width: 100%; background: none; border: none; color: var(--text); font-family: 'Outfit', sans-serif; font-size: .93rem; font-weight: 500; text-align: left; padding: 1.1rem 1.4rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color .2s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: transform .3s, background .2s, border-color .2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); }
.faq-icon svg { width: 10px; height: 10px; stroke: var(--muted); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.faq-item.open .faq-icon svg { stroke: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 1.4rem 1.3rem; font-size: .87rem; color: var(--muted); line-height: 1.82; font-weight: 300; border-top: 1px solid var(--border); padding-top: .9rem; margin-top: 0; }
.faq-item.open .faq-a { max-height: 240px; }

/* ── FORMS ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-2); letter-spacing: .03em; text-transform: uppercase; margin-bottom: .5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-family: 'Outfit', sans-serif; font-size: .93rem; outline: none; transition: border-color .2s, box-shadow .2s; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,134,42,.1); }
.form-group input::placeholder { color: var(--muted-2); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b8862a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; background-color: #fff; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: .78rem; color: var(--muted-2); margin-top: .35rem; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: .3rem; color: var(--text); }
.form-subtitle { color: var(--muted); font-size: .9rem; margin-bottom: 1.8rem; }
.form-divider { display: flex; align-items: center; gap: 12px; margin: 1.4rem 0; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.form-divider span { font-size: .8rem; color: var(--muted-2); }

/* ── ALERTS ───────────────────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: var(--radius-xs); font-size: .88rem; margin-bottom: 1.2rem; font-weight: 500; }
.alert-success { background: rgba(46,139,87,.08); border: 1px solid rgba(46,139,87,.25); color: var(--success); }
.alert-error   { background: rgba(201,64,64,.08); border: 1px solid rgba(201,64,64,.25); color: var(--error); }
.alert-warning { background: rgba(184,134,42,.08); border: 1px solid rgba(184,134,42,.25); color: var(--gold); }
.alert-info    { background: rgba(38,98,196,.08); border: 1px solid rgba(38,98,196,.25); color: var(--info); }

/* ── BADGES ───────────────────────────────────────────────── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .73rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.badge-success { background: rgba(46,139,87,.1); color: var(--success); }
.badge-warning { background: rgba(184,134,42,.1); color: var(--gold); }
.badge-error   { background: rgba(201,64,64,.1); color: var(--error); }
.badge-info    { background: rgba(38,98,196,.1); color: var(--info); }
.badge-muted   { background: var(--surface-2); color: var(--muted); }

/* ── PAGINATION ───────────────────────────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.pg-btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--radius-xs); background: #fff; border: 1.5px solid var(--border); color: var(--muted); font-size: .88rem; font-weight: 500; transition: all .2s; box-shadow: 0 1px 4px rgba(0,0,0,.05); }
.pg-btn:hover, .pg-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero { padding: 4rem 5% 3.5rem; background: linear-gradient(135deg, var(--bg-soft), #fdf9f2); border-bottom: 1px solid var(--border); }
.page-hero-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--muted-2); margin-bottom: 1rem; }
.page-hero-breadcrumb a { color: var(--muted-2); transition: color .2s; }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -.025em; margin-bottom: .6rem; color: var(--text); }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { color: var(--muted); font-size: .97rem; font-weight: 300; max-width: 560px; line-height: 1.8; }

/* ── FILTERS BAR ──────────────────────────────────────────── */
.filters-bar { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; padding: 1.2rem 5%; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 1px 6px rgba(0,0,0,.04); }
.filters-bar .search-wrap { position: relative; flex: 1; min-width: 220px; }
.filters-bar .search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted-2); }
.filters-bar input { width: 100%; padding: 10px 12px 10px 38px; background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-family: 'Outfit', sans-serif; font-size: .9rem; outline: none; transition: border-color .2s, box-shadow .2s; }
.filters-bar input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,134,42,.08); }
.filters-bar select { padding: 10px 36px 10px 14px; background: var(--bg-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b8862a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-family: 'Outfit', sans-serif; font-size: .9rem; outline: none; appearance: none; cursor: pointer; transition: border-color .2s; }
.filters-bar select:focus { border-color: var(--gold); }

/* ── CELEBRITY DETAIL ─────────────────────────────────────── */
.detail-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }
.detail-img-wrap { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.detail-img-wrap img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); aspect-ratio: 3/4; object-fit: cover; box-shadow: var(--shadow-md); }
.detail-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: .6rem; }
.detail-gallery img { border-radius: var(--radius-xs); aspect-ratio: 1; object-fit: cover; cursor: pointer; border: 1.5px solid var(--border); transition: border-color .2s, transform .2s; }
.detail-gallery img:hover { border-color: var(--gold); transform: scale(1.03); }
.detail-body h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -.025em; margin-bottom: .4rem; color: var(--text); }
.detail-category { display: inline-block; margin-bottom: 1.2rem; padding: 4px 14px; border-radius: 999px; background: var(--gold-dim); border: 1px solid var(--gold-border); font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: .07em; text-transform: uppercase; }
.detail-bio { font-size: .97rem; color: var(--muted); line-height: 1.88; font-weight: 300; margin-bottom: 2rem; }
.detail-section-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 1.2rem; padding-bottom: .7rem; border-bottom: 1.5px solid var(--border); color: var(--text); }
.service-list { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
.service-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.5rem; background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius-sm); transition: border-color .2s, box-shadow .2s; }
.service-row:hover { border-color: var(--gold-border); box-shadow: var(--shadow); }
.service-row-info h4 { font-size: .95rem; font-weight: 600; margin-bottom: .2rem; color: var(--text); }
.service-row-info p { font-size: .82rem; color: var(--muted); }
.service-row-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.service-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.wallet-list { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.wallet-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.4rem; background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius-sm); }
.currency-badge { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-dim); border: 1.5px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 800; color: var(--gold); flex-shrink: 0; }
.wallet-address { font-size: .78rem; color: var(--muted); font-family: monospace; word-break: break-all; }
.copy-btn { background: none; border: 1px solid var(--border); border-radius: 4px; cursor: pointer; color: var(--muted-2); padding: 5px 9px; transition: color .2s, border-color .2s; flex-shrink: 0; font-size: .76rem; font-family: 'Outfit', sans-serif; }
.copy-btn:hover { color: var(--gold); border-color: var(--gold); }

/* ── BOOKING ──────────────────────────────────────────────── */
.booking-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem; padding: 3rem 5%; }
.booking-summary { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.8rem; height: fit-content; position: sticky; top: calc(var(--nav-h) + 1.5rem); box-shadow: var(--shadow); }
.booking-summary img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 1.2rem; }
.booking-summary h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: .2rem; color: var(--text); }
.booking-summary .b-category { font-size: .78rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .9rem; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .87rem; }
.summary-row:last-child { border-bottom: none; }
.summary-label { color: var(--muted); }
.summary-val { font-weight: 600; color: var(--text); }
.summary-val.gold { color: var(--gold); }
.booking-steps { display: flex; margin-bottom: 2rem; background: var(--surface); border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); }
.booking-step { flex: 1; text-align: center; padding: .75rem .5rem; font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-2); border-bottom: 3px solid transparent; transition: color .3s, border-color .3s, background .3s; }
.booking-step.active { color: var(--gold); border-color: var(--gold); background: #fff; }
.booking-step.done { color: var(--success); border-color: rgba(46,139,87,.3); }
.wallet-box { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 1rem 1.2rem; }
.wallet-box .currency-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.wallet-box .address { font-family: monospace; font-size: .82rem; color: var(--text-2); word-break: break-all; }

/* ── DASHBOARD ────────────────────────────────────────────── */
.dashboard-layout { display: grid; grid-template-columns: 250px 1fr; min-height: calc(100vh - var(--nav-h)); }
.dash-sidebar { background: #fff; border-right: 1.5px solid var(--border); padding: 2rem 0; }
.dash-sidebar-user { padding: 0 1.5rem 1.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.dash-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-dim); border: 2px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: .7rem; }
.dash-username { font-size: .97rem; font-weight: 600; color: var(--text); }
.dash-useremail { font-size: .76rem; color: var(--muted-2); }
.dash-nav { list-style: none; padding: 0 .5rem; }
.dash-nav a { display: flex; align-items: center; gap: 10px; padding: .72rem 1rem; border-radius: var(--radius-xs); font-size: .88rem; font-weight: 500; color: var(--muted); transition: color .2s, background .2s; }
.dash-nav a:hover { color: var(--text); background: var(--bg-soft); }
.dash-nav a.active { color: var(--gold); background: var(--gold-dim); }
.dash-nav svg { width: 17px; height: 17px; flex-shrink: 0; }
.dash-main { padding: 2.5rem; background: var(--bg-soft); }
.dash-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: 2rem; color: var(--text); }
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.4rem; box-shadow: var(--shadow); }
.stat-card-label { font-size: .72rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; font-weight: 600; }
.stat-card-val { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }

/* ── TABLE ────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; font-size: .87rem; }
table th { text-align: left; padding: .85rem 1rem; font-size: .73rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); border-bottom: 1.5px solid var(--border); white-space: nowrap; background: var(--bg-soft); }
table td { padding: 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; color: var(--text); }
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: rgba(184,134,42,.03); }
.td-img { width: 44px; height: 44px; border-radius: var(--radius-xs); object-fit: cover; border: 1px solid var(--border); }
.td-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.td-actions a, .td-actions button { display: inline-flex; align-items: center; justify-content: center; padding: 5px 12px; border-radius: var(--radius-xs); font-size: .76rem; font-weight: 600; cursor: pointer; text-decoration: none; border: none; transition: background .2s; font-family: 'Outfit', sans-serif; }
.action-edit   { background: rgba(38,98,196,.08); color: var(--info); }
.action-edit:hover   { background: rgba(38,98,196,.18); }
.action-delete { background: rgba(201,64,64,.08); color: var(--error); }
.action-delete:hover { background: rgba(201,64,64,.18); }
.action-view   { background: var(--gold-dim); color: var(--gold); }
.action-view:hover   { background: rgba(184,134,42,.2); }
.action-approve { background: rgba(46,139,87,.08); color: var(--success); }
.action-approve:hover { background: rgba(46,139,87,.18); }

/* ── ADMIN LAYOUT ─────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar { background: #fff; border-right: 1.5px solid var(--border); padding: 1.5rem 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-logo { padding: .5rem 1.5rem 1.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.admin-logo-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.admin-logo-sub { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-top: 2px; }
.admin-nav-section { padding: .25rem 1.5rem; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-top: 1rem; margin-bottom: .3rem; }
.admin-nav { list-style: none; padding: 0 .5rem; }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: .72rem 1rem; border-radius: var(--radius-xs); font-size: .87rem; font-weight: 500; color: var(--muted); transition: color .2s, background .2s; }
.admin-nav a:hover { color: var(--text); background: var(--bg-soft); }
.admin-nav a.active { color: var(--gold); background: var(--gold-dim); border-left: 2px solid var(--gold); }
.admin-nav svg { width: 17px; height: 17px; flex-shrink: 0; }
.admin-main { padding: 2.5rem; background: var(--bg-soft); }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.admin-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--text); }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.2rem; margin-bottom: 2.5rem; }
.admin-stat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.admin-stat::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.admin-stat-label { font-size: .72rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; font-weight: 700; }
.admin-stat-val { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.admin-stat-sub { font-size: .76rem; color: var(--muted-2); margin-top: .4rem; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: var(--shadow); }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 1.2rem; padding-bottom: .8rem; border-bottom: 1px solid var(--border); color: var(--text); }

/* ── MISC ─────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.mono { font-family: monospace; font-size: .84rem; }
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--muted); }
.empty-state svg { width: 48px; height: 48px; margin: 0 auto 1rem; opacity: .25; color: var(--gold); }
.empty-state p { font-size: .95rem; }
.upload-wrap { position: relative; }
.upload-area { border: 2px dashed var(--gold-border); border-radius: var(--radius-sm); padding: 1.5rem; text-align: center; cursor: pointer; transition: border-color .2s, background .2s; background: var(--gold-dim); }
.upload-area:hover { border-color: var(--gold); background: rgba(184,134,42,.06); }
.upload-area p { font-size: .85rem; color: var(--muted); }
.upload-area span { font-size: .8rem; color: var(--gold); font-weight: 600; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 4rem 5% 2rem; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: .9rem; }
.footer-logo span { color: var(--text); }
.footer-desc { font-size: .83rem; color: var(--muted); line-height: 1.82; font-weight: 300; margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted-2); transition: color .2s, border-color .2s, box-shadow .2s; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.footer-socials a:hover { color: var(--gold); border-color: var(--gold-border); }
.footer-socials svg { width: 15px; height: 15px; }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { font-size: .86rem; color: var(--muted); font-weight: 300; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .78rem; color: var(--muted-2); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: .78rem; color: var(--muted-2); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .detail-grid { grid-template-columns: 1fr 1.2fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-img-wrap { position: relative; top: 0; max-width: 420px; }
  .booking-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: fixed; left: -270px; height: 100vh; z-index: 300; transition: left .3s; width: 260px; box-shadow: var(--shadow-md); }
  .admin-sidebar.open { left: 0; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: #fff; flex-direction: column; padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--border); z-index: 199; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 3.5rem 5%; }
  .admin-main { padding: 1.2rem; }
  .hero-stats { gap: 20px; }
  .hero-divider { display: none; }
  .booking-layout { padding: 1.5rem 5%; }
}
