/* ==========================================================================
   ELENA VANCE — LIFESTYLE & FASHION CREATOR PORTFOLIO
   Modern, Lightweight, Pure CSS (Dark / Neutral Editorial Theme)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Syne:wght@500;600;700;800&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  --bg-main: #0a0b0d;
  --bg-surface: #12141a;
  --bg-card: rgba(22, 25, 33, 0.75);
  --bg-card-hover: rgba(30, 34, 45, 0.9);
  --bg-glass: rgba(18, 20, 26, 0.6);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.16);
  --border-gold: rgba(232, 196, 153, 0.35);

  --text-primary: #f5f6f8;
  --text-secondary: #9da3af;
  --text-muted: #646a78;
  --text-gold: #e8c499;

  --accent-gold: #dfb887;
  --accent-gold-hover: #edd1aa;
  --accent-gradient: linear-gradient(135deg, #f0cfab 0%, #c49660 100%);
  --accent-gradient-glow: rgba(223, 184, 135, 0.18);

  --font-display: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 24px rgba(223, 184, 135, 0.22);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1240px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(223, 184, 135, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(70, 85, 120, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

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

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

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

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- Navbar / Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--bg-glass);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
  display: inline-block;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--border-highlight);
}

.nav-link.active {
  background: var(--accent-gradient);
  color: #0d0f14;
  border-color: transparent;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

/* Back Link in Subpages */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.back-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-color: var(--accent-gold);
  transform: translateX(-3px);
}

/* --- Hero Section --- */
.hero-section {
  padding: 3.5rem 0 4.5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-portrait-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  aspect-ratio: 4 / 5;
}

.hero-portrait-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(10, 11, 13, 0.8) 100%);
  pointer-events: none;
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform var(--transition-slow);
}

.hero-portrait-wrap:hover .hero-portrait-img {
  transform: scale(1.03);
}

.hero-live-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 11, 13, 0.75);
  backdrop-filter: blur(12px);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.live-pulse {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.creator-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-name-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.verified-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--accent-gold);
  color: #12141a;
  border-radius: 50%;
  flex-shrink: 0;
}

.verified-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-handle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-bio {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  max-width: 620px;
}

.hero-bio-block {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 580px;
}

.hero-bio-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-gold);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hero-bio-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 400;
}

.hero-locations {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-locations span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-top: 0.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* --- CTA Buttons & Smartlink Trigger --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--accent-gradient);
  color: #0d0f14;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(223, 184, 135, 0.35);
  color: #000;
}

.btn-primary .btn-arrow {
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-highlight);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.58rem 1.25rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* --- Section Headings --- */
.section {
  padding: 4.5rem 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.section-subtitle {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
}

/* --- Photo Teaser Grid (index.html) --- */
.photo-teasers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  aspect-ratio: 3 / 4;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.photo-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-md);
}

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

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

.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 11, 13, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.photo-card-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  margin-bottom: 0.4rem;
}

.photo-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.section-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* --- Video Teaser Cards (index.html) --- */
.video-teasers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.video-teaser-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  aspect-ratio: 9 / 14;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  cursor: pointer;
}

.video-teaser-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-lg);
}

.video-teaser-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-teaser-media img,
.video-teaser-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.video-teaser-card:hover .video-teaser-media img,
.video-teaser-card:hover .video-teaser-media video {
  transform: scale(1.04);
}

.video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(18, 20, 26, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-fast);
  z-index: 2;
}

.video-teaser-card:hover .video-play-badge {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--accent-gold);
  color: #0a0b0d;
}

.video-play-badge svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-left: 3px;
}

.video-teaser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 40%, rgba(10, 11, 13, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  z-index: 1;
}

.video-stat-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  background: rgba(10, 11, 13, 0.65);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.video-teaser-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.video-teaser-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.video-teaser-caption {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- Gallery Page (photos.html) --- */
.page-top-bar {
  padding: 2.5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.gallery-filters {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-gold);
  color: #0d0f14;
  border-color: var(--accent-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  aspect-ratio: 3 / 4;
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-md);
}

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

.gallery-item:hover .gallery-item-img {
  transform: scale(1.05);
}

.gallery-item-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 11, 13, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.15rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-item-info {
  opacity: 1;
}

.gallery-item-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}

/* --- Adsterra Ad Slots & Styling --- */
.ad-slot-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2.5rem 0;
  width: 100%;
}

.ad-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Native Card inside Gallery Grid (Every 4 items) */
.adsterra-native-card {
  grid-column: span 1;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-gold);
  background: rgba(223, 184, 135, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.adsterra-native-card:hover {
  background: rgba(223, 184, 135, 0.06);
  border-color: var(--accent-gold);
}

.ad-native-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.ad-native-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: var(--text-gold);
}

.ad-native-placeholder p {
  font-size: 0.82rem;
  font-weight: 500;
}

/* 300x250 Banner Slot */
.adsterra-300x250-container {
  width: 300px;
  min-height: 250px;
  border: 1px dashed var(--border-highlight);
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  margin: 1rem auto;
}

/* Sticky Bottom Ad Container (videos.html) */
.adsterra-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(12, 14, 18, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-highlight);
  padding: 0.65rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-base);
}

.adsterra-sticky-bar.hidden {
  transform: translateY(100%);
}

.sticky-ad-close {
  position: absolute;
  top: -14px;
  right: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-full);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.sticky-ad-close:hover {
  background: var(--accent-gold);
  color: #000;
}

.sticky-ad-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 728px;
  min-height: 50px;
}

/* --- Video Feed Page (videos.html) --- */
.reels-feed-container {
  max-width: 1050px;
  margin: 0 auto;
  padding-bottom: 7rem; /* Room for sticky ad */
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.reel-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  aspect-ratio: 9 / 16;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.reel-video-element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 40%, rgba(10,11,13,0.92) 100%);
  pointer-events: none;
  z-index: 1;
}

.reel-sound-toggle {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 11, 13, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.reel-sound-toggle:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.25);
}

.reel-sound-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.reel-bottom-info {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 11, 13, 0.85) 100%);
}

.reel-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.reel-caption {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Play/Pause state icon animation */
.reel-play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-play-indicator.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.reel-play-indicator svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Interstitial Native Ad Card in Reels */
.reels-native-ad-card {
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-gold);
  background: rgba(223, 184, 135, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  aspect-ratio: 9 / 16;
  box-shadow: var(--shadow-md);
  position: relative;
}

/* --- Lightbox Modal --- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 9, 12, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

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

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-caption-wrap {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  gap: 1rem;
}

.lightbox-caption {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.lightbox-counter {
  font-size: 0.8rem;
  color: var(--text-gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
}

.lightbox-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1010;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--transition-fast);
}

.lightbox-close-btn:hover {
  background: var(--accent-gold);
  color: #000;
  transform: rotate(90deg);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1010;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--transition-fast);
}

.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-gold);
}

.lightbox-prev-btn {
  left: 1.5rem;
}

.lightbox-next-btn {
  right: 1.5rem;
}

/* --- Toast Notification --- */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(22, 25, 33, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--accent-gold);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-msg.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin: 2rem auto;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: auto;
    padding: 0.2rem 0;
  }

  .nav-wrap {
    height: 52px;
    gap: 0.4rem;
  }

  .brand-logo {
    font-size: 1.05rem;
  }

  .nav-links {
    display: flex !important;
    gap: 0.3rem;
  }

  .nav-link {
    font-size: 0.78rem;
    padding: 0.32rem 0.65rem;
  }

  .hero-section {
    padding: 1.5rem 0 2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }

  .hero-portrait-wrap {
    width: 125px;
    height: 125px;
    max-width: 125px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  }

  .hero-name {
    font-size: 2rem;
  }

  .hero-bio-title {
    font-size: 1.15rem;
  }

  .hero-bio-text {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-name-wrap,
  .hero-actions {
    justify-content: center;
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .photo-teasers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .video-teasers-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .reels-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .lightbox-prev-btn {
    left: 0.5rem;
  }

  .lightbox-next-btn {
    right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .nav-wrap {
    height: 48px;
  }

  .brand-logo {
    font-size: 0.98rem;
  }

  .nav-link {
    font-size: 0.74rem;
    padding: 0.28rem 0.55rem;
  }

  .btn-primary,
  .btn-secondary {
    width: auto;
    max-width: 100%;
    padding: 0.52rem 1.1rem;
    font-size: 0.8rem;
  }

  .hero-portrait-wrap {
    width: 105px;
    height: 105px;
    max-width: 105px;
  }

  .hero-name {
    font-size: 1.75rem;
  }

  .section-cta-wrap {
    margin-top: 2rem;
  }
}

/* Responsive Ad Utilities for Maximum Revenue */
.ad-slot-wrapper {
  margin: 2.5rem auto;
  text-align: center;
  width: 100%;
}

.ad-responsive-leaderboard {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  text-align: center;
  width: 100%;
}

.ad-desktop-frame {
  display: flex;
  justify-content: center;
  width: 100%;
}

.ad-mobile-frame {
  display: none;
  justify-content: center;
  width: 100%;
}

@media (max-width: 768px) {
  .ad-desktop-frame {
    display: none !important;
  }
  .ad-mobile-frame {
    display: flex !important;
  }
}

.ad-iframe-unit {
  border: none;
  overflow: hidden;
  display: block;
  margin: 0 auto;
  background: transparent;
  max-width: 100%;
}

