/* ============================================================
   ZINOS LOUNGE – Midnight Luxury Design System
   ============================================================ */

/* ── Playfair Display (lokal gehostet) ── */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin/playfair-display-v40-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin/playfair-display-v40-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin/playfair-display-v40-latin-700.woff2') format('woff2');
}

/* ── Inter (lokal gehostet) ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter-v20-latin/inter-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-v20-latin/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-v20-latin/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-v20-latin/inter-v20-latin-600.woff2') format('woff2');
}

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

:root {
  --black:       #0a0a0a;
  --dark:        #111111;
  --card:        #161616;
  --card-hover:  #1e1e1e;
  --gold:        #d4af37;
  --gold-light:  #e8cc6a;
  --gold-dim:    rgba(212,175,55,0.18);
  --gold-border: rgba(212,175,55,0.32);
  --white:       #f5f5f5;
  --gray:        #999999;
  --gray-light:  #cccccc;
  --ff-serif:    'Playfair Display', serif;
  --ff-sans:     'Inter', sans-serif;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 32px rgba(212,175,55,0.12);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
  --radius:      12px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff-sans); }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar            { width: 6px; }
::-webkit-scrollbar-track      { background: var(--dark); }
::-webkit-scrollbar-thumb      { background: var(--gold); border-radius: 3px; }

/* ── Selection ───────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--black); }

/* ── Utility ─────────────────────────────────────────────── */
.section-label {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--gold);
  opacity: 0.5;
}
.section-label::before { display: none; }
.section-label.centered {
  justify-content: center;
}
.section-label.centered::before { display: block; }

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 32px;
}
.gold-line.centered { margin: 20px auto 32px; }

.section-pad { padding: 100px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Gold Button ─────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), #b8941e);
  color: var(--black);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}
.btn-gold:hover::after { opacity: 1; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,175,55,0.4); }
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════════ */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
#main-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#main-header.scrolled .nav-inner { height: 70px; }

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-main {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-reserve { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-reserve {
  margin-top: 16px;
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-parallax-bg {
  position: absolute;
  inset: -10%;
  background-image: url('images/shisha_hero.png');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.05s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,245,245,0.7);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════ */
#about {
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -16px -16px auto auto;
  width: 60%;
  height: 60%;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 var(--radius) 0 0;
  opacity: 0.4;
  pointer-events: none;
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: auto auto -16px -16px;
  width: 60%;
  height: 60%;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 0 0 0 var(--radius);
  opacity: 0.4;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}
.about-badge .badge-num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
}
.about-badge .badge-text {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.about-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245,245,245,0.75);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gold-border);
}
.stat-item .stat-num {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  background: var(--gold-border);
  align-self: stretch;
}

/* ══════════════════════════════════════════════════════════
   MENU SECTION
══════════════════════════════════════════════════════════ */
#menu {
  background: var(--black);
}

.menu-header {
  text-align: center;
  margin-bottom: 56px;
}

/* Tab Bar */
.menu-tabs {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 8px;
  margin-bottom: 56px;
  background: var(--card);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 8px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.menu-tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 18px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition);
  text-align: center;
  line-height: 1.4;
}
.menu-tab[data-tab="shisha"] {
  grid-column: 1;
  grid-row: 1 / span 3;
}
.menu-tab[data-tab="snacks"] {
  grid-column: 2 / span 2;
}
.menu-tab:hover { 
  background: rgba(255,255,255,0.08);
  color: var(--white); 
}
.menu-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Menu Category Panels */
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-category-title {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-border), transparent);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

/* Menu Card */
.menu-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  opacity: 0;
  transition: var(--transition);
}
.menu-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.menu-card:hover::before { opacity: 1; }

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.card-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.card-price {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.card-name {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.card-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 3px 10px;
}

/* Special "Signature" badge */
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 3px 9px;
  border-radius: 20px;
}

/* Large shisha cards */
.menu-card.large-card {
  grid-column: span 1;
}

/* Shisha item bullet list inside cards */
.card-desc ul,
.shisha-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.card-desc ul li,
.shisha-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.8;
}
.card-desc ul li::before,
.shisha-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.9rem;
  line-height: 1.8;
}
.card-desc ul li em,
.shisha-list li em {
  color: var(--gray);
  font-style: normal;
  font-size: 0.75rem;
}
.card-desc ul li:has(em),
.shisha-list li:has(em) {
  color: var(--gray-light);
}

/* ══════════════════════════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════════════════════════ */
#gallery {
  background: var(--dark);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

.gallery-item.span-5 { grid-column: span 5; }
.gallery-item.span-7 { grid-column: span 7; }
.gallery-item.span-4 { grid-column: span 4; }
.gallery-item.span-8 { grid-column: span 8; }

/* ══════════════════════════════════════════════════════════
   PARALLAX STRIP
══════════════════════════════════════════════════════════ */
.parallax-strip {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-strip-bg {
  position: absolute;
  inset: -15%;
  background-image: url('images/lounge_atmosphere.png');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.parallax-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.72);
}
.parallax-strip-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.parallax-strip-content blockquote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  color: var(--white);
  max-width: 700px;
  line-height: 1.5;
  margin: 0 auto 20px;
}
.parallax-strip-content cite {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   CONTACT / RESERVATION SECTION
══════════════════════════════════════════════════════════ */
#contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .info-block {
  margin-bottom: 36px;
}
.contact-info .info-block h4 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-info .info-block p,
.contact-info .info-block a {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245,245,245,0.75);
  line-height: 1.9;
  transition: color var(--transition);
}
.contact-info .info-block a:hover { color: var(--gold); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(245,245,245,0.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-row .day { color: var(--gray-light); font-weight: 400; }
.hours-row .time { color: var(--gold); }
.hours-row .time.closed { color: #e05555; font-style: italic; }
.closed-row .day { color: var(--gray); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: #25D366;
  color: #fff;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  margin-top: 8px;
}
.whatsapp-btn:hover {
  background: #1ead54;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

/* Call CTA Card */
.contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-cta-card {
  background: var(--card);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.call-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.call-icon-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8941e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--black);
  box-shadow: 0 0 40px rgba(212,175,55,0.35);
  animation: pulse-ring 2.8s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 40px rgba(212,175,55,0.35); }
  50% { box-shadow: 0 0 70px rgba(212,175,55,0.6), 0 0 0 18px rgba(212,175,55,0.07); }
}

.call-cta-card h3 {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.call-cta-card > p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,245,245,0.6);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 52px;
  background: linear-gradient(135deg, var(--gold), #b8941e);
  color: var(--black);
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  border-radius: 60px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-call::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}
.btn-call:hover::after { opacity: 1; }
.btn-call:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(212,175,55,0.5); }
.btn-call:active { transform: translateY(0); }

.call-hint {
  display: block;
  margin-top: 24px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--gold-border);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand .logo-main {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social-link:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 300;
}
.footer-bottom a {
  color: var(--gray);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-legal {
  display: flex;
  gap: 24px;
}
.age-notice {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--gray);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 3px 10px;
}

/* ══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════════════════
   REVIEWS SECTION
══════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  display: flex !important;
  flex-direction: column;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
}

.review-meta {
  flex: 1;
}

.review-name {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.review-date {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 2px;
}

.google-icon {
  opacity: 0.7;
  transition: var(--transition);
}
.review-card:hover .google-icon {
  opacity: 1;
  transform: scale(1.1);
}

.review-stars {
  color: #ffb400; /* Google Star Yellow */
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: flex;
  gap: 2px;
}

.review-stars span {
  text-shadow: 0 0 10px rgba(255, 180, 0, 0.3);
}

.review-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,245,245,0.9);
  margin-bottom: 32px;
  flex-grow: 1;
  font-style: italic;
}

.review-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.review-tags {
  display: flex;
  gap: 8px;
}

.review-tag {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--gold);
}

.review-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.review-card:hover .review-link {
  transform: translateX(5px);
}

/* ══════════════════════════════════════════════════════════
   VIBES SECTION (VIDEOS)
══════════════════════════════════════════════════════════ */
.vibes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.vibes-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-container {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-container:hover {
  transform: translateY(-10px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}

.vibes-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.8));
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.play-hint {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.6;
  text-align: center;
  padding: 0 20px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE – TABLET (≤ 1024px)
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap img { height: 400px; }
  .about-badge { bottom: -16px; right: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top  { grid-template-columns: 1fr 1fr; }
  .footer-top > *:first-child { grid-column: span 2; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.span-5,
  .gallery-item.span-7,
  .gallery-item.span-4,
  .gallery-item.span-8 { grid-column: span 1; }
  .gallery-item { height: 240px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE – MOBILE (≤ 768px)
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }

  /* Header */
  .nav-links, .nav-reserve { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero */
  .hero-title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-gold,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }

  /* About */
  .about-stats { flex-wrap: wrap; gap: 24px; }

  /* Menu tabs */
  .menu-tabs {
    gap: 8px;
    padding: 8px;
    grid-template-columns: 90px 1fr 1fr;
  }
  .menu-tab { padding: 16px 8px; font-size: 0.8rem; }

  .menu-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; grid-column: span 1 !important; }

  /* Contact form */
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-top > *:first-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

@media (max-width: 480px) {
  #main-header { padding: 0 16px; }
  .container { padding: 0 16px; }
  .nav-logo .logo-main { font-size: 1.3rem; }
  .menu-tabs { gap: 6px; padding: 6px; grid-template-columns: 85px 1fr 1fr; }
  .menu-tab { padding: 14px 6px; font-size: 0.75rem; }
}
