


*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
 
  --bg-primary: #0a0a0a;
  --bg-secondary: #0f0f0f;
  --bg-tertiary: #161616;
  --bg-card: #1a1a1a;
  --bg-card-hover: #1f1f1f;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #9a7b3c;
  --gold-glow: rgba(201, 169, 110, 0.25);
  --gold-gradient: linear-gradient(135deg, #c9a96e 0%, #e8d5b0 50%, #c9a96e 100%);
  --text-primary: #f5f0e8;
  --text-secondary: #a09888;
  --text-muted: #6a6058;
  --white: #ffffff;
  --red-accent: #c0392b;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(201, 169, 110, 0.12);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-py: clamp(5rem, 10vw, 9rem);
  --section-px: clamp(1.25rem, 5vw, 6rem);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.25s var(--ease-out);
  --transition-med: 0.5s var(--ease-out);
  --transition-slow: 0.8s var(--ease-out);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--bg-secondary);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 10000;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold-gradient);
  width: 0%;
  z-index: 10001;
  transition: none;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1); }
}

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 3rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-title .gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--bg-primary);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1.2rem var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-med);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem var(--section-px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* ---------- Hero Slideshow ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-img {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.5) 40%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 12vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3em;
  letter-spacing: 0.04em;
}

.hero-name .first {
  display: block;
  color: var(--text-primary);
}

.hero-name .last {
  display: block;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-roles {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.hero-roles span {
  color: var(--gold);
  margin: 0 0.3em;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.8rem;
}

.hero-indicator {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.hero-indicator.active {
  background: rgba(255, 255, 255, 0.25);
}

.hero-indicator.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: indicatorFill 5s linear forwards;
}

@keyframes indicatorFill {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- About ---------- */
.about {
  padding: var(--section-py) var(--section-px);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image-wrapper {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 400px;
  margin: 0 auto;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* Decorative gold frame offset */
.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.about-text .bio {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
  padding: 0.8rem 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ---------- Infinite Marquee ---------- */
.marquee-section {
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.marquee-item {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--glass-border);
  flex-shrink: 0;
  transition: border-color var(--transition-fast);
}

.marquee-item:hover {
  border-color: var(--gold);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter var(--transition-fast);
}

.marquee-item:hover img {
  filter: grayscale(0%);
}

/* ---------- Services ---------- */
.services {
  padding: var(--section-py) var(--section-px);
  background: var(--bg-secondary);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--gold-glow);
  background: var(--bg-card-hover);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--gold);
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.3), rgba(201, 169, 110, 0.1));
  border-color: var(--gold);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Acting Showreel ---------- */
.showreel {
  padding: var(--section-py) var(--section-px);
  position: relative;
  background: var(--bg-primary);
}

.showreel-header {
  text-align: center;
  margin-bottom: 4rem;
}

.showreel-header .section-subtitle {
  margin: 0 auto;
}

.showreel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.showreel-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-med);
  cursor: pointer;
  position: relative;
}

.showreel-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--gold-glow);
}

.showreel-thumbnail {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.showreel-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.showreel-card:hover .showreel-thumbnail img {
  transform: scale(1.05);
}

.showreel-thumbnail .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, rgba(10,10,10,0.2) 100%);
  transition: opacity var(--transition-fast);
}

.showreel-card:hover .showreel-thumbnail .overlay {
  opacity: 0.6;
}

.showreel-thumbnail .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.showreel-card:hover .showreel-thumbnail .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px var(--gold-glow);
}

.showreel-thumbnail .play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--bg-primary);
  margin-left: 4px;
}

.showreel-info {
  padding: 1.5rem;
}

.showreel-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.showreel-info .role {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Appearances (Categorized) ---------- */
.appearances {
  padding: var(--section-py) var(--section-px);
  position: relative;
}

.appearances-header {
  text-align: center;
  margin-bottom: 4rem;
}

.appearances-header .section-subtitle {
  margin: 0 auto;
}

/* Category Group */
.appearance-category {
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.category-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.category-icon {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
  border: 1px solid var(--glass-border);
}

.category-label h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-light);
  white-space: nowrap;
}

.category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--glass-border), transparent);
}

/* Appearances Row */
.appearances-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Appearance Card (Updated) */
.appearance-card {
  flex: 0 0 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-med);
  position: relative;
}

.appearance-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px var(--gold-glow);
}

.appearance-poster {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.appearance-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.appearance-card:hover .appearance-poster img {
  transform: scale(1.08);
}

.appearance-poster .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
}

/* Badge on poster */
.appearance-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(201, 169, 110, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold-light);
}

.appearance-info {
  padding: 1.2rem 1.5rem;
}

.appearance-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.appearance-info .role {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Bottom row — mini categories */
.appearance-bottom-row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.appearance-mini-category {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  text-align: center;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.appearance-mini-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.appearance-mini-category:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 20px var(--gold-glow);
}

.appearance-mini-category:hover::before {
  opacity: 1;
}

.mini-category-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
  transition: all var(--transition-fast);
}

.appearance-mini-category:hover .mini-category-icon {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.3), rgba(201, 169, 110, 0.1));
  border-color: var(--gold);
  transform: scale(1.1);
}

.appearance-mini-category h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.appearance-mini-category p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Gallery / Events Scroller ---------- */
.gallery {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  padding: 0 var(--section-px);
  margin-bottom: 3rem;
}

.gallery-header .section-subtitle {
  margin: 0 auto;
}

.scroller {
  position: relative;
  padding: 0 var(--section-px);
}

.scroller-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.scroller__bar {
  width: 56px;
  height: 56px;
}

.bar__track {
  stroke: var(--glass-border);
  stroke-width: 3;
}

.bar__thumb {
  stroke: var(--gold);
  stroke-width: 3;
  transition: stroke-dashoffset 0.1s ease;
}

.scroller-list {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
  cursor: grab;
}

.scroller-list:active {
  cursor: grabbing;
}

.scroller-list::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  flex: 0 0 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gold-dark);
  background: var(--bg-card);
  transition: all var(--transition-med);
  position: relative;
}

.gallery-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
  transform: translateY(-4px);
}

.gallery-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card:hover .gallery-card-image img {
  transform: scale(1.06);
}

.gallery-card-content {
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-card-content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-light);
}

.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.gallery-link:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

/* ---------- Video Reel ---------- */
.video-reel {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.video-reel-header {
  text-align: center;
  padding: 0 var(--section-px);
  margin-bottom: 3rem;
}

.video-reel-header .section-subtitle {
  margin: 0 auto;
}

.video-reel-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  cursor: grab;
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 0 2rem;
}

.video-reel-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.video-reel-wrapper:active {
  cursor: grabbing;
}

.video-reel-track {
  display: flex;
  gap: 2rem;
  padding: 0 var(--section-px);
}

.video-frame {
  flex: 0 0 auto;
  width: 240px;
  aspect-ratio: 9/16;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              var(--gold-gradient) border-box;
  border: 3px solid transparent;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-med);
}

.video-frame:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(201, 169, 110, 0.2), 0 0 20px var(--gold-glow);
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              linear-gradient(135deg, #e8d5b0 0%, #c9a96e 50%, #e8d5b0 100%) border-box;
}

/* Navigation Buttons */
.video-reel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 10;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-reel-nav:hover {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.video-reel-prev {
  left: 2rem;
}

.video-reel-next {
  right: 2rem;
}

/* Progress Bar */
.video-reel-progress-bar {
  width: 180px;
  height: 3px;
  background: rgba(201, 169, 110, 0.12);
  margin: 1.5rem auto 0;
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.video-reel-progress-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  transition: width 0.15s ease-out;
}

@media (max-width: 768px) {
  .video-reel-nav {
    display: none; /* Native touch swipe handles this on mobile */
  }
  .video-frame {
    width: 210px; /* Slightly smaller on mobile screens */
  }
}

/* Phone notch */
.video-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: var(--bg-primary);
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.video-frame video,
.video-frame .video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-card));
  position: relative;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px var(--gold-glow);
}

.play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--bg-primary);
  margin-left: 3px;
}

.video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
  z-index: 3;
}

.video-label h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-primary);
}

.video-label span {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Video Modal ---------- */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.video-modal-content {
  position: relative;
  z-index: 2;
  width: 90vw;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  max-height: 85vh;
  background: linear-gradient(#000, #000) padding-box,
              var(--gold-gradient) border-box;
  border: 3px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.9), 0 0 40px rgba(201, 169, 110, 0.25);
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal.active .video-modal-content {
  transform: translateY(0) scale(1);
}

.video-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.video-modal-close:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: scale(1.1);
  border-color: var(--gold);
}

.video-iframe-wrapper {
  width: 100%;
  height: 100%;
}

.video-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--section-py) var(--section-px);
  background: var(--bg-secondary);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonials-carousel {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius-lg);
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all var(--transition-med);
  position: relative;
  min-width: 290px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-quote-icon {
  font-size: 3rem;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-primary);
}

.testimonial-author-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-author-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Testimonial Navigation */
.testimonial-nav {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  z-index: 2;
}

.testimonial-nav:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

/* Google Badge */
.testimonials-counter {
  text-align: center;
  margin-top: 2.5rem;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.google-badge:hover {
  border-color: var(--gold);
  color: var(--text-primary);
}

/* ---------- Contact / Book Now ---------- */
.contact {
  padding: var(--section-py) var(--section-px);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header .section-subtitle {
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.contact-item:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.03);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
}

.footer-main {
  padding: 4rem var(--section-px) 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .nav-logo {
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social-links {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 1.5rem var(--section-px);
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-bottom span {
  color: var(--gold);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-fast);
  cursor: pointer;
  box-shadow: 0 5px 20px var(--gold-glow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

/* ---------- GSAP Animation Base States ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
}

/* ---------- Responsive (Mobile-First) ---------- */
@media (min-width: 481px) {
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .appearances-row { gap: 1rem; }
  .appearance-card { flex: 0 0 calc(50% - 0.5rem); min-width: 180px; }
  .appearance-bottom-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .category-label h3 { font-size: 1.3rem; }
  .hero-btns { flex-direction: row; flex-wrap: wrap; }
  .video-frame { width: 220px; }
}

@media (min-width: 769px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
  .hero-name { font-size: clamp(3.5rem, 10vw, 7rem); }
  .hero-roles { font-size: clamp(0.85rem, 2vw, 1.1rem); letter-spacing: 0.35em; }
  .about-stats { gap: 1.5rem; }
  .stat { padding: 1.2rem; }
  .stat-number { font-size: 2rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .appearances-row { gap: 1.5rem; }
  .appearance-card { flex: 0 0 calc(33.333% - 1rem); }
  .appearance-bottom-row { gap: 1.5rem; }
  .gallery-card { flex: 0 0 320px; }
  .video-frame { width: 250px; }
  .testimonial-nav { display: flex; }
  .testimonial-card { min-width: 340px; max-width: 380px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .section-title { font-size: clamp(2.2rem, 5vw, 4rem); }
}

@media (min-width: 1025px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
  .about-image-frame { max-width: none; margin: 0; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .appearance-card { flex: 0 0 calc(25% - 1.125rem); }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .video-frame { width: 280px; }
}

/* ---------- Selection ---------- */
::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ---------- Focus States ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
