/* ============================================================
   THE GIRL HOTSHOTS — style.css v7
   Paleta: Roxo elétrico #6600CC → Rosa #FF0099 + Dourado #FFE040
   Fontes: Cormorant Garamond (títulos) + Playfair Display (leitura) + Jost (UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@200;300;400;500;600&display=swap');

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --bg:           #F8F0FF;
  --bg-soft:      #F2E8FF;
  --bg-mid:       #EBD8FF;
  --bg-card:      #F0E4FF;

  --purple:       #6600CC;
  --purple-light: #8833DD;
  --purple-dark:  #440088;
  --pink:         #FF0099;
  --pink-light:   #FF44BB;
  --gold:         #CC8800;
  --gold-light:   #FFAA00;
  --gold-border:  rgba(204,136,0,0.3);
  --gold-subtle:  rgba(204,136,0,0.08);

  --text-dark:    #1A0028;
  --text-body:    #2D0A50;
  --text-muted:   #5522AA;
  --text-light:   #AA88CC;
  --white:        #FFFFFF;

  --accent:       #FF0099;
  --accent2:      #6600CC;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-reading: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── AGE GATE ───────────────────────────────────────────────── */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.8s ease;
}
#age-gate.fade-out { opacity: 0; pointer-events: none; }

.age-gate-inner { max-width: 480px; width: 100%; text-align: center; }

.age-gate-logo {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 48px;
  line-height: 1.2;
}
.age-gate-logo span {
  display: block;
  font-size: 0.45em;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.5);
  font-weight: 200;
  margin-top: 8px;
  text-transform: uppercase;
}
.age-gate-warning {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 16px;
}
.age-gate-message {
  font-family: var(--font-display);
  font-size: clamp(17px, 3.5vw, 20px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 40px;
}
.age-gate-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,0,153,0.4), transparent);
  margin: 0 auto 40px;
}
.age-gate-buttons { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.btn-age-confirm {
  padding: 16px 32px;
  background: transparent;
  border: 1px solid var(--pink);
  color: var(--pink-light);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-age-confirm:hover { background: var(--pink); color: #fff; }
.btn-age-deny {
  padding: 12px 32px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-age-deny:hover { color: rgba(255,255,255,0.6); }
.age-gate-subtext { color: rgba(255,255,255,0.4); line-height: 1.5; }
.age-gate-subtext a { color: var(--gold-light); }

/* ── LANGUAGE SELECTOR ─────────────────────────────────────── */
.lang-selector {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-shrink: 0;
}
.lang-btn {
  width: 28px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0.45;
  transition: var(--transition);
  background: none;
  border: none;
  padding: 0;
  border-radius: 3px;
  cursor: pointer;
  line-height: 1;
}
.lang-btn:hover, .lang-btn.active { opacity: 1; }

/* Tamanho da fonte age gate subtext — só no desktop */
@media (min-width: 1024px) {
  .age-gate-subtext { font-size: 13px; }
}

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(248,240,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(102,0,204,0.1);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(248,240,255,0.97);
  border-bottom-color: rgba(102,0,204,0.2);
  box-shadow: 0 2px 20px rgba(102,0,204,0.08);
}
.header-logo {
  font-family: var(--font-display);
  font-size: clamp(15px, 3vw, 22px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--purple);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Nav desktop — centralizado */
.header-nav {
  display: none;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  font-weight: 400;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--purple); background: var(--gold-subtle); }
.header-nav a.active { color: var(--pink); }

/* Grupo direito: bandeiras + hamburguer */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--purple);
  transition: var(--transition);
}

/* Nav mobile open */
.nav-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 2px solid var(--purple);
  padding: 16px 24px 24px;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(102,0,204,0.12);
  z-index: 89;
}
.nav-open a {
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid rgba(102,0,204,0.08);
  color: var(--text-muted);
}
.nav-open a:last-child { border-bottom: none; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(102,0,204,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(255,0,153,0.06) 0%, transparent 60%),
    var(--bg);
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(102,0,204,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(102,0,204,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 100%, black 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--pink);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 12vw, 130px);
  font-weight: 300;
  line-height: 0.9;
  color: var(--text-dark);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero-title em { font-style: italic; color: var(--purple); }
.hero-subtitle {
  font-family: var(--font-reading);
  font-size: clamp(15px, 2.5vw, 19px);
  font-weight: 300;
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-style: italic;
}
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 300;
  color: var(--pink);
  line-height: 1;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-indicator {
  position: absolute;
  bottom: 32px; right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}
.scroll-indicator-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}
.scroll-indicator-label {
  font-size: 9px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--purple);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

/* ── FILTERS ─────────────────────────────────────────────────── */
.filters-section {
  position: sticky;
  top: 64px;
  z-index: 80;
  background: rgba(248,240,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(102,0,204,0.15);
}
.filters-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 24px;
}
.filters-inner::-webkit-scrollbar { display: none; }
.filter-tab {
  flex-shrink: 0;
  padding: 16px 20px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  background: none;
}
.filter-tab:hover { color: var(--purple); }
.filter-tab.active { color: var(--pink); border-bottom-color: var(--pink); }
.filter-pills {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 24px 16px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(102,0,204,0.08);
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-pills.visible { display: flex; }
.filter-pills::-webkit-scrollbar { display: none; }
.filter-pill {
  padding: 5px 14px;
  border: 1px solid rgba(102,0,204,0.25);
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-pill:hover { border-color: var(--purple); color: var(--purple); }
.filter-pill.active { background: var(--pink); color: #fff; border-color: var(--pink); }

/* ── ERAS ─────────────────────────────────────────────────────── */
.main-content { padding-top: 64px; }
.era-section { padding: 80px 24px; max-width: 1400px; margin: 0 auto; }
.era-header {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 16px;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(102,0,204,0.15);
}
.era-period {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.era-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.1;
}
.era-desc {
  font-family: var(--font-reading);
  font-size: clamp(14px, 2vw, 16px);
  font-style: italic;
  color: var(--text-body);
  max-width: 420px;
  line-height: 1.6;
}
.era-count {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.era-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(102,0,204,0.15), transparent);
  max-width: calc(1400px - 48px);
  margin: 0 auto;
}

/* ── STYLE CARDS ─────────────────────────────────────────────── */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.style-card {
  position: relative;
  background: var(--bg-card);
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.style-card:hover { z-index: 2; }
.style-card-bg { position: absolute; inset: 0; background: var(--bg-card); transition: var(--transition-slow); }
.style-card:hover .style-card-bg { background: var(--bg-mid); }
.style-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(68,0,136,0.85) 0%, rgba(68,0,136,0.4) 40%, transparent 70%);
  transition: var(--transition);
}
.style-card:hover .style-card-gradient {
  background: linear-gradient(to top, rgba(68,0,136,0.95) 0%, rgba(68,0,136,0.6) 50%, transparent 80%);
}
.style-card-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: var(--transition-slow);
}
.style-card:hover .style-card-photo { opacity: 0.9; transform: scale(1.04); }
.style-card-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.style-card-placeholder-inner {
  width: 56px; height: 56px;
  border: 1px solid rgba(102,0,204,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.3;
}
.style-card-placeholder-inner svg { width: 22px; height: 22px; stroke: var(--purple); }
.style-card-content { position: relative; z-index: 1; padding: 20px 16px 16px; }
.style-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.style-card-tag {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 3px 8px;
  border: 1px solid rgba(255,170,0,0.35);
  border-radius: 2px;
}
.style-card-num { font-family: var(--font-display); font-size: 10px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.style-card-title {
  font-family: var(--font-display);
  font-size: clamp(15px, 3vw, 20px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 8px;
}
.style-card-phrase {
  font-family: var(--font-reading);
  font-size: clamp(11px, 1.8vw, 13px);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow), opacity var(--transition);
  opacity: 0;
}
.style-card:hover .style-card-phrase { max-height: 60px; opacity: 1; }
.style-card-arrow {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,0,153,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px);
  transition: var(--transition);
}
.style-card:hover .style-card-arrow { opacity: 1; transform: translateY(0); }
.style-card-arrow svg { width: 12px; height: 12px; stroke: var(--pink); }
.style-card.hidden { display: none; }

/* ── GALLERY PAGE ─────────────────────────────────────────────── */
.gallery-page { padding-top: 64px; min-height: 100svh; }

.gallery-hero {
  padding: 100px 24px 0;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-hero-inner { padding-bottom: 48px; }

.gallery-breadcrumb {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 40px;
}
.breadcrumb-home {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color var(--transition);
}
.breadcrumb-home svg { width: 13px; height: 13px; stroke: currentColor; flex-shrink: 0; }
.breadcrumb-home:hover { color: var(--purple); }
.breadcrumb-sep { color: rgba(102,0,204,0.2); font-size: 11px; }
.breadcrumb-current { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pink); font-weight: 400; }

.gallery-title-block { margin-bottom: 32px; }
.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 80px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.gallery-phrase {
  font-family: var(--font-reading);
  font-size: clamp(16px, 3vw, 22px);
  font-style: italic;
  color: var(--purple);
  line-height: 1.4;
}

/* Meta row — tags + count alinhados */
.gallery-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}
.gallery-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.gallery-tag {
  padding: 5px 14px;
  border: 1px solid rgba(102,0,204,0.2);
  font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--purple);
}
.gallery-count-badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  border: 1px solid var(--pink);
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--pink);
  white-space: nowrap;
  font-weight: 400;
}
.gallery-hero-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--pink) 0%, rgba(102,0,204,0.2) 40%, transparent 100%);
  margin-top: 40px;
}

/* Gallery about */
.gallery-about {
  padding: 48px 24px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-about-text { max-width: 720px; }
.gallery-description {
  font-family: var(--font-reading);
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 28px;
  font-style: italic;
}
.gallery-for-who-block {
  padding: 24px 28px;
  border: 1px solid rgba(255,0,153,0.2);
  background: rgba(255,0,153,0.03);
}
.gallery-for-who-label {
  display: block;
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--pink);
  margin-bottom: 10px; font-weight: 400;
}
.gallery-for-who {
  font-family: var(--font-reading);
  font-size: 15px; font-style: italic;
  color: var(--text-body); line-height: 1.65;
  margin: 0; padding: 0; border: none; background: none;
}
.gallery-about-divider { height: 1px; background: rgba(102,0,204,0.1); margin-top: 20px; }

/* Gallery grid */
.gallery-main { padding: 0 24px 80px; max-width: 1400px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
}
.gallery-item:hover.photo-loaded img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(102,0,204,0.4);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item-icon svg { width: 16px; height: 16px; stroke: #fff; }

/* Placeholder visual para fotos ainda não enviadas */
.gallery-placeholder {
  position: absolute;
  inset: 0;
  background: var(--bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.gallery-placeholder-num {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(102,0,204,0.2);
  font-weight: 300;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.gallery-item.photo-loaded img { opacity: 1; }
.gallery-item.no-photo img { display: none; }
.gallery-item.no-photo .gallery-item-overlay { display: none; }


/* Gallery style nav */
.gallery-style-nav {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(102,0,204,0.12);
  border-bottom: 1px solid rgba(102,0,204,0.12);
  margin: 0 0 60px;
}
.gallery-nav-btn {
  display: none;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  flex: 1;
  transition: background var(--transition);
  min-width: 0;
}
.gallery-nav-btn:hover { background: rgba(255,0,153,0.04); }
.gallery-nav-prev { border-bottom: 1px solid rgba(102,0,204,0.12); }
.gallery-nav-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,0,153,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink); transition: all var(--transition);
}
.gallery-nav-btn:hover .gallery-nav-arrow { background: var(--pink); border-color: var(--pink); color: #fff; }
.gallery-nav-arrow svg { width: 18px; height: 18px; }
.gallery-nav-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.gallery-nav-info-right { align-items: flex-end; text-align: right; }
.gallery-nav-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
.gallery-nav-btn .nav-style-name {
  font-family: var(--font-display); font-size: 16px;
  color: var(--text-dark); font-style: italic;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gallery-nav-all {
  display: flex; flex-direction: row;
  align-items: center; justify-content: center;
  gap: 8px; padding: 18px 32px;
  color: var(--text-muted); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 1px solid rgba(102,0,204,0.12);
  transition: all var(--transition);
}
.gallery-nav-all svg { width: 20px; height: 20px; stroke: currentColor; }
.gallery-nav-all:hover { color: var(--purple); }

/* ── LIGHTBOX ──────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(26,0,40,0.97);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap { position: relative; max-width: 90vw; max-height: 90svh; display: flex; align-items: center; justify-content: center; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 90svh; object-fit: contain; }
.lightbox-btn {
  position: fixed;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,0,153,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,0,40,0.8);
  transition: var(--transition); color: var(--pink);
}
.lightbox-btn:hover { border-color: var(--pink); background: rgba(26,0,40,0.95); }
.lightbox-btn svg { width: 16px; height: 16px; stroke: var(--pink); fill: none; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4); pointer-events: none;
}

/* ── BTN BACK ─────────────────────────────────────────────────── */
.btn-back {
  position: fixed; bottom: 28px; left: 20px; z-index: 200;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px 12px 16px;
  background: var(--pink); color: #fff;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(255,0,153,0.35);
}
.btn-back svg { width: 14px; height: 14px; flex-shrink: 0; stroke: currentColor; fill: none; }
.btn-back:hover { background: var(--purple); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(102,0,204,0.4); }

/* ── STATIC PAGES ─────────────────────────────────────────────── */
.static-hero { padding: 110px 24px 0; max-width: 900px; margin: 0 auto; }
.static-hero-inner { padding-bottom: 48px; }
.static-eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink); margin-bottom: 20px; }
.static-title { font-family: var(--font-display); font-size: clamp(40px, 8vw, 72px); font-weight: 300; line-height: 0.95; color: var(--text-dark); margin-bottom: 16px; letter-spacing: -0.01em; }
.static-title em { font-style: italic; color: var(--purple); }
.static-meta { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.static-hero-rule { height: 1px; background: linear-gradient(90deg, var(--pink) 0%, rgba(102,0,204,0.2) 40%, transparent 100%); }
.static-content { padding: 48px 24px 120px; max-width: 900px; margin: 0 auto; }
.static-article { max-width: 720px; }
.static-intro { margin-bottom: 48px; }
.static-intro p { font-family: var(--font-reading); font-size: clamp(16px, 2.5vw, 19px); line-height: 1.75; color: var(--text-body); font-style: italic; }
.static-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(102,0,204,0.08); }
.static-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.static-section h2 { font-family: var(--font-display); font-size: clamp(18px, 2.5vw, 22px); font-weight: 400; color: var(--purple); margin-bottom: 16px; }
.static-section p { font-family: var(--font-reading); font-size: 15px; line-height: 1.85; color: var(--text-body); margin-bottom: 14px; }
.static-section ul { list-style: none; margin: 14px 0; display: flex; flex-direction: column; gap: 10px; }
.static-section ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.7; color: var(--text-body); }
.static-section ul li::before { content: '—'; color: var(--pink); flex-shrink: 0; font-family: var(--font-display); }
.static-section a { color: var(--purple); border-bottom: 1px solid rgba(102,0,204,0.2); transition: border-color var(--transition); }
.static-section a:hover { border-color: var(--purple); }
.static-section strong { color: var(--text-dark); font-weight: 500; }
.static-section code { font-family: monospace; font-size: 12px; color: var(--pink); background: rgba(255,0,153,0.06); padding: 2px 8px; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(102,0,204,0.15);
  padding: 48px 24px 100px;
  background: var(--bg-soft);
}
.footer-inner { max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 300; letter-spacing: 0.15em; color: var(--purple); }
.footer-adult-warning { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); padding: 5px 14px; border: 1px solid rgba(102,0,204,0.15); border-radius: 2px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--purple); }
.footer-copy { font-size: 11px; color: var(--text-light); font-family: var(--font-display); font-style: italic; }

/* ── 404 ──────────────────────────────────────────────────────── */
.page-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 24px 80px; }
.page-404-inner { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 600px; }
.page-404-num { font-family: var(--font-display); font-size: clamp(120px, 25vw, 220px); font-weight: 300; line-height: 0.85; color: transparent; -webkit-text-stroke: 1px rgba(102,0,204,0.2); letter-spacing: -0.04em; margin-bottom: 32px; user-select: none; }
.page-404-content { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.page-404-eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink); }
.page-404-title { font-family: var(--font-display); font-size: clamp(36px, 6vw, 60px); font-weight: 300; line-height: 1; color: var(--text-dark); }
.page-404-title em { font-style: italic; color: var(--purple); }
.page-404-text { font-size: 15px; line-height: 1.75; color: var(--text-muted); max-width: 420px; }
.btn-primary-404 {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: var(--pink); color: #fff;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; font-family: var(--font-body); transition: all var(--transition);
}
.btn-primary-404:hover { background: var(--purple); transform: translateY(-2px); }
.btn-primary-404 svg { width: 16px; height: 16px; flex-shrink: 0; stroke: currentColor; fill: none; }

/* ── FADE IN ──────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE 600px ────────────────────────────────────────── */
@media (min-width: 600px) {
  .styles-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .age-gate-buttons { flex-direction: row; justify-content: center; }
}

/* ── RESPONSIVE 768px ────────────────────────────────────────── */
@media (min-width: 768px) {
  .gallery-nav-btn { display: flex; }
  .gallery-style-nav {
    grid-template-columns: 1fr auto 1fr;
  }
  .gallery-nav-all {
    border-bottom: none;
    border-left: 1px solid rgba(102,0,204,0.12);
    border-right: 1px solid rgba(102,0,204,0.12);
  }
  .gallery-nav-prev { border-bottom: none; }
}

/* ── RESPONSIVE 1024px ───────────────────────────────────────── */
@media (min-width: 1024px) {
  .styles-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .header-nav { display: flex; }
  .menu-toggle { display: none; }
  .site-header { padding: 0 60px; }
  .hero { padding: 0 60px 100px; }
  .hero-content { margin: 0 auto; }
  .era-section { padding: 100px 60px; }
  .era-header { grid-template-columns: 1fr auto; align-items: end; gap: 24px; }
  .era-desc { text-align: right; max-width: 420px; }
  .gallery-hero { padding: 120px 60px 0; }
  .gallery-about { padding: 48px 60px 32px; }
  .gallery-main { padding: 0 60px 120px; }
  .filters-inner { padding: 0 60px; }
  .filter-pills { padding: 12px 60px 16px; }
  .static-hero { padding: 120px 60px 0; }
  .static-content { padding: 48px 60px 120px; }
  .site-footer { padding: 60px 60px 60px; }
  .btn-back { left: 28px; }
  .site-footer { padding: 60px 60px 60px; }
  .static-hero { padding: 120px 60px 0; }
  .static-content { padding: 48px 60px 120px; }
  .btn-back { left: 28px; }
}

/* ── RESPONSIVE 1280px ───────────────────────────────────────── */
@media (min-width: 1280px) {
  .styles-grid { grid-template-columns: repeat(5, 1fr); }
  .gallery-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
