﻿/* ═══════════════════════════════════════════════
   AZURE COLOGNE — Design System
   Dark · Cinematic · Dubai Luxury
   Mobile-first, semantic, GSAP-ready
═══════════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  /* Brand colours */
  --onyx:       #090E16;
  --charcoal:   #101C27;

  /* Luxury accents */
  --bronze:     #C08A3E;
  --champagne:  #F5D9A5;

  /* Neon accents (use sparingly) */
  --azure:      #2FB7FF;
  --emerald:    #074F3B;
  /* Neutrals */
  --warm-light: #F5F5F2;
  --muted:      #A0A7B5;

  /* Semantic aliases */
  --bg-primary:   var(--onyx);
  --bg-secondary: var(--charcoal);
  --text-primary: var(--warm-light);
  --text-muted:   var(--muted);
  --accent:       var(--azure);

  /* Spacing */
  --px:   80px;
  --py:   110px;
  --max-w: 1280px;

  /* Typography scale */
  --hero-fs:   clamp(54px, 7.8vw, 106px);
  --h2-fs:     clamp(34px, 4.8vw, 62px);
  --h2-sm-fs:  clamp(28px, 3.5vw, 46px);
  --h3-fs:     clamp(18px, 2.2vw, 24px);
  --body-fs:   clamp(15px, 1.1vw, 17px);

  /* Transitions */
  --t-fast:  0.15s ease;
  --t-base:  0.25s ease;
  --t-slow:  0.45s ease;

  /* Nav */
  --nav-h: 72px;

  /* Shared with menu.css */
  --page-edge: rgba(192, 138, 62, 0.35);
}

@media (max-width: 960px) {
  :root {
    --px: 28px;
    --py: 80px;
  }
}

@media (max-width: 500px) {
  :root {
    --px: 18px;
    --py: 60px;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--onyx);
  color: var(--warm-light);
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  touch-action: manipulation;
}

img, svg {
  display: block;
}

section {
  scroll-margin-top: var(--nav-h);
}

/* ─── Keyframes ─── */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.38; }
  50%       { opacity: 0.82; }
}

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

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Reveal animation (triggered by JS via .is-visible) ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--t-slow), transform 0.7s var(--t-slow);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section {
  padding: var(--py) var(--px);
}

.section--onyx    { background: var(--onyx); }
.section--charcoal {
  background: var(--charcoal);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(47, 183, 255, 0.03) 0%, transparent 60%);
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════════════ */

.headline-2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--h2-fs);
  font-weight: 600;
  color: var(--warm-light);
  line-height: 1.1;
}

.headline-2--sm {
  font-size: var(--h2-sm-fs);
}

.headline-3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--h3-fs);
  font-weight: 600;
  color: var(--warm-light);
  line-height: 1.3;
  margin-bottom: 22px;
}

.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.label--gold {
  color: var(--azure);
  margin-bottom: 14px;
  display: block;
}

.label--azure {
  color: var(--azure);
  margin-bottom: 14px;
  display: block;
}

.body-text {
  font-size: var(--body-fs);
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 20px;
}

.body-text--centered {
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.body-text--aside {
  max-width: 420px;
}

.gold-rule {
  width: 28px;
  height: 1px;
  background: var(--azure);
  margin-bottom: 20px;
}

.gold-rule--center {
  margin: 0 auto 22px;
  width: 40px;
}

.gold-rule--azure {
  background: var(--azure);
}

/* ═══════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════ */

.section-header {
  margin-bottom: 72px;
}

.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header--center .headline-2 {
  margin-top: 0;
  margin-bottom: 18px;
}

.section-header--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 52px;
}

@media (max-width: 960px) {
  .section-header--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ═══════════════════════════════════════════════
   BUTTONS  — Pill-Style (Trove-inspired, Azure brand)
═══════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 100px;           /* full pill */
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    background   0.22s ease,
    box-shadow   0.22s ease,
    transform    0.18s ease,
    border-color 0.22s ease,
    color        0.18s ease;
}

/* ── Primary: Glassmorphism Azure ── */
.btn--primary {
  background: rgba(47, 183, 255, 0.50);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border: 1.5px solid rgba(47, 183, 255, 0.80);
  color: #fff;
  box-shadow:
    0 4px 28px rgba(47, 183, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn--primary:hover {
  background: rgba(47, 183, 255, 0.30);
  border-color: rgba(47, 183, 255, 0.88);
  box-shadow:
    0 8px 36px rgba(47, 183, 255, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-2px) scale(1.03);
}

.btn--primary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 2px 12px rgba(47, 183, 255, 0.20);
}

/* ── Outline Gold: subtle gold border ── */
.btn--outline-gold {
  background: transparent;
  border: 1.5px solid rgba(192, 138, 62, 0.55);
  color: var(--champagne);
  box-shadow: none;
}

.btn--outline-gold:hover {
  background: rgba(192, 138, 62, 0.10);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Outline Azure: Glassmorphism + Azure border ── */
.btn--outline-azure {
  background: rgba(9, 14, 22, 0.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1.5px solid rgba(47, 183, 255, 0.55);
  color: var(--azure);
  box-shadow: 0 2px 14px rgba(47, 183, 255, 0.08);
}

.btn--outline-azure:hover {
  background: rgba(47, 183, 255, 0.12);
  border-color: var(--azure);
  box-shadow: 0 6px 28px rgba(47, 183, 255, 0.22);
  transform: translateY(-2px) scale(1.03);
}

/* ── Emerald: dark pill + emerald border ── */
.btn--emerald {
  background: rgba(5, 7, 11, 0.80);
  color: #8eedc7;
  border: 1.5px solid rgba(20, 180, 115, 0.50);
  box-shadow: 0 2px 14px rgba(7, 79, 59, 0.14);
}

.btn--emerald:hover {
  background: rgba(7, 79, 59, 0.22);
  border-color: rgba(20, 180, 115, 0.80);
  color: #a7f3d0;
  box-shadow: 0 6px 28px rgba(7, 79, 59, 0.28);
  transform: translateY(-2px) scale(1.03);
}

/* ── Champagne: warm cream outline — Speisekarte / sekundäre CTAs ── */
.btn--champagne {
  background: rgba(5, 7, 11, 0.80);
  border: 1.5px solid rgba(245, 217, 165, 0.45);
  color: var(--champagne);
  box-shadow: 0 2px 14px rgba(245, 217, 165, 0.06);
}

.btn--champagne:hover {
  background: rgba(245, 217, 165, 0.08);
  border-color: rgba(245, 217, 165, 0.72);
  color: #fff;
  box-shadow: 0 6px 28px rgba(245, 217, 165, 0.16);
  transform: translateY(-2px) scale(1.03);
}

.btn--champagne:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 2px 12px rgba(245, 217, 165, 0.10);
}


/* ── Small variant ── */
.btn--sm {
  padding: 11px 26px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.btn__icon {
  flex-shrink: 0;
  font-style: normal;
}

/* ═══════════════════════════════════════════════
   BADGES
═══════════════════════════════════════════════ */

.badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
}

.badge--gold {
  color: var(--azure);
  border: 1px solid rgba(47, 183, 255, 0.35);
}

.badge--azure {
  color: var(--azure);
  border: 1px solid rgba(47, 183, 255, 0.3);
}

/* ═══════════════════════════════════════════════
   PLACEHOLDERS (image / video slots)
═══════════════════════════════════════════════ */

.placeholder {
  background: repeating-linear-gradient(
    -45deg,
    #080c14 0, #080c14 12px,
    #0b1019 12px, #0b1019 24px
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.placeholder--4-5 {
  aspect-ratio: 4 / 5;
}

.placeholder--16-9 {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.placeholder--map {
  flex: 1;
  min-height: 380px;
  border-radius: 4px;
}

.placeholder__label {
  font-family: monospace;
  font-size: 11px;
  color: rgba(160, 167, 181, 0.4);
  text-align: center;
  padding: 16px;
  line-height: 1.6;
}

.placeholder__sub {
  font-family: monospace;
  font-size: 10px;
  color: rgba(160, 167, 181, 0.3);
  text-align: center;
  margin-top: 6px;
}

.placeholder__center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.placeholder__badge {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azure);
  border: 1px solid rgba(47, 183, 255, 0.3);
  padding: 4px 10px;
  border-radius: 2px;
  background: rgba(47, 183, 255, 0.06);
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 7, 11, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(47, 183, 255, 0.13);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
  transition: opacity 0.25s ease;
}

.nav__logo:hover .nav__logo-img {
  opacity: 0.88;
  filter: drop-shadow(0 0 12px rgba(47, 183, 255, 0.22)) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 32px;
}

.nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color var(--t-fast);
}

.nav__link:hover {
  color: var(--warm-light);
}

/* Actions row */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  align-items: center;
  justify-content: center;
}

.nav__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--warm-light);
  transition: transform var(--t-base), opacity var(--t-base);
}

.nav__bar--accent {
  width: 14px;
  background: var(--azure);
  margin-left: auto;
}

/* Hamburger open state */
.nav__hamburger.is-open .nav__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger.is-open .nav__bar:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-open .nav__bar--accent {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 22px;
}

/* Mobile drawer */
.nav__mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(47, 183, 255, 0.14);
  padding: 16px var(--px) 28px;
  z-index: 99;
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile-link {
  padding: 13px 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--t-fast);
}

.nav__mobile-link:hover {
  color: var(--warm-light);
}

.nav__mobile-cta {
  margin-top: 20px;
  align-self: flex-start;
}

@media (max-width: 960px) {
  .nav__links  { display: none; }
  .nav__cta    { display: none; }
  .nav__hamburger { display: flex; }
}

.nav--scrolled {
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(47, 183, 255, 0.10);
  border-bottom-color: rgba(47, 183, 255, 0.12);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--onyx);
}

/* Fullscreen background video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}

/* Atmospheric glow layers */
.hero__glow {
  position: absolute;
  pointer-events: none;
  filter: blur(28px);
  animation: glowPulse 7s ease-in-out infinite;
}

.hero__glow--blue {
  bottom: 0;
  left: 50%;
  width: 90%;
  height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center bottom, rgba(47, 183, 255, 0.16) 0%, rgba(47, 183, 255, 0.04) 50%, transparent 68%);
}

.hero__glow--gold {
  top: 20%;
  right: 6%;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(47, 183, 255, 0.055) 0%, transparent 70%);
  filter: blur(55px);
  animation-duration: 9s;
  animation-delay: 2s;
}

/* Cinematic vignette over video */
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(5, 7, 11, 0.40) 0%,
      rgba(5, 7, 11, 0.06) 22%,
      rgba(5, 7, 11, 0.18) 38%,
      rgba(5, 7, 11, 0.46) 52%,
      rgba(5, 7, 11, 0.60) 68%,
      rgba(5, 7, 11, 0.52) 82%,
      var(--onyx) 100%
    ),
    radial-gradient(ellipse at center, transparent 32%, rgba(5, 7, 11, 0.55) 100%);
}

/* Video label badge */
.hero__video-badge {
  position: absolute;
  bottom: 96px;
  right: var(--px);
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
}

.hero__video-label {
  font-family: monospace;
  font-size: 10px;
  color: rgba(160, 167, 181, 0.55);
  letter-spacing: 0.08em;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--px);
  max-width: 1120px;
}

.hero__label {
  animation: heroIn 0.85s ease 0.15s both;
  margin-bottom: 28px;
}

.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--warm-light);
  letter-spacing: 0.01em;
  margin-bottom: 30px;
  animation: heroIn 0.95s ease 0.35s both;
}

.hero__sub {
  font-size: clamp(15px, 1.9vw, 18px);
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 50px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  animation: heroIn 0.85s ease 0.55s both;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroIn 0.85s ease 0.72s both;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollDrop 2.6s ease-in-out infinite;
}

.hero__scroll-label {
  font-size: 9px;
  letter-spacing: 0.38em;
  color: var(--muted);
  text-transform: uppercase;
  opacity: 0.5;
}

.hero__scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(47, 183, 255, 0.7), transparent);
}

/* Hero social circle buttons */
.hero__social {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
  animation: heroIn 0.85s ease 0.90s both;
}

.social-icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(5, 7, 11, 0.85);
  border: 1.5px solid rgba(47, 183, 255, 0.22);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  transition: color var(--t-base), border-color var(--t-base), background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.social-icon-btn:hover {
  color: var(--champagne);
  border-color: rgba(47, 183, 255, 0.60);
  background: rgba(5, 7, 11, 0.92);
  box-shadow: 0 6px 24px rgba(47, 183, 255, 0.18);
  transform: scale(1.12) translateY(-1px);
}

.social-icon-btn svg {
  display: block;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════ */

.ticker {
  background: var(--charcoal);
  border-top: 1px solid rgba(47, 183, 255, 0.15);
  border-bottom: 1px solid rgba(47, 183, 255, 0.15);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}

.ticker__track {
  display: inline-flex;
  animation: tickerScroll 32s linear infinite;
}

.ticker__set {
  display: inline-flex;
  align-items: center;
}

.ticker__item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 32px;
}

.ticker__item--gold {
  color: var(--azure);
}

.ticker__item--azure {
  color: var(--azure);
}

.ticker__sep {
  color: rgba(47, 183, 255, 0.35);
  font-size: 10px;
}

/* ═══════════════════════════════════════════════
   EXPERIENCE SECTION
═══════════════════════════════════════════════ */

.experience__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(48px, 8vw, 96px);
}

.experience__block:last-child {
  margin-bottom: 0;
}

.experience__text {
  padding: clamp(0px, 2vw, 32px) 0;
}

.experience__text .label--gold {
  margin-bottom: 16px;
}

.experience__video-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
}

.experience__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@media (max-width: 960px) {
  .experience__block {
    grid-template-columns: 1fr;
  }

  .experience__block--img-right .experience__text {
    order: -1;
  }
}

/* ═══════════════════════════════════════════════
   SCULPTURES SECTION
═══════════════════════════════════════════════ */

.sculptures__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  margin-bottom: 52px;
}

.sculptures__pillars {
  border-left: 1px solid rgba(47, 183, 255, 0.18);
  padding-left: clamp(24px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pillar {
  text-align: center;
  padding: 20px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

.pillar__numeral {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--azure);
  margin-bottom: 6px;
}

.pillar__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── Bulldoggen Reihe ── */
.dogs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 36px);
  margin-top: 60px;
  align-items: end;
}

.dogs-row__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.dogs-row__img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.40s ease, filter 0.40s ease;
}

/* ── Aura: jede Bulldogge leuchtet in ihrer eigenen Farbe ── */
.dogs-row__item--orange .dogs-row__img {
  filter: drop-shadow(0 0 22px rgba(230, 90, 15, 0.32))
          drop-shadow(0 8px 36px rgba(255, 115, 30, 0.18));
}
.dogs-row__item--orange:hover .dogs-row__img {
  transform: translateY(-12px) scale(1.04);
  filter: drop-shadow(0 0 36px rgba(255, 95, 10, 0.65))
          drop-shadow(0 20px 56px rgba(230, 80, 10, 0.40));
}

.dogs-row__item--white .dogs-row__img {
  filter: drop-shadow(0 0 22px rgba(230, 215, 195, 0.30))
          drop-shadow(0 8px 36px rgba(210, 200, 185, 0.16));
}
.dogs-row__item--white:hover .dogs-row__img {
  transform: translateY(-12px) scale(1.04);
  filter: drop-shadow(0 0 36px rgba(245, 235, 220, 0.62))
          drop-shadow(0 20px 56px rgba(225, 215, 200, 0.36));
}

.dogs-row__item--green .dogs-row__img {
  filter: drop-shadow(0 0 22px rgba(100, 210, 80, 0.32))
          drop-shadow(0 8px 36px rgba(80, 190, 60, 0.18));
}
.dogs-row__item--green:hover .dogs-row__img {
  transform: translateY(-12px) scale(1.04);
  filter: drop-shadow(0 0 36px rgba(110, 225, 85, 0.65))
          drop-shadow(0 20px 56px rgba(70, 195, 55, 0.40));
}

.dogs-row__item--pink .dogs-row__img {
  filter: drop-shadow(0 0 22px rgba(255, 110, 175, 0.32))
          drop-shadow(0 8px 36px rgba(240, 90, 160, 0.18));
}
.dogs-row__item--pink:hover .dogs-row__img {
  transform: translateY(-12px) scale(1.04);
  filter: drop-shadow(0 0 36px rgba(255, 100, 170, 0.65))
          drop-shadow(0 20px 56px rgba(235, 75, 150, 0.40));
}

.dogs-row__label {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--champagne);
  text-transform: uppercase;
  opacity: 0.68;
}

/* Mini-Bulldog-Dots nur auf Mobile sichtbar */
.dogs-dots {
  display: none;
}

@media (max-width: 960px) {
  .sculptures__intro {
    grid-template-columns: 1fr;
  }

  .sculptures__pillars {
    border-left: none;
    border-top: 1px solid rgba(47, 183, 255, 0.18);
    padding-left: 0;
    padding-top: 32px;
  }

  .dogs-carousel-wrap {
    overflow-x: clip;
    overflow-y: visible;
    margin-top: 48px;
    margin-left: calc(var(--section-px, 24px) * -1);
    margin-right: calc(var(--section-px, 24px) * -1);
  }

  .dogs-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  .dogs-row__item {
    flex: 0 0 100%;
    padding: 0 var(--section-px, 24px);
    box-sizing: border-box;
    max-width: none;
  }

  .dogs-dots {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    padding: 24px var(--section-px, 24px) 8px;
  }

  .dogs-dot {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0.32;
    width: auto;
    border-radius: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .dogs-dot img {
    height: 56px;
    width: auto;
    display: block;
    filter: grayscale(0.3);
    transition: filter 0.35s ease;
  }

  .dogs-dot.is-active {
    opacity: 1;
    transform: translateY(-6px) scale(1.15);
    background: transparent;
    width: auto;
    border-radius: 0;
  }

  .dogs-dot.is-active img {
    filter: drop-shadow(0 0 10px rgba(47, 183, 255, 0.6))
            drop-shadow(0 4px 18px rgba(47, 183, 255, 0.28));
  }
}

/* ═══════════════════════════════════════════════
   BULLDOG GUARDIANS — fixierte Scroll-Aufpasser
   Erscheinen wenn man die Sculptures-Section
   verlässt, bleiben bis kurz vor dem Footer.
═══════════════════════════════════════════════ */

.guardian {
  position: fixed;
  bottom: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity   0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.guardian--left {
  left: 0;
  transform: translateX(-80px);
  transform-origin: bottom left;
}

.guardian--right {
  right: 0;
  transform: translateX(80px);
  transform-origin: bottom right;
}

.guardian.is-visible {
  opacity: 0.68;
  transform: translateX(0);
}

.guardian__img {
  height: clamp(200px, 24vw, 440px);
  width: auto;
  display: block;
  filter: drop-shadow(0 -2px 32px rgba(47, 183, 255, 0.14));
}

@media (max-width: 960px) {
  .guardian {
    bottom: 90px;
  }

  .guardian__img {
    height: clamp(72px, 42vw, 190px);
    filter: drop-shadow(0 -1px 12px rgba(47, 183, 255, 0.18));
  }

  .guardian--left  { transform: translateX(-50px); }
  .guardian--right { transform: translateX(50px);  }

  .guardian.is-visible {
    opacity: 0.48;
  }
}


/* ═══════════════════════════════════════════════
   SHISHA DECO — 3D Freigestellt
═══════════════════════════════════════════════ */

.shisha-section {
  position: relative;
  overflow: clip;
}

.shisha-section__inner {
  position: relative;
  z-index: 1;
}

.shisha-header__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.shisha-menu-link {
  align-self: flex-start;
}

/* ── Drinks Section ── */
.drinks-section {
  position: relative;
  overflow: clip;
}

.drinks-section__inner {
  position: relative;
  z-index: 1;
}

.drinks-deco {
  position: absolute;
  top: 32px;
  height: clamp(200px, 26vw, 400px);
  width: auto;
  pointer-events: none;
  z-index: 10;
  animation: shishaFloat 7s ease-in-out infinite;
  animation-delay: -1s;
  transition: top 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.drinks-deco--right {
  right: 2%;
  transform-origin: top right;
  filter:
    drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 30px rgba(7, 79, 59, 0.25))
    drop-shadow(-4px 0 20px rgba(0, 0, 0, 0.4));
}

/* Tablet */
@media (max-width: 960px) {
  .drinks-deco {
    height: clamp(140px, 24vw, 260px);
    opacity: 0.5;
  }
  .drinks-deco--right { right: 0; }
}

/* Mobile */
@media (max-width: 500px) {
  .drinks-deco {
    height: clamp(120px, 40vw, 200px);
    opacity: 0.35;
  }
  .drinks-deco--right { right: 0; }
}

.drinks-header__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.drinks-menu-link {
  align-self: flex-start;
}

/* Menu category sub-labels */
.menu-category-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(192, 138, 62, 0.2);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.menu-category-label:first-child,
.menu-category-label--first {
  margin-top: 32px;
}

.menu-category-label--spaced {
  margin-top: 48px;
}

.menu-category-label__note {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: none;
}

.menu-category-label__sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Alternative / secondary price (e.g. 0,2l / 0,75l wines) */
.menu-row__price-alt {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

/* Multi-price rows (Obstteller etc.) */
.menu-row--multi {
  align-items: flex-start;
}

.menu-row__sizes {
  font-size: 12px;
  color: var(--gold);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.menu-row__extras {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Kitchen Section ── */
.kitchen-header__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.kitchen-menu-link {
  align-self: flex-start;
}

.shisha-deco {
  position: absolute;
  bottom: 0;
  height: clamp(140px, 80%, 88%);
  width: auto;
  pointer-events: none;
  z-index: 10;
  filter:
    drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 40px rgba(47, 183, 255, 0.12))
    drop-shadow(-6px 0 24px rgba(0, 0, 0, 0.5));
  animation: shishaFloat 6s ease-in-out infinite;
}

.shisha-deco--right {
  right: 2%;
  transform-origin: bottom right;
  animation-delay: -3s;
  filter:
    drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 40px rgba(47, 183, 255, 0.08))
    drop-shadow(6px 0 24px rgba(0, 0, 0, 0.5));
}

@keyframes shishaFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Tablet */
@media (max-width: 960px) {
  .shisha-deco {
    height: clamp(180px, 60vw, 480px);
    opacity: 0.5;
    bottom: auto;
    top: 12%;
  }
  .shisha-deco--right { right: 0; }
}

/* Mobile */
@media (max-width: 500px) {
  .shisha-deco {
    height: clamp(180px, 66vw, 340px);
    opacity: 0.45;
    bottom: auto;
    top: 22%;
  }
  .shisha-deco--right { right: 8%; }
}

/* ═══════════════════════════════════════════════
   TABS
═══════════════════════════════════════════════ */

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: sticky;
  top: var(--nav-h);
  z-index: 9;
  padding: 14px 0;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Hintergrundfarbe passend zur jeweiligen Section */
.shisha-section  .tabs { background: var(--charcoal); }
.drinks-section  .tabs { background: var(--onyx); }
.kitchen-section .tabs { background: var(--charcoal); }

.tab {
  padding: 10px 26px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tab:hover {
  color: var(--warm-light);
  border-color: rgba(255, 255, 255, 0.25);
}

.tab--active {
  background: var(--azure);
  color: var(--warm-light);
  border-color: var(--azure);
}

/* Underline variant (drinks + kitchen) */
.tabs--underline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding-bottom: 0;
  padding-top: 10px;
  gap: 0;
}

/* ── Kitchen Section Deco (same system as .shisha-deco) ── */
.kitchen-section {
  position: relative;
  overflow: clip;
}

.kitchen-section__inner {
  position: relative;
  z-index: 1;
}

.kitchen-deco {
  position: absolute;
  top: 40px;
  height: clamp(200px, 28vw, 360px);
  width: auto;
  pointer-events: none;
  z-index: 10;
  filter:
    drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 24px rgba(47, 183, 255, 0.14))
    drop-shadow(-4px 0 16px rgba(0, 0, 0, 0.5));
  animation: shishaFloat 7s ease-in-out infinite;
}

.kitchen-deco--right {
  right: 3%;
  transform-origin: bottom right;
  animation-delay: -2s;
  filter:
    drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 24px rgba(47, 183, 255, 0.18))
    drop-shadow(4px 0 16px rgba(0, 0, 0, 0.5));
}

/* Tablet */
@media (max-width: 960px) {
  .kitchen-deco {
    height: clamp(180px, 28vw, 280px);
    opacity: 0.65;
    top: 20px;
  }
  .kitchen-deco--right { right: 3%; }
}

/* Mobile */
@media (max-width: 500px) {
  .kitchen-deco {
    height: clamp(150px, 42vw, 200px);
    opacity: 0.6;
    top: 10px;
  }
  .kitchen-deco--right { right: 0; }
}

.tab--line {
  padding: 10px 24px 14px;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(160, 167, 181, 0.6);
  margin-bottom: -1px;
}

.tab--line:hover {
  color: var(--warm-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.tab--line-active {
  color: var(--azure);
  border-bottom-color: var(--azure);
}

/* Tab panels */
.tab-panel {
  display: block;
}

.tab-panel[hidden] {
  display: none;
}

/* ═══════════════════════════════════════════════
   MENU CARDS (Shisha / Kitchen Specials)
═══════════════════════════════════════════════ */

.menu-grid {
  display: grid;
  gap: 16px;
}

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

@media (max-width: 960px) {
  .menu-grid--2,
  .menu-grid--3 { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .menu-grid--2 { grid-template-columns: 1fr; }
}

.menu-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 26px;
  position: relative;
  transition: border-color var(--t-base);
}

.menu-card:hover {
  border-color: rgba(47, 183, 255, 0.22);
}

.menu-card--premium {
  background: rgba(47, 183, 255, 0.04);
  border-color: rgba(47, 183, 255, 0.18);
  padding: 30px;
}

.menu-card--azure {
  background: rgba(47, 183, 255, 0.03);
  border-color: rgba(47, 183, 255, 0.14);
  padding: 30px;
}

.menu-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azure);
  border: 1px solid rgba(47, 183, 255, 0.35);
  padding: 3px 8px;
  border-radius: 2px;
}

.menu-card__badge--azure {
  color: var(--azure);
  border-color: rgba(47, 183, 255, 0.3);
}

.menu-card__category {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--azure);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.menu-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--warm-light);
  margin-bottom: 6px;
}

.menu-card__brand {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.menu-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.menu-card__price {
  font-size: 14px;
  font-weight: 500;
  color: var(--azure);
}

.menu-card__price--champagne {
  color: var(--champagne);
  font-size: 15px;
}

.menu-card__price--lg {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
}

/* ═══════════════════════════════════════════════
   MENU LIST (Vorspeisen / Hauptgerichte)
═══════════════════════════════════════════════ */

.menu-list {
  display: flex;
  flex-direction: column;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 24px;
}

.menu-row__info {
  flex: 1;
}

.menu-row__name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.menu-row__name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--warm-light);
  margin-bottom: 5px;
}

.menu-row__brand {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.menu-row__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.menu-row__price {
  font-size: 15px;
  font-weight: 500;
  color: var(--azure);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   DRINKS GRID
═══════════════════════════════════════════════ */

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


.drink-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base);
}

.drink-card:hover {
  border-color: rgba(47, 183, 255, 0.22);
  transform: translateY(-3px);
}

.drink-card__img {
  aspect-ratio: 3 / 2;
  background: repeating-linear-gradient(
    -45deg,
    var(--onyx) 0, var(--onyx) 10px,
    #090d14 10px, #090d14 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.drink-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.drink-card__img--top img {
  object-position: top;
}
.drink-card__img--minze img {
  object-position: 50% 25%;
}
.drink-card__img--mocktail img {
  object-position: 50% 10%;
}
.drink-card:hover .drink-card__img img {
  transform: scale(1.05);
}

.drink-card__body {
  padding: 22px;
}

.drink-card__name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.drink-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--warm-light);
  margin-bottom: 5px;
}

.drink-card__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.drink-card__price {
  font-size: 14px;
  font-weight: 500;
  color: var(--azure);
}

/* ═══════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  grid-auto-rows: 220px;
}

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

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}

.gallery-cell {
  background: repeating-linear-gradient(
    -45deg,
    #080c14 0, #080c14 10px,
    #0b1019 10px, #0b1019 20px
  );
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color var(--t-base);
}

.gallery-cell:hover {
  border-color: rgba(47, 183, 255, 0.18);
}

.gallery-cell--tall {
  grid-row: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: 0.88;
}

.gallery-img--lower {
  object-position: center 70%;
}

.gallery-cell:hover .gallery-img {
  transform: scale(1.04);
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   PRESS STRIP
═══════════════════════════════════════════════ */

.press {
  background: var(--charcoal);
  padding: 60px var(--px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.press .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.press__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: rgba(160, 167, 181, 0.5);
  text-transform: uppercase;
}

.press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
}

.press__logo {
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--warm-light);
  text-transform: uppercase;
  opacity: 0.45;
  transition: opacity var(--t-base);
}

.press__logo:hover {
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════
   SPOTTED CAROUSEL
═══════════════════════════════════════════════ */

/* Desktop: overflow:hidden clips the carousel track.
   Cards fan on hover via nth-child transforms.      */
.spotted {
  position: relative;
  overflow: hidden;
  /* Extra vertical buffer so rotated card corners
     stay within the border-box and aren't clipped. */
  padding: 14px 0;
  margin: -14px 0;
}

.spotted__track {
  display: flex;
  gap: 20px;
  transition: transform 0.52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── Individual card ── */
.spotted-card {
  flex: 0 0 calc((100% - 40px) / 3); /* 3 per view on desktop */
  min-width: 0;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--t-base),
              transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom center;
}

.spotted-card:hover {
  border-color: rgba(47, 183, 255, 0.28);
}

/* ── Card image area ── */
.spotted-card__img {
  aspect-ratio: 3 / 4;
  background: repeating-linear-gradient(
    -45deg,
    #060a12 0, #060a12 10px,
    #090e18 10px, #090e18 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.spotted-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.spotted-card:hover .spotted-card__img img {
  transform: scale(1.04);
}

/* Platform badge – top-right corner of image */
.spotted-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotted-card__badge--ig {
  background: rgba(47, 183, 255, 0.1);
  border: 1px solid rgba(47, 183, 255, 0.3);
  color: var(--azure);
}

.spotted-card__badge--g {
  background: rgba(47, 183, 255, 0.08);
  border: 1px solid rgba(47, 183, 255, 0.28);
  color: var(--azure);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 14px;
}

/* ── Card body ── */
.spotted-card__body {
  padding: 18px 20px 22px;
}

.spotted-card__handle {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--warm-light);
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.spotted-card__handle:hover {
  color: var(--azure);
}

.spotted-card__stars {
  color: var(--azure);
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.spotted-card__caption {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 12px;
}

.spotted-card__meta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(160, 167, 181, 0.4);
}

/* ── Arrow nav ── */
.spotted__nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 28px;
}

.spotted__arrow {
  width: 44px;
  height: 44px;
  border-radius: 3px;
  border: 1px solid rgba(47, 183, 255, 0.28);
  background: transparent;
  color: var(--azure);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.spotted__arrow:hover:not(:disabled) {
  background: rgba(47, 183, 255, 0.08);
  border-color: rgba(47, 183, 255, 0.55);
}

.spotted__arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

/* ── Desktop card fan on hover ── */
@media (min-width: 961px) {
  .spotted:hover .spotted-card:nth-child(1) { transform: rotate(-2.5deg) translateX(-12px); }
  .spotted:hover .spotted-card:nth-child(2) { transform: rotate(-1deg)   translateX(-4px);  }
  .spotted:hover .spotted-card:nth-child(3) { transform: rotate(0.5deg)  translateX(3px);   }
  .spotted:hover .spotted-card:nth-child(4) { transform: rotate(1.5deg)  translateX(9px);   }
  .spotted:hover .spotted-card:nth-child(5) { transform: rotate(2.5deg)  translateX(14px);  }
  .spotted:hover .spotted-card:nth-child(6) { transform: rotate(3.5deg)  translateX(20px);  }
}

/* ── Mobile: native scroll, 1 card at a time ── */
@media (max-width: 960px) {
  .spotted {
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  .spotted__track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    transition: none;
  }

  .spotted__track::-webkit-scrollbar {
    display: none;
  }

  .spotted-card {
    flex: 0 0 calc(85vw - 36px);
    scroll-snap-align: start;
    /* suppress JS/fan transforms on mobile */
    transform: none !important;
  }

  .spotted__nav {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   RESERVATIONS
═══════════════════════════════════════════════ */

.reservations {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.reservations__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(47, 183, 255, 0.06) 0%, rgba(47, 183, 255, 0.05) 45%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.reservations__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--px);
}

.reservations__inner .label--gold {
  margin-bottom: 18px;
}

.reservations__inner .headline-2 {
  margin-bottom: 22px;
}

.reservations__inner .body-text {
  text-align: center;
  max-width: none;
}

.reservations__hours {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.reservations__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.reservations__ig-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.reservations__ig-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  max-width: 280px;
  line-height: 1.6;
  border-left: 2px solid rgba(47, 183, 255, 0.35);
  padding-left: 10px;
  text-align: left;
}

.reservations__phone {
  font-size: 14px;
  color: var(--muted);
}

.reservations__phone-link {
  color: var(--azure);
  font-weight: 500;
  transition: color var(--t-fast);
}

.reservations__phone-link:hover {
  color: var(--champagne);
}

/* ── Reservation Widget ── */
.res-widget {
  width: 100%;
  max-width: 560px;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(192, 138, 62, 0.2);
  border-radius: 3px;
  padding: 32px 36px;
}

.res-widget__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.res-widget__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.res-widget__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.res-widget__icon {
  position: absolute;
  right: 13px;
  color: var(--bronze);
  opacity: 0.75;
  pointer-events: none;
  flex-shrink: 0;
}

.res-widget__input-wrap .res-widget__input {
  padding-right: 38px;
}

.res-widget__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.res-widget__input {
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(192, 138, 62, 0.22);
  color: var(--warm-light);
  font-family: inherit;
  font-size: 14px;
  padding: 0 16px;
  border-radius: 2px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.res-widget__input:focus {
  border-color: var(--gold);
  background: rgba(192, 138, 62, 0.06);
}

/* date + time: native picker aktivieren, dark-mode aware */
.res-widget__input[type="date"],
.res-widget__input[type="time"] {
  -webkit-appearance: textfield;
  appearance: auto;
  color-scheme: dark;
  padding: 0 12px;
  min-width: 0;
  width: 100%;
}

.res-widget__input::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 40px;
  height: 100%;
  cursor: pointer;
}

.res-widget__preview {
  position: relative;
  background: rgba(47, 183, 255, 0.04);
  border: 1px solid rgba(47, 183, 255, 0.14);
  border-radius: 2px;
  padding: 18px 20px 18px 20px;
  margin-bottom: 22px;
  min-height: 88px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.res-widget__preview.is-ready {
  border-color: rgba(192, 138, 62, 0.25);
  background: rgba(192, 138, 62, 0.04);
}

.res-widget__preview-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 10px;
}

.res-widget__preview-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  white-space: pre-line;
  transition: color 0.3s ease;
}

.res-widget__preview-text.is-ready {
  color: var(--warm-light);
}

.res-widget__copy {
  position: absolute;
  top: 11px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: transparent;
  border: 1px solid rgba(192, 138, 62, 0.20);
  border-radius: 2px;
  color: rgba(192, 138, 62, 0.55);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base), background var(--t-base), border-color var(--t-base), color var(--t-base);
}

.res-widget__preview.is-ready .res-widget__copy {
  opacity: 1;
  pointer-events: auto;
}

.res-widget__copy:hover {
  background: rgba(192, 138, 62, 0.08);
  border-color: rgba(192, 138, 62, 0.45);
  color: var(--bronze);
}

.res-widget__copy.is-copied {
  color: #6db87a;
  border-color: rgba(109, 184, 122, 0.38);
  background: rgba(109, 184, 122, 0.07);
}

.res-widget__copy-icon { flex-shrink: 0; }

.res-widget__copy-icon--check { display: none; }

.res-widget__copy.is-copied .res-widget__copy-icon--copy { display: none; }
.res-widget__copy.is-copied .res-widget__copy-icon--check { display: block; }

.res-widget__actions {
  display: flex;
  gap: 12px;
}

.res-widget__btn {
  flex: 1;
  justify-content: center;
  gap: 8px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 520px) {
  .res-widget {
    padding: 24px 20px;
  }

  .res-widget__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .res-widget__actions {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════════ */

.location {
  border-top: 1px solid rgba(47, 183, 255, 0.12);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
}

@media (max-width: 960px) {
  .location__grid {
    grid-template-columns: 1fr;
  }
}

.location__info .headline-2--sm {
  margin-bottom: 36px;
}

/* Contact list */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item__icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(47, 183, 255, 0.3);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--azure);
}

.contact-item__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--azure);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-item__value {
  font-size: 15px;
  color: var(--warm-light);
  line-height: 1.6;
}

.contact-item__value--link {
  transition: color var(--t-fast);
}

.contact-item__value--link:hover {
  color: var(--azure);
}

.contact-item__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* Hours card */
.hours-card {
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  margin-bottom: 36px;
}

.hours-card__title {
  margin-bottom: 14px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.hours-row__day {
  color: var(--muted);
}

.hours-row__time {
  color: var(--warm-light);
}

.hours-row__time--closed {
  color: var(--muted);
}

/* Social links */
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-right: 4px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(47, 183, 255, 0.22);
  border-radius: 50%;
  background: rgba(5, 7, 11, 0.85);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color var(--t-base), color var(--t-base), background var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}

.social-icon:hover {
  border-color: rgba(47, 183, 255, 0.65);
  color: var(--champagne);
  background: rgba(5, 7, 11, 0.92);
  box-shadow: 0 6px 22px rgba(47, 183, 255, 0.16);
  transform: scale(1.12) translateY(-1px);
}

/* Map column */
.location__map-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location__map-img-link {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color var(--t-fast), opacity var(--t-fast);
}

.location__map-img-link:hover {
  border-color: rgba(47, 183, 255, 0.35);
  opacity: 0.9;
}

.location__map-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.location__maps-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  transition: border-color var(--t-fast), color var(--t-fast);
}

.location__maps-link:hover {
  border-color: rgba(47, 183, 255, 0.35);
  color: var(--warm-light);
}

/* ═══════════════════════════════════════════════
   LADIES NIGHT PROMO
═══════════════════════════════════════════════ */

.promo-event__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.promo-event__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.promo-event__visual {
  display: flex;
  justify-content: flex-end;
}

.promo-event__img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  border: 1px solid rgba(192, 138, 62, 0.3);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(192, 138, 62, 0.08);
  transition: box-shadow var(--t-slow);
}

.promo-event__img:hover {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(192, 138, 62, 0.2);
}

@media (max-width: 768px) {
  .promo-event__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .promo-event__visual {
    justify-content: center;
  }

  .promo-event__img {
    max-width: 360px;
  }
}

@media (max-width: 480px) {
  .promo-event__img {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════ */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 500;
  color: var(--warm-light);
  transition: color var(--t-fast);
}

.faq-btn:hover {
  color: var(--azure);
}

.faq-btn[aria-expanded="true"] {
  color: var(--azure);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--azure);
  transition: transform var(--t-base);
}

.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 0 24px;
}

.faq-panel[hidden] {
  display: none;
}

.faq-answer {
  font-size: var(--body-fs);
  color: var(--muted);
  line-height: 1.82;
  max-width: 620px;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */

.footer {
  background: var(--onyx);
  border-top: 1px solid rgba(47, 183, 255, 0.08);
  padding: 36px var(--px);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-img {
  height: 100px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6));
  opacity: 0.92;
}

.footer__copy {
  font-size: 12px;
  color: rgba(160, 167, 181, 0.45);
  letter-spacing: 0.04em;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal-link {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(160, 167, 181, 0.5);
  text-transform: uppercase;
  transition: color var(--t-fast);
}

.footer__legal-link:hover {
  color: var(--azure);
}

@media (max-width: 500px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.footer__credit {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer__credit-text {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(160, 167, 181, 0.35);
}

.footer__credit-link {
  color: rgba(160, 167, 181, 0.55);
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer__credit-link:hover {
  color: var(--azure);
}


/* ═══════════════════════════════════════════════
   REDUCED MOTION (Accessibility — WCAG 2.1 2.3.3)
   Respects prefers-reduced-motion user preference.
   All transitions kept but shortened to near-instant.
   Infinite/looping animations are fully disabled.
═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Reveal elements: show immediately, no fade-in */
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Dog carousel: no transform transitions */
  #dogRotor {
    transition: none !important;
  }

  /* Guardian bulldogs: appear without transition */
  #guardianLeft,
  #guardianRight {
    transition: none !important;
  }
}


/* ═══════════════════════════════════════════════
   MENÜKARTE SHOWCASE — Homepage (mcover Buchkarten)
═══════════════════════════════════════════════ */

.mshow-shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 40px);
  max-width: 900px;
  margin: clamp(40px, 6vw, 60px) auto 0;
  perspective: 1600px;
}

/* mcover als <a>-Link auf der Homepage */
a.mcover {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mcover {
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  aspect-ratio: 10 / 14;
  border-radius: 3px 8px 8px 3px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.22, 0.8, 0.3, 1), box-shadow 0.45s ease;
  box-shadow:
    0 22px 50px -18px rgba(0, 0, 0, 0.75),
    inset 0 0 0 1px rgba(47, 183, 255, 0.12);
  background:
    linear-gradient(155deg, rgba(47, 183, 255, 0.13), transparent 45%),
    linear-gradient(320deg, rgba(192, 138, 62, 0.07), transparent 50%),
    var(--charcoal);
  overflow: hidden;
}

.mcover--azure {
  background:
    linear-gradient(155deg, rgba(47, 183, 255, 0.14), transparent 50%),
    linear-gradient(320deg, rgba(192, 138, 62, 0.08), transparent 55%),
    var(--charcoal);
}

.mcover--emerald {
  background:
    linear-gradient(155deg, rgba(7, 79, 59, 0.35), transparent 50%),
    linear-gradient(320deg, rgba(192, 138, 62, 0.10), transparent 55%),
    var(--charcoal);
}

.mcover::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(90deg, rgba(0,0,0,0.55), transparent);
  border-right: 1px solid rgba(245, 217, 165, 0.08);
}

.mcover:hover, .mcover:focus-visible {
  transform: translateY(-10px) rotateX(4deg);
  box-shadow:
    0 40px 70px -20px rgba(0, 0, 0, 0.85),
    0 0 40px -10px rgba(47, 183, 255, 0.30),
    inset 0 0 0 1px rgba(47, 183, 255, 0.28);
  outline: none;
}
.mcover--azure:hover, .mcover--azure:focus-visible {
  box-shadow:
    0 40px 70px -20px rgba(0, 0, 0, 0.85),
    0 0 45px -8px rgba(47, 183, 255, 0.40),
    inset 0 0 0 1px rgba(47, 183, 255, 0.35);
}
.mcover--emerald:hover, .mcover--emerald:focus-visible {
  box-shadow:
    0 40px 70px -20px rgba(0, 0, 0, 0.85),
    0 0 40px -10px rgba(7, 79, 59, 0.5),
    inset 0 0 0 1px rgba(245, 217, 165, 0.22);
}

.mcover__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10%;
  text-align: center;
}

.mcover__frame {
  position: absolute;
  inset: 14px;
  border: 1px solid var(--page-edge);
  border-radius: 2px;
  pointer-events: none;
}
.mcover__frame::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(245, 217, 165, 0.09);
}

.mcover__num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--azure);
  letter-spacing: 0.3em;
}

.mcover__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 5vw, 58px);
  height: clamp(50px, 6.2vw, 72px);
  color: var(--azure);
  opacity: 0.58;
  transition: opacity var(--t-base), transform var(--t-base);
  flex-shrink: 0;
}
.mcover:hover .mcover__img, .mcover:focus-visible .mcover__img {
  opacity: 0.88;
  transform: translateY(-4px) scale(1.06);
}
.mcover__img svg { width: 100%; height: 100%; }
.mcover--emerald .mcover__img { color: #5cb88a; }


.mcover__cat {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
}

.mcover__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.25;
  color: var(--warm-light);
}

.mcover__line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--azure), transparent);
  opacity: 0.5;
}

.mcover__items {
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
  max-width: 80%;
  opacity: 0.8;
}

.mcover__hint {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--azure);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t-base), transform var(--t-base);
}
.mcover:hover .mcover__hint, .mcover:focus-visible .mcover__hint {
  opacity: 1;
  transform: translateY(0);
}

.mshow-footer {
  text-align: center;
  margin-top: clamp(32px, 4vw, 48px);
}

@media (max-width: 760px) {
  .mshow-shelf {
    grid-template-columns: 1fr;
    max-width: 300px;
    gap: 26px;
  }
  .mshow-shelf .mcover { aspect-ratio: 10 / 13; }
}

@media (prefers-reduced-motion: reduce) {
  .mcover { transition: none; }
}

/* ═══ Scroll-to-top ═══════════════════════════════════════════ */

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 80;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 22, 38, 0.75);
  border: 1px solid rgba(47, 183, 255, 0.55);
  border-radius: 50%;
  color: #2FB7FF;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(47, 183, 255, 0.25), 0 0 24px rgba(47, 183, 255, 0.1);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  border-color: rgba(47, 183, 255, 0.9);
  box-shadow: 0 0 14px rgba(47, 183, 255, 0.55), 0 0 36px rgba(47, 183, 255, 0.22);
}

@media (max-width: 600px) {
  .scroll-top { bottom: 20px; right: 16px; }
}

