/* ============================================
   FONTS — self-hosted (latin subset)
   Bungee + Bungee Shade: SIL OFL 1.1
   Outfit (variable, weight 300–700): SIL OFL 1.1
   ============================================ */
@font-face {
  font-family: 'Bungee';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Bungee-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Bungee Shade';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/BungeeShade-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/Outfit-VF.woff2') format('woff2-variations'),
       url('fonts/Outfit-VF.woff2') format('woff2');
}

  :root {
    --bg-deep:      #0a0218;
    --bg-mid:       #16042e;
    --bg-soft:      #1f0a3d;
    --pink:         #ff2e88;
    --pink-soft:    #ff6fb1;
    --cyan:         #00e7ff;
    --yellow:       #ffd91a;
    --violet:       #8a2bff;
    --green:        #00ff9d;
    --orange:       #ff7a1a;
    --cream:        #fff8e7;
    --text-mute:    #c9b8e8;
    --shadow-pink:  0 0 24px rgba(255, 46, 136, 0.55);
    --shadow-cyan:  0 0 24px rgba(0, 231, 255, 0.55);
    --shadow-yel:   0 0 24px rgba(255, 217, 26, 0.5);
    --display:      'Bungee', 'Impact', sans-serif;
    --shade:        'Bungee Shade', 'Bungee', sans-serif;
    --body:         'Outfit', system-ui, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-deep);
    color: var(--cream);
    font-family: var(--body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
  }

  body::before {
    content: '';
    position: fixed; inset: 0;
    background:
      radial-gradient(circle at 15% 20%, rgba(255, 46, 136, 0.18), transparent 35%),
      radial-gradient(circle at 85% 30%, rgba(0, 231, 255, 0.16), transparent 38%),
      radial-gradient(circle at 50% 80%, rgba(138, 43, 255, 0.20), transparent 40%),
      radial-gradient(circle at 90% 90%, rgba(255, 217, 26, 0.10), transparent 30%);
    pointer-events: none;
    z-index: 0;
  }

  body::after {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
    opacity: 0.06;
    pointer-events: none;
    z-index: 1;
  }

  main, header, footer, section { position: relative; z-index: 2; }

  /* ---------- HEADER ---------- */
  header {
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(10, 2, 24, 0.7);
    border-bottom: 1px solid rgba(255, 46, 136, 0.2);
  }
  .nav {
    max-width: 1280px; margin: 0 auto;
    padding: 18px 32px;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
  }
  .logo {
    font-family: var(--display); font-size: 1.5rem;
    color: var(--cream); text-decoration: none;
    letter-spacing: 0.02em; line-height: 1;
    display: flex; align-items: baseline; gap: 4px;
  }
  .logo .pink-dot { color: var(--pink); }
  .logo .cyan-dot { color: var(--cyan); }

  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a {
    color: var(--cream); text-decoration: none;
    font-weight: 600; font-size: 0.92rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    position: relative; padding: 4px 0;
    transition: color 0.25s;
  }
  .nav-links a::after {
    content: '';
    position: absolute; left: 0; bottom: -2px;
    width: 100%; height: 2px;
    background: var(--pink);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
  }
  .nav-links a:hover { color: var(--pink); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    background: var(--pink); color: var(--cream);
    padding: 10px 22px; border-radius: 999px;
    text-decoration: none;
    font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.05em;
    box-shadow: var(--shadow-pink);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(255, 46, 136, 0.8);
  }

  .hamburger { display: none; background: none; border: 0; color: var(--cream); font-size: 1.6rem; cursor: pointer; }

  /* ---------- HERO ---------- */
  .hero {
    min-height: 84vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 80px 24px 100px;
    position: relative; overflow: hidden;
  }
  .hero-inner {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 32px;
  }
  .hero-content { width: 100%; max-width: 720px; }
  .hero-illustration {
    width: 100%;
    max-width: 380px;
    filter: drop-shadow(0 0 40px rgba(255, 46, 136, 0.35))
            drop-shadow(0 0 80px rgba(0, 231, 255, 0.25));
  }
  .hero-illustration img {
    display: block;
    width: 100%;
    height: auto;
  }
  @media (min-width: 980px) {
    .hero-illustration { max-width: 520px; }
  }

  .hero-eyebrow {
    display: inline-block;
    font-family: var(--display);
    font-size: 0.85rem; letter-spacing: 0.25em;
    color: var(--cyan);
    border: 2px solid var(--cyan);
    padding: 8px 22px; border-radius: 999px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-cyan);
    animation: pulseCyan 3s ease-in-out infinite;
  }
  @keyframes pulseCyan {
    0%,100% { box-shadow: 0 0 14px rgba(0,231,255,0.4); }
    50%     { box-shadow: 0 0 28px rgba(0,231,255,0.85); }
  }

  .hero h1 {
    font-family: var(--shade);
    font-size: clamp(3.2rem, 11vw, 8.5rem);
    line-height: 0.92; letter-spacing: 0.01em;
    color: var(--cream);
    text-shadow:
      0 0 20px rgba(255, 46, 136, 0.6),
      0 0 60px rgba(138, 43, 255, 0.4);
    margin-bottom: 28px;
  }
  .hero h1 .pink { color: var(--pink); }
  .hero h1 .yellow { color: var(--yellow); }

  .hero p {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: var(--text-mute);
    max-width: 640px;
    margin: 0 auto 40px;
  }

  .hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn {
    font-family: var(--display); font-size: 0.95rem; letter-spacing: 0.05em;
    padding: 16px 32px; border-radius: 999px;
    text-decoration: none; cursor: pointer;
    border: 2px solid transparent;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-primary {
    background: var(--pink); color: var(--cream);
    box-shadow: var(--shadow-pink);
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(255, 46, 136, 0.7); }
  .btn-ghost {
    background: transparent; color: var(--cyan);
    border-color: var(--cyan);
  }
  .btn-ghost:hover { background: var(--cyan); color: var(--bg-deep); transform: translateY(-3px); }

  .sparkle {
    position: absolute; font-size: 2rem;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
  }
  .sparkle.s1 { top: 18%; left: 8%;  animation-delay: 0s; }
  .sparkle.s2 { top: 26%; right: 10%; animation-delay: 1.5s; }
  .sparkle.s3 { bottom: 22%; left: 12%; animation-delay: 3s; }
  .sparkle.s4 { bottom: 30%; right: 14%; animation-delay: 4.5s; }
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-20px) rotate(15deg); }
  }

  /* ---------- MARQUEE ---------- */
  .marquee {
    background: var(--pink); color: var(--bg-deep);
    overflow: hidden; padding: 14px 0;
    border-top: 3px solid var(--cream);
    border-bottom: 3px solid var(--cream);
    font-family: var(--display);
    font-size: 1rem; letter-spacing: 0.15em;
    transform: rotate(-1.5deg);
    margin: -20px -20px 0;
  }
  .marquee-track { display: flex; width: max-content; animation: scroll 30s linear infinite; }
  .marquee-track span { padding: 0 36px; white-space: nowrap; }
  .marquee-track span::after { content: '★'; color: var(--yellow); margin-left: 36px; }
  @keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ---------- SECTIONS ---------- */
  section { padding: 100px 32px; }
  .container { max-width: 1280px; margin: 0 auto; }

  .section-header { text-align: center; margin-bottom: 64px; }
  .section-header .kicker {
    font-family: var(--display);
    font-size: 0.85rem; letter-spacing: 0.3em;
    color: var(--yellow);
    margin-bottom: 16px;
  }
  .section-header h2 {
    font-family: var(--shade);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1; color: var(--cream);
    text-shadow: 0 0 30px rgba(255, 46, 136, 0.3);
  }

  /* ---------- ABOUT ---------- */
  .about-grid {
    max-width: 760px;
    margin: 0 auto;
  }
  .about-text p {
    font-size: 1.1rem; color: var(--text-mute);
    margin-bottom: 18px;
  }
  .about-text strong { color: var(--cream); font-weight: 600; }

  /* ---------- SERVICES ---------- */
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
  .service-card {
    background: linear-gradient(140deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px; padding: 36px 28px;
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 46, 136, 0.5);
    box-shadow: 0 20px 60px rgba(255, 46, 136, 0.15);
  }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    font-size: 2.5rem; margin-bottom: 18px;
    filter: drop-shadow(0 0 20px rgba(255, 46, 136, 0.6));
  }
  .service-card h3 {
    font-family: var(--display);
    font-size: 1.15rem; margin-bottom: 12px;
    color: var(--cream); letter-spacing: 0.04em;
  }
  .service-card p { color: var(--text-mute); font-size: 0.95rem; }

  /* ---------- IMPRESSIONS GALLERY ---------- */
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .gallery-item {
    border-radius: 18px;
    overflow: hidden; position: relative;
    cursor: pointer;
    margin: 0;
    aspect-ratio: 4 / 3;
    background: var(--bg-mid);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .gallery-item:hover,
  .gallery-item:focus-visible {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 46, 136, 0.25);
  }
  .gallery-item picture,
  .gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .gallery-item .label { z-index: 2; }

  /* Foto-Platzhalter-Gradients (location cards, hidden once images load) */
  .ph-1 { background: linear-gradient(135deg, var(--pink), var(--violet)); }
  .ph-4 { background: linear-gradient(135deg, var(--green), var(--cyan)); }

  .gallery-item .label {
    position: absolute; bottom: 16px; left: 16px;
    font-family: var(--display); font-size: 0.75rem;
    letter-spacing: 0.15em; color: var(--cream);
    background: rgba(10, 2, 24, 0.6);
    padding: 6px 12px; border-radius: 999px;
    backdrop-filter: blur(6px);
  }

  /* ---------- LOCATIONS ---------- */
  .locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .location-card {
    background: var(--bg-mid);
    border-radius: 28px; overflow: hidden;
    border: 1px solid rgba(255, 46, 136, 0.2);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  }
  .location-card:hover {
    transform: translateY(-6px);
    border-color: var(--pink);
    box-shadow: 0 30px 70px rgba(255, 46, 136, 0.2);
  }

  .location-photo {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }
  .location-photo picture,
  .location-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .location-photo .label {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--shade);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--cream);
    text-align: center; line-height: 0.9;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }
  .location-photo .badge {
    position: absolute; top: 18px; right: 18px;
    background: var(--yellow); color: var(--bg-deep);
    font-family: var(--display); font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 6px 14px; border-radius: 999px;
  }
  .badge.cyan { background: var(--cyan); }

  .location-body { padding: 32px; }
  .location-body h3 {
    font-family: var(--display);
    font-size: 1.5rem; color: var(--cream);
    margin-bottom: 6px;
  }
  .location-body .center-name {
    font-size: 0.95rem; color: var(--cyan);
    font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .location-row {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .location-row:last-of-type { border-bottom: 0; }
  .location-row .ico {
    flex-shrink: 0; width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255, 46, 136, 0.15);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--pink);
  }
  .location-row .ico svg { width: 16px; height: 16px; }
  .location-row .lbl {
    font-family: var(--display); font-size: 0.7rem;
    letter-spacing: 0.18em; color: var(--cyan);
    margin-bottom: 2px; display: block;
  }
  .location-row .val { color: var(--cream); font-size: 0.95rem; line-height: 1.5; }
  .location-row .val a { color: inherit; text-decoration: none; transition: color 0.2s; }
  .location-row .val a:hover { color: var(--pink); }

  .location-actions {
    display: grid; grid-template-columns: 1fr;
    gap: 10px; margin-top: 24px;
  }
  .location-actions .btn {
    padding: 14px 18px; font-size: 0.8rem; text-align: center;
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--bg-mid);
    border-top: 2px solid rgba(255, 46, 136, 0.3);
    padding: 64px 32px 24px;
  }
  .footer-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
  }
  .footer-brand .logo { font-size: 1.8rem; margin-bottom: 16px; display: inline-block; }
  .footer-brand p { color: var(--text-mute); font-size: 0.95rem; }
  .footer-col h4 {
    font-family: var(--display);
    font-size: 0.85rem; letter-spacing: 0.2em;
    color: var(--cyan); margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: var(--text-mute); text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--pink); }

  .socials { display: flex; gap: 12px; margin-top: 18px; }
  .socials a {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%; color: var(--cream);
    text-decoration: none;
    transition: background 0.25s, transform 0.25s;
    font-family: var(--display); font-size: 0.9rem;
  }
  .socials a:hover { background: var(--pink); transform: translateY(-3px); }

  .footer-bottom {
    max-width: 1280px; margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    color: var(--text-mute); font-size: 0.85rem;
  }
  .footer-bottom a {
    color: var(--text-mute); text-decoration: none;
    margin-left: 16px;
  }
  .footer-bottom a:hover { color: var(--pink); }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 980px) {
    .locations { grid-template-columns: 1fr; }
  }

  @media (max-width: 880px) {
    .hamburger { display: block; }
    .nav-links {
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column;
      background: var(--bg-mid);
      padding: 24px; gap: 18px;
      transform: translateY(-150%);
      transition: transform 0.3s;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-cta { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 70px 20px; }
  }

  @media (max-width: 560px) {
    .gallery { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom > div:last-child { margin-left: 0; }
    .footer-bottom a:first-child { margin-left: 0; }
    .location-actions { grid-template-columns: 1fr; }
  }

  /* ---------- ENTRANCE ANIMATIONS ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
      opacity 0.9s ease var(--reveal-delay, 0s),
      transform 0.9s ease var(--reveal-delay, 0s);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- LOGO IMG ---------- */
  .logo img {
    display: block;
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(255, 46, 136, 0.35));
    transition: filter 0.3s, transform 0.3s;
  }
  .logo:hover img {
    filter: drop-shadow(0 0 20px rgba(255, 46, 136, 0.7));
    transform: scale(1.03);
  }
  .footer-logo img { height: 60px; }

  /* ---------- COMING SOON STYLE ---------- */
  .location-card.coming-soon { position: relative; }
  .location-card.coming-soon .location-photo {
    position: relative;
  }
  .location-card.coming-soon .location-photo::after {
    content: '';
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.15) 0 18px,
        rgba(0, 0, 0, 0.05) 18px 36px
      );
    pointer-events: none;
  }
  .coming-soon-msg {
    padding: 8px 0 4px;
  }
  .coming-soon-msg p {
    color: var(--text-mute);
    margin-bottom: 18px;
    font-size: 0.95rem;
  }
  .coming-soon-msg p strong { color: var(--cream); }
  .coming-soon-msg em { color: var(--cyan); font-style: normal; font-weight: 600; }
  .cs-row {
    display: flex; align-items: baseline; gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .cs-row:last-child { border-bottom: 0; }
  .cs-label {
    font-family: var(--display);
    font-size: 0.7rem; letter-spacing: 0.18em;
    color: var(--cyan);
    flex-shrink: 0; min-width: 110px;
  }
  .cs-value { color: var(--cream); font-size: 0.95rem; }

  /* ---------- LEGAL SECTIONS ---------- */
  .legal-section {
    padding: 100px 32px;
    background: rgba(22, 4, 46, 0.4);
    border-top: 1px solid rgba(255, 46, 136, 0.15);
  }
  .legal-section-alt {
    background: rgba(10, 2, 24, 0.6);
  }
  .legal-container { max-width: 860px; }
  .legal-content {
    background: var(--bg-mid);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(0, 231, 255, 0.15);
  }
  .legal-content p {
    color: var(--text-mute);
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .legal-content p strong {
    color: var(--cream);
    display: block;
    margin-top: 24px;
    margin-bottom: 8px;
    font-family: var(--display);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }
  .legal-content p:first-child strong { margin-top: 0; }
  .legal-content a {
    color: var(--cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 231, 255, 0.3);
    transition: border-color 0.2s, color 0.2s;
  }
  .legal-content a:hover {
    color: var(--pink);
    border-bottom-color: var(--pink);
  }

  @media (max-width: 600px) {
    .legal-content { padding: 28px 24px; }
    .cs-row { flex-direction: column; gap: 4px; }
    .cs-label { min-width: 0; }
  }

  /* ---------- ACCESSIBILITY ---------- */
  .skip-link {
    position: absolute;
    left: 16px;
    top: -100px;
    z-index: 1000;
    background: var(--pink);
    color: var(--cream);
    padding: 12px 20px;
    border-radius: 999px;
    font-family: var(--display);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    box-shadow: var(--shadow-pink);
    transition: top 0.2s ease;
  }
  .skip-link:focus { top: 16px; }

  :focus { outline: none; }
  :focus-visible {
    outline: 3px solid var(--pink);
    outline-offset: 2px;
    border-radius: 4px;
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; }
  }

  /* ---------- LIGHTBOX ---------- */
  .lightbox {
    position: fixed; inset: 0;
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    background: rgba(10, 2, 24, 0.94);
    backdrop-filter: blur(12px);
    padding: 24px;
    user-select: none;
  }
  .lightbox[hidden] { display: none; }

  .lightbox-figure {
    margin: 0;
    max-width: min(1400px, 100%);
    max-height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px;
  }
  .lightbox-img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 140px);
    width: auto; height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  }
  .lightbox-caption {
    font-family: var(--display);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--cream);
    text-align: center;
  }

  .lightbox-btn {
    position: absolute;
    background: rgba(255, 46, 136, 0.18);
    border: 2px solid rgba(255, 46, 136, 0.4);
    color: var(--cream);
    font-family: var(--display);
    width: 56px; height: 56px;
    border-radius: 999px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; line-height: 1;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
  }
  .lightbox-btn:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: scale(1.05);
  }
  .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-prev:hover { transform: translateY(-50%) scale(1.05); }
  .lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

  .lightbox-counter {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--display);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--text-mute);
    background: rgba(10, 2, 24, 0.7);
    padding: 6px 14px;
    border-radius: 999px;
  }

  @media (max-width: 560px) {
    .lightbox { padding: 12px; }
    .lightbox-btn { width: 44px; height: 44px; font-size: 1.3rem; }
    .lightbox-close { top: 12px; right: 12px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-img { max-height: calc(100vh - 100px); }
  }

