/* ============================================
   MARIAN SESSIONS — Blues Club Noir Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Mono:wght@300;400;500&display=swap');

/* --- Design Tokens --- */
:root {
  --bg-deep:        #080706;
  --bg-card:        #15110d;
  --bg-card-alt:    #1f1711;
  --bg-card-hover:  #251d15;
  --accent-gold:    #d49a3a;
  --accent-blue:    #335c81;
  --highlight:      #f2c879;
  --text-primary:   #f4eadc;
  --text-muted:     #a99a88;
  --border:         rgba(212,154,58,0.22);
  --border-strong:  rgba(212,154,58,0.4);
  --danger:         #b85c38;
  --wine-red:       #722f37;
  --wine-deep:      #4a1e24;

  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'DM Sans', -apple-system, sans-serif;
  --font-mono:      'DM Mono', 'Courier New', monospace;

  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--bg-deep);
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- Noise Texture Overlay --- */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
  max-width: 65ch;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--highlight);
}

/* --- Section Tag Labels --- */
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
  display: block;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--space-3xl) 0;
  position: relative;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(8, 7, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.nav-logo span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--space-sm);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  display: block;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(212, 154, 58, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 30%, rgba(51, 92, 129, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 80%, rgba(114, 47, 55, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-overline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.hero-overline::before,
.hero-overline::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--border-strong);
}

.hero h1 {
  font-weight: 800;
  font-style: italic;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
}

.hero-session-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: inline-flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-session-info .detail {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-session-info .detail .icon {
  color: var(--accent-gold);
  font-size: 1rem;
}

.hero-session-info .detail strong {
  color: var(--text-primary);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-deep);
}
.btn-primary:hover {
  background: var(--highlight);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 154, 58, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-wine {
  background: var(--wine-red);
  color: var(--text-primary);
}
.btn-wine:hover {
  background: #8a3742;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(114, 47, 55, 0.3);
}

/* --- Divider --- */
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 0 auto;
}

/* --- Tribute Section --- */
.tribute {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.tribute-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.9;
}

.tribute-name {
  color: var(--accent-gold);
  font-style: normal;
  font-weight: 600;
}

/* --- About / What Is This --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}

.about-text p:first-of-type {
  color: var(--text-primary);
  font-size: 1.15rem;
}

.about-atmosphere {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.about-atmosphere::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(212,154,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.about-atmosphere blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  padding-left: var(--space-lg);
  border-left: 3px solid var(--accent-gold);
}

.about-atmosphere .quote-attr {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  padding-left: var(--space-lg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  display: block;
}

.card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Next Session / Event Card --- */
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: var(--space-lg) auto 0;
}

.event-visual {
  background:
    radial-gradient(ellipse at center, rgba(212,154,58,0.15) 0%, transparent 70%),
    var(--bg-card-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  min-height: 280px;
  position: relative;
}

.event-number {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 800;
  color: rgba(212, 154, 58, 0.15);
  line-height: 1;
  position: absolute;
}

.event-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--accent-gold);
  padding: 0.3rem 1rem;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.event-details {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

.event-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.event-meta-item .icon {
  color: var(--accent-gold);
  width: 18px;
  text-align: center;
}

.event-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--highlight);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.event-status .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--highlight);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* --- Etiquette --- */
.etiquette-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.etiquette-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.etiquette-item:hover {
  background: rgba(212, 154, 58, 0.04);
}

.etiquette-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.etiquette-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.etiquette-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Venue Section --- */
.venue-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.venue-info {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

.venue-info h3 {
  font-size: 1.6rem;
}

.venue-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.venue-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine-red);
  background: rgba(114, 47, 55, 0.15);
  border: 1px solid rgba(114, 47, 55, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  width: fit-content;
}

.venue-map {
  background:
    radial-gradient(ellipse at center, rgba(114,47,55,0.1) 0%, transparent 60%),
    var(--bg-card-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: var(--space-lg);
}

.venue-map-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.venue-map-placeholder .icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  opacity: 0.4;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: var(--space-sm);
}

.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:hover {
  border-color: var(--accent-gold);
  transform: scale(1.02);
}

.gallery-placeholder {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.4;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Join / CTA Section --- */
.join-section {
  text-align: center;
  position: relative;
}

.join-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,154,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.join-content {
  position: relative;
  z-index: 1;
}

.join-content h2 {
  margin-bottom: var(--space-md);
}

.join-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto var(--space-xl);
}

.join-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* WhatsApp button special styling */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.25);
}

/* --- Upcoming Features Teaser --- */
.features-teaser {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
}

.features-teaser h3 {
  margin-bottom: var(--space-lg);
  text-align: center;
  font-size: 1.3rem;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.feature-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  transition: all var(--transition);
}

.feature-pill:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.feature-pill.coming-soon {
  opacity: 0.5;
}

/* --- Footer --- */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.footer-brand {
  max-width: 350px;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.footer-brand h4 span {
  color: var(--accent-gold);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-memorial {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-memorial span {
  color: var(--accent-gold);
}

.footer-credit {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: 0.6;
  letter-spacing: 0.08em;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-grid,
  .event-card,
  .venue-card {
    grid-template-columns: 1fr;
  }

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

  .etiquette-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 160px);
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(8, 7, 6, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-session-info {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 600px) {
  section {
    padding: var(--space-2xl) 0;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 160px);
  }

  .gallery-item:first-child {
    grid-column: span 1;
  }

  .footer-inner {
    flex-direction: column;
  }

  .venue-event-card {
    grid-template-columns: 1fr !important;
  }

  .venue-event-image {
    max-height: 300px !important;
  }
}

/* ============================================
   V2 ADDITIONS — Hero BG, Venue Events, Gallery Images, Scroll Hint
   ============================================ */

/* --- Hero Background Image --- */
.hero-bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  filter: saturate(0.3) brightness(0.6);
  z-index: 0;
}

.hero::before {
  z-index: 1;
}

.hero-content {
  z-index: 2;
}

/* --- Scroll Hint --- */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0.4;
  transition: opacity var(--transition);
}

.hero-scroll-hint:hover {
  opacity: 0.7;
}

.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 25px; }
}

/* --- Venue Event Card (Whisky Tasting etc.) --- */
.venue-events-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(21, 17, 13, 0.5) 50%, var(--bg-deep) 100%);
}

.venue-event-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.venue-event-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.venue-event-image {
  overflow: hidden;
  max-height: 420px;
}

.venue-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.venue-event-card:hover .venue-event-image img {
  transform: scale(1.03);
}

.venue-event-info {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venue-event-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  background: rgba(242, 200, 121, 0.1);
  border: 1px solid rgba(242, 200, 121, 0.2);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  width: fit-content;
  margin-bottom: var(--space-md);
}

.venue-event-info h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.venue-event-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.venue-event-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

/* --- Gallery with Real Images --- */
.gallery-grid {
  grid-template-rows: auto;
}

.gallery-item {
  background: var(--bg-card);
  min-height: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(0.7) brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}

.gallery-item.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 400px;
}

/* --- Venue Card Image Panel --- */
.venue-image-panel {
  overflow: hidden;
  min-height: 300px;
}

.venue-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.8) brightness(0.9);
  transition: filter 0.6s ease;
}

.venue-card:hover .venue-image-panel img {
  filter: saturate(1) brightness(1);
}

.venue-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

/* --- Responsive additions for v2 --- */
@media (max-width: 900px) {
  .venue-event-card {
    grid-template-columns: 1fr;
  }

  .venue-event-image {
    max-height: 280px;
  }

  .gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 200px;
  }
}

@media (max-width: 600px) {
  .gallery-item.gallery-large {
    grid-column: span 1;
    min-height: 180px;
  }

  .hero-scroll-hint {
    display: none;
  }
}
