/* ================================================
   LUMIÈRE MODELS — styles.css
   Lingerie Edition — Gold · Crimson · Obsidian
   ================================================ */

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

/* ── THEME VARIABLES ── */
[data-theme="dark"] {
  /* Rose-Mauve as primary accent (replaces gold) */
  --gold: #E0608A; --gold-light: #F5A0BE; --gold-dark: #B03060;
  --gold-glow: rgba(224,96,138,0.14); --gold-border: rgba(224,96,138,0.32);
  /* Violet-Plum as secondary (replaces crimson) */
  --crimson: #C0185A; --crimson-light: #E03A78; --crimson-glow: rgba(192,24,90,0.18);
  /* Deep plum-violet backgrounds — much warmer than pure black */
  --bg: #1A0812; --bg2: #240F1A; --bg3: #301523;
  --text: #FFE8F0; --text-muted: rgba(255,232,240,0.55); --text-dim: rgba(255,232,240,0.22);
  --border: rgba(255,180,210,0.10); --nav-scrolled: rgba(26,8,18,0.97);
  --card-g1: rgba(18,5,12,0.98); --card-g2: rgba(18,5,12,0.55);
  --stat-border: rgba(220,100,140,0.22); --footer-bg: #240F1A;
  --overlay-bg: rgba(10,2,8,0.92);
  /* purple aliases kept for JS chips */
  --purple: #E0608A; --purple-light: #F5A0BE; --purple-dark: #B03060;
  --purple-glow: rgba(224,96,138,0.13); --purple-border: rgba(224,96,138,0.30);
}
[data-theme="light"] {
  --gold: #8A4F63; --gold-light: #B07088; --gold-dark: #5C2E40;
  --gold-glow: rgba(138,79,99,0.08); --gold-border: rgba(138,79,99,0.22);
  --crimson: #5A2E6B; --crimson-light: #894FA0; --crimson-glow: rgba(90,46,107,0.08);
  --bg: #F7F0F5; --bg2: #EEE4EF; --bg3: #E4D6E8;
  --text: #1A0F1E; --text-muted: rgba(26,15,30,0.52); --text-dim: rgba(26,15,30,0.22);
  --border: rgba(26,15,30,0.07); --nav-scrolled: rgba(247,240,245,0.97);
  --card-g1: rgba(10,4,14,0.97); --card-g2: rgba(10,4,14,0.50);
  --stat-border: rgba(138,79,99,0.16); --footer-bg: #EEE4EF;
  --overlay-bg: rgba(0,0,0,0.82);
  --purple: #7A4490; --purple-light: #A870C0; --purple-dark: #4E2260;
  --purple-glow: rgba(122,68,144,0.08); --purple-border: rgba(122,68,144,0.22);
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'TT Norms Pro','TT Norms',-apple-system,'Helvetica Neue',Arial,sans-serif;
  font-weight: 300; overflow-x: hidden; transition: background 0.4s, color 0.4s;
}
/* grain texture overlay */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 64px; transition: background 0.4s, padding 0.4s, border-color 0.4s;
}
nav.scrolled {
  background: var(--nav-scrolled); backdrop-filter: blur(20px);
  padding: 15px 64px; border-bottom: 1px solid var(--gold-border);
}
.logo {
  font-family: 'Cormorant Garamond', serif; font-size: 19px;
  font-weight: 300; letter-spacing: 8px; color: var(--text);
  text-decoration: none; text-transform: uppercase; transition: color 0.3s;
}
.logo em { font-style: normal; color: var(--gold-light); }
.nav-center { display: flex; gap: 36px; }
.nav-center a {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  position: relative; padding-bottom: 4px; transition: color 0.3s;
}
.nav-center a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.35s;
}
.nav-center a:hover, .nav-center a.active { color: var(--text); }
.nav-center a:hover::after, .nav-center a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-switcher { display: flex; gap: 2px; }
.lang-switcher button {
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); padding: 4px 8px; border-radius: 3px; transition: all 0.25s;
}
.lang-switcher button.active { color: var(--gold); background: var(--gold-glow); }
.lang-switcher button:hover { color: var(--text); }
.theme-toggle {
  width: 36px; height: 20px; border-radius: 10px;
  background: var(--gold-border); border: none; cursor: pointer;
  position: relative; transition: background 0.3s; flex-shrink: 0;
}
.theme-toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); transition: transform 0.3s;
}
[data-theme="light"] .theme-toggle::after { transform: translateX(16px); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: inherit;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 26px; text-decoration: none; cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  border-radius: 4px; font-weight: 400;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-outline { border: 1px solid var(--gold); color: var(--gold-light); background: none; }
.btn-outline:hover { background: linear-gradient(135deg, #8B0A3A 0%, #C0185A 100%); border-color: var(--crimson); color: #fff; }
.btn-ghost { border: 1px solid var(--border); color: var(--text-muted); background: none; }
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text); }

/* ── SECTIONS ── */
.section-pad { padding: 110px 64px; }
.section-label {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
h2.display {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px,5vw,62px);
  font-weight: 300; letter-spacing: 4px; text-transform: uppercase; line-height: 1.1;
}
h2.display em { font-style: italic; color: var(--gold-light); }
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--purple-border), transparent);
}

/* ── GALLERY ── */
.gallery-section { background: var(--bg); transition: background 0.4s; }
.gallery-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px;
}
.filters {
  display: flex; border: 1px solid var(--purple-border);
  border-radius: 4px; overflow: hidden;
}
.filter-btn {
  background: none; border: none; border-right: 1px solid var(--purple-border);
  cursor: pointer; font-family: inherit; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted); padding: 10px 22px; transition: all 0.25s;
}
.filter-btn:last-child { border-right: none; }
.filter-btn:hover, .filter-btn.active { background: var(--gold-glow); color: var(--gold-light); }

.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }

.model-card {
  position: relative; overflow: hidden; aspect-ratio: 2/3;
  background: var(--bg3); cursor: pointer;
}
.model-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.65s ease;
}
.model-card:hover img { transform: scale(1.05); }
.model-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(192,57,79,0); transition: box-shadow 0.5s;
}
.model-card:hover::after { box-shadow: inset 0 0 40px rgba(224,96,138,0.22); }
.card-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--card-g1) 0%, var(--card-g2) 38%, transparent 65%);
  transition: background 0.4s;
}
.card-tag {
  position: absolute; top: 16px; right: 16px;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid var(--gold-border);
  padding: 4px 10px; background: rgba(6,6,6,0.65); backdrop-filter: blur(6px); border-radius: 3px;
}
.card-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px;
  transform: translateY(6px); transition: transform 0.35s;
}
.model-card:hover .card-info { transform: translateY(0); }
.card-category {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 5px;
}
.card-name {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-weight: 400; letter-spacing: 2px; color: #F5F5F5; margin-bottom: 3px;
}
.card-detail {
  font-size: 10px; color: rgba(245,245,245,0.5); letter-spacing: 1px; margin-bottom: 16px;
}
.card-actions {
  display: flex; gap: 8px; opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s 0.05s, transform 0.35s 0.05s;
}
.model-card:hover .card-actions { opacity: 1; transform: translateY(0); }
.card-btn {
  display: inline-flex; align-items: center; font-family: inherit;
  font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  padding: 7px 14px; cursor: pointer; border-radius: 3px; font-weight: 400;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.card-btn-primary { background: linear-gradient(135deg, #8B0A3A 0%, #C0185A 100%); color: #fff; border: 1px solid var(--crimson); }
.card-btn-primary:hover { background: var(--crimson-light); border-color: var(--crimson-light); }
.card-btn-secondary {
  background: none; color: rgba(245,245,245,0.6);
  border: 1px solid rgba(245,245,245,0.25);
}
.card-btn-secondary:hover { color: #fff; border-color: rgba(245,245,245,0.55); }
.gallery-footer { text-align: center; margin-top: 56px; }

/* ── MODEL DETAIL OVERLAY ── */
.model-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: var(--overlay-bg); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
  padding: 20px;
}
.model-overlay.open { opacity: 1; pointer-events: all; }
.overlay-panel {
  background: var(--bg2); border: 1px solid var(--purple-border);
  border-radius: 6px; display: grid; grid-template-columns: 340px 1fr;
  max-width: 880px; width: 100%; max-height: 92vh; overflow: hidden;
  transform: translateY(20px); transition: transform 0.35s;
}
.model-overlay.open .overlay-panel { transform: translateY(0); }

/* ── CAROUSEL ── */
.overlay-carousel-wrap {
  position: relative; overflow: hidden; background: #000;
  display: flex; flex-direction: column;
}
.carousel-track {
  position: relative; flex: 1; overflow: hidden; min-height: 0;
}
.carousel-slide {
  position: absolute; inset: 0;
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1),
              opacity  0.42s ease;
}
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  user-select: none; pointer-events: none;
}
.carousel-slide.active            { transform: translateX(0);    opacity: 1; z-index: 2; }
.carousel-slide.slide-in-right    { transform: translateX(100%); opacity: 0; z-index: 3; }
.carousel-slide.slide-in-left     { transform: translateX(-100%);opacity: 0; z-index: 3; }
.carousel-slide.slide-out-left    { transform: translateX(-100%);opacity: 0; z-index: 1; }
.carousel-slide.slide-out-right   { transform: translateX(100%); opacity: 0; z-index: 1; }

/* Carousel arrows (inside photo column) */
.carousel-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(8,8,8,0.6); backdrop-filter: blur(6px);
  border: 1px solid var(--purple-border); color: var(--text-muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.22s;
}
.carousel-arrow:hover { background: linear-gradient(135deg, #8B0A3A 0%, #C0185A 100%); border-color: var(--crimson); color: #fff; }
.carousel-arrow-prev { left: 12px; }
.carousel-arrow-next { right: 12px; }

/* Dots + counter strip at bottom of photo */
.carousel-footer {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
}
.carousel-dots { display: flex; gap: 5px; }
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: background 0.25s, transform 0.25s; padding: 0;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }
.carousel-counter {
  font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.55);
  font-family: inherit;
}

/* Tag + close button (inside carousel wrap) */
.overlay-photo-tag {
  position: absolute; top: 14px; left: 14px; z-index: 10;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--purple-light); border: 1px solid var(--purple-border);
  padding: 4px 10px; background: rgba(8,8,8,0.65); backdrop-filter: blur(6px); border-radius: 3px;
}
.overlay-close {
  position: absolute; top: 12px; right: 12px; z-index: 20;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(8,8,8,0.7);
  border: 1px solid var(--purple-border); color: var(--text-muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; font-size: 17px; line-height: 1;
}
.overlay-close:hover { color: var(--text); border-color: var(--text-muted); }

/* ── MODEL NAVIGATOR ── */
.model-navigator {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px; padding-bottom: 18px;
  border-bottom: 1px solid var(--purple-border);
}
.model-nav-btn {
  width: 30px; height: 30px; border-radius: 4px;
  background: none; border: 1px solid var(--purple-border);
  color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.22s; flex-shrink: 0;
}
.model-nav-btn:hover { background: var(--gold-glow); border-color: var(--gold); color: var(--gold-light); }
.model-nav-counter {
  flex: 1; text-align: center;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted);
}

/* ── OVERLAY BODY ── */
.overlay-body {
  padding: 28px 36px 28px; display: flex; flex-direction: column;
  overflow-y: auto; gap: 0;
}
.overlay-category {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 7px;
}
.overlay-name {
  font-family: 'Cormorant Garamond', serif; font-size: 38px;
  font-weight: 300; letter-spacing: 3px; color: var(--text);
  line-height: 1; margin-bottom: 6px;
}
.overlay-location {
  font-size: 11px; color: var(--text-muted); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 26px;
}
.overlay-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--gold-border); border: 1px solid var(--gold-border);
  border-radius: 4px; overflow: hidden; margin-bottom: 26px;
}
.overlay-stat { background: var(--bg2); padding: 14px 10px; text-align: center; }
.overlay-stat-label {
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 5px;
}
.overlay-stat-val {
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 300; color: var(--text);
}
.overlay-section-title {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.overlay-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.overlay-tag {
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid var(--gold-border);
  padding: 5px 12px; border-radius: 3px; background: var(--gold-glow);
}
.overlay-exp {
  font-size: 12px; line-height: 1.85; color: var(--text-muted); margin-bottom: 24px;
}
.overlay-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 8px; }

/* ── STATS ── */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--purple-border);
  border-bottom: 1px solid var(--purple-border);
  padding: 0 64px;
  display: grid; grid-template-columns: repeat(4,1fr);
  transition: background 0.4s;
}
.stat-item {
  padding: 52px 0; padding-left: 40px; padding-right: 40px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 10px; position: relative;
  border-right: 1px solid var(--stat-border);
  transition: background 0.3s;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.5s ease;
}
.stat-item:hover::before { width: 100%; }
.stat-index {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 72px;
  font-weight: 400; line-height: 0.88; color: var(--text); letter-spacing: 2px;
}
.stat-num sup { font-size: 28px; color: var(--gold); vertical-align: super; letter-spacing: 0; }
.stat-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); line-height: 1.4; max-width: 140px;
}

/* ── SERVICES ── */
.services-section {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(192,24,90,0.13) 0%, transparent 70%),
              var(--bg2);
  transition: background 0.4s;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  margin-top: 56px; border: 1px solid var(--purple-border);
  border-radius: 4px; overflow: hidden;
}
.service-card {
  padding: 44px 36px; border-right: 1px solid var(--purple-border);
  background: var(--bg2); transition: background 0.3s; position: relative;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--bg3); }
.service-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Cormorant Garamond', serif; font-size: 44px;
  font-weight: 300; color: var(--text-dim); line-height: 1;
}
.service-icon {
  width: 44px; height: 44px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--purple-border); color: var(--purple-light);
  border-radius: 4px; transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--gold-glow); border-color: var(--gold); }
.service-title {
  font-family: 'Cormorant Garamond', serif; font-size: 24px;
  font-weight: 400; letter-spacing: 2px; margin-bottom: 12px;
}
.service-text { font-size: 13px; line-height: 1.8; color: var(--text-muted); }

/* ── ABOUT ── */
.about-section { background: var(--bg); transition: background 0.4s; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.about-visual-wrap { position: relative; }
.about-frame {
  position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 1px solid var(--purple-border); border-radius: 2px; pointer-events: none;
}
.about-visual { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-badge {
  position: absolute; bottom: 28px; right: -20px;
  background: var(--bg); border: 1px solid var(--purple-border);
  padding: 18px 24px; text-align: center; border-radius: 4px; transition: background 0.4s;
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif; font-size: 34px;
  font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: 4px;
}
.about-badge-text {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted);
}
.about-body p { font-size: 14px; line-height: 1.95; color: var(--text-muted); margin-bottom: 18px; }
.about-body p strong { font-weight: 500; color: var(--text); }
.feature-list { margin: 32px 0; display: flex; flex-direction: column; gap: 14px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 6px;
}
.feature-item span { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── CONTACT ── */
.contact-section { background: var(--bg2); transition: background 0.4s; }
.contact-info-label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 9px;
  display: flex; align-items: center; gap: 10px;
}
.contact-info-label::before { content: ''; width: 14px; height: 1px; background: var(--gold); }
.contact-info-value {
  font-family: 'Cormorant Garamond', serif; font-size: 21px;
  font-weight: 300; color: var(--text);
}
.contact-info-value a { color: inherit; text-decoration: none; transition: color 0.25s; }
.contact-info-value a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 10px; margin-top: 40px; }
.social-btn {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--purple-border); color: var(--text-muted);
  text-decoration: none; transition: all 0.25s; border-radius: 4px;
}
.social-btn:hover {
  border-color: var(--gold); color: var(--gold-light); background: var(--gold-glow);
}

/* ── FOOTER ── */
footer {
  background: var(--footer-bg); border-top: 1px solid var(--purple-border);
  padding: 36px 64px; display: flex; align-items: center;
  justify-content: space-between; transition: background 0.4s;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 15px;
  font-weight: 300; letter-spacing: 6px; text-transform: uppercase; color: var(--text-muted);
}
.footer-logo em { font-style: normal; color: var(--gold); }
.footer-copy { font-size: 11px; color: var(--text-dim); letter-spacing: 1px; }
.footer-legal { font-size: 11px; color: var(--text-dim); font-style: italic; }

/* ── HERO TAGLINE ── */
.hero-tagline {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 140px 64px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(192,24,90,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 50% 80%, rgba(224,96,138,0.08) 0%, transparent 70%),
              var(--bg);
  position: relative; overflow: hidden;
}
.hero-tagline::before {
  content: 'L'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif; font-size: clamp(300px, 40vw, 600px);
  font-weight: 300; color: rgba(224,96,138,0.05); line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -20px;
}
.hero-tagline-inner { position: relative; z-index: 1; max-width: 700px; }
.hero-eyebrow {
  font-size: 10px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: inline-block; width: 30px; height: 1px; background: var(--gold);
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 300; letter-spacing: 4px; text-transform: uppercase;
  line-height: 0.95; color: var(--text); margin-bottom: 32px;
}
.hero-headline em {
  font-style: italic; color: var(--gold-light);
  text-shadow: 0 0 80px rgba(224,96,138,0.40);
}
.hero-sub {
  font-size: 14px; line-height: 1.9; color: var(--text-muted);
  max-width: 460px; margin: 0 auto; letter-spacing: 0.5px;
}

/* ── MARQUEE TICKER ── */
.marquee-wrap {
  overflow: hidden; background: linear-gradient(135deg, #8B0A3A 0%, #C0185A 100%);
  padding: 13px 0; border-top: 1px solid rgba(192,24,90,0.45);
  border-bottom: 1px solid rgba(192,24,90,0.45);
}
.marquee-track {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.92); padding: 0 20px; font-weight: 400;
}
.marquee-sep {
  color: rgba(255,255,255,0.45); font-size: 8px; flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

.marquee-wrap--gold {
  background: transparent;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 11px 0;
}
.marquee-track--reverse {
  animation: marquee-scroll-reverse 22s linear infinite;
}
.marquee-item--dark {
  color: var(--gold); font-size: 9px; letter-spacing: 5px;
}
.marquee-sep--dark { color: var(--gold-border); font-size: 8px; }
@keyframes marquee-scroll-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── OVERLAY HOURS ── */
.overlay-hours-row { display: flex; flex-wrap: wrap; gap: 8px; }
.overlay-hour-chip {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; font-weight: 500; border: 1px solid;
}
.overlay-hour-1h  { color: #E0608A; border-color: rgba(224,96,138,0.45); background: rgba(224,96,138,0.12); }
.overlay-hour-2h  { color: #F5A0BE; border-color: rgba(245,160,190,0.35); background: rgba(245,160,190,0.08); }
.overlay-hour-night { color: #F5A0BE; border-color: rgba(245,160,190,0.45); background: rgba(245,160,190,0.10); }

/* ── OVERLAY SERVICES ── */
.overlay-services-row { display: flex; flex-wrap: wrap; gap: 7px; }
.overlay-service-chip {
  font-size: 10px; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px; font-weight: 400;
  background: var(--purple-glow); border: 1px solid var(--purple-border);
  color: var(--purple-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .overlay-panel { grid-template-columns: 260px 1fr; }
  .overlay-carousel-wrap { min-height: 320px; }
}
@media (max-width: 860px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-center { display: none; }
  .section-pad { padding: 72px 24px; }
  .hero-tagline { padding: 120px 24px 60px; min-height: 80vh; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-badge { right: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--purple-border); }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .stat-item { padding: 36px 20px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-num { font-size: 52px; }
  .overlay-panel { grid-template-columns: 1fr; max-height: 95vh; }
  .overlay-carousel-wrap { max-height: 320px; min-height: 260px; }
  .overlay-body { padding: 20px 20px 20px; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── ABSTRACT BACKGROUND BLOBS ── */
.blob-layer {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.blob {
  position: absolute; filter: blur(72px); opacity: 0.16;
  animation: blob-drift linear infinite;
}
.blob-1 {
  width: 540px; height: 700px; top: -140px; left: -100px;
  background: radial-gradient(ellipse at 40% 35%, #E0608A, #8B0A3A);
  border-radius: 62% 38% 54% 46% / 48% 56% 44% 52%;
  animation-duration: 34s; animation-delay: 0s;
}
.blob-2 {
  width: 440px; height: 580px; top: 28%; right: -120px;
  background: radial-gradient(ellipse at 55% 40%, #F5A0BE, #C0185A);
  border-radius: 44% 56% 38% 62% / 60% 42% 58% 40%;
  animation-duration: 42s; animation-delay: -12s;
}
.blob-3 {
  width: 360px; height: 480px; bottom: -100px; left: 22%;
  background: radial-gradient(ellipse at 45% 50%, #C0185A, #6B0030);
  border-radius: 55% 45% 48% 52% / 52% 60% 40% 48%;
  animation-duration: 38s; animation-delay: -22s;
}
.blob-4 {
  width: 300px; height: 380px; top: 52%; left: 8%;
  background: radial-gradient(ellipse at 50% 45%, #F5A0BE, #E0608A);
  border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
  animation-duration: 46s; animation-delay: -8s;
}
.blob-5 {
  width: 240px; height: 320px; top: 10%; right: 20%;
  background: radial-gradient(ellipse at 48% 40%, #E0608A, #B03060);
  border-radius: 58% 42% 46% 54% / 44% 58% 42% 56%;
  animation-duration: 30s; animation-delay: -17s;
}
@keyframes blob-drift {
  0%   { transform: translate(0px, 0px)    rotate(0deg)   scale(1);    }
  25%  { transform: translate(20px, -24px) rotate(9deg)   scale(1.04); }
  50%  { transform: translate(-14px, 18px) rotate(-6deg)  scale(0.97); }
  75%  { transform: translate(24px, 12px)  rotate(13deg)  scale(1.03); }
  100% { transform: translate(0px, 0px)    rotate(0deg)   scale(1);    }
}
