/* ═══════════════════════════════════════════════════
   BHOSPITALITY — MAIN CSS
   Version 3.0 — Design Festif & Dynamique
═══════════════════════════════════════════════════ */

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

:root {
  --gold: #C9A84C;
  --gold-light: #F5D485;
  --gold-dark: #9A6F20;
  --red: #C0392B;
  --red-light: #FF6B6B;
  --dark: #080810;
  --dark-2: #0f0f1a;
  --dark-3: #15151f;
  --dark-card: #1a1a2e;
  --light: #f8f4ed;
  --white: #ffffff;
  --text: #e8e0d0;
  --text-muted: #8a8090;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
  --font-script: 'Dancing Script', cursive;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 16px;
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.4);
}

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

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
/* Curseur natif restauré sur tactile/mobile */
@media (hover: none), (pointer: coarse) {
  body, button, a { cursor: auto !important; }
  #cursor, #cursor-follower { display: none !important; }
}

::selection { background: var(--gold); color: var(--dark); }

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

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

/* ── CURSOR ────────────────────────────────────────── */
#cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}
#cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  will-change: transform;
}
body:has(a:hover) #cursor-follower,
body:has(button:hover) #cursor-follower {
  width: 56px; height: 56px;
  border-color: var(--gold);
}

/* ── PRELOADER ──────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 999999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.pre-content {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}

.pre-logo { animation: preLogoIn 1s ease both; }

@keyframes preLogoIn {
  from { opacity: 0; transform: translateY(-30px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bh-stroke { animation: drawBH 0.8s ease both; }
.bh-stroke:nth-child(1) { animation-delay: 0.1s; }
.bh-stroke:nth-child(2) { animation-delay: 0.2s; }
.bh-stroke:nth-child(3) { animation-delay: 0.3s; }
.bh-stroke:nth-child(4) { animation-delay: 0.4s; }
.bh-stroke:nth-child(5) { animation-delay: 0.5s; }
.bh-stroke:nth-child(6) { animation-delay: 0.6s; }
.bh-stroke:nth-child(7) { animation-delay: 0.3s; }
.bh-stroke:nth-child(8) { animation-delay: 0.4s; }
.bh-stroke:nth-child(9) { animation-delay: 0.5s; }

@keyframes drawBH {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

.dot-anim {
  animation: dotPop 0.5s 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes dotPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.ospitality-text {
  animation: slideInRight 0.8s 0.7s ease both;
}
.tagline-text {
  animation: slideInRight 0.8s 0.9s ease both;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.pre-bar {
  width: 320px; height: 2px;
  background: rgba(201,168,76,0.15);
  border-radius: 2px;
  overflow: hidden;
  animation: fadeIn 0.5s 1s ease both;
}
.pre-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% 100%;
  animation: loadBar 2.5s 1s ease-out both, shimmer 1s 1s infinite;
}
@keyframes loadBar {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.pre-msg {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.7;
  animation: fadeIn 0.5s 1.2s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8,8,16,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo svg { transition: var(--transition); }
.nav-logo:hover svg { filter: brightness(1.2); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  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 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--dark) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px; padding: 6px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 2px;
}
.mobile-menu a:hover { color: var(--gold); }
.close-menu {
  position: absolute; top: 24px; right: 32px;
  font-size: 1.5rem;
  color: var(--gold);
}

/* ── BUTTONS ────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  background-size: 200% 100%;
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
  color: var(--dark);
}
.btn-primary.large { padding: 20px 48px; font-size: 0.9rem; }
.btn-primary i { font-size: 0.9em; transition: transform 0.3s ease; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.3);
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}
.btn-outline.large { padding: 20px 48px; font-size: 0.9rem; }

/* ── SECTION COMMONS ────────────────────────────── */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-dark { background: var(--dark-2); }
.section-light { background: var(--dark-3); }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}
.section-tag::before, .section-tag::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 14px; height: 1px;
  background: var(--red-light);
}
.section-tag::before { left: 0; }
.section-tag::after { right: 0; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  position: relative;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ── HERO ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(192,57,43,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.08) 0%, transparent 50%),
              var(--dark);
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--dark) 100%);
}
.hero-particles {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-particles .particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: var(--op, 0.3); }
  33% { transform: translateY(-40px) rotate(120deg); opacity: calc(var(--op, 0.3) * 1.5); }
  66% { transform: translateY(20px) rotate(240deg); opacity: var(--op, 0.3); }
}

/* Floating shapes */
.shape {
  position: absolute;
  border: 1px solid;
  border-radius: 50%;
  animation: rotateSlow linear infinite;
}
.shape-1 {
  width: 600px; height: 600px;
  top: -200px; right: -200px;
  border-color: rgba(201,168,76,0.06);
  animation-duration: 40s;
}
.shape-2 {
  width: 400px; height: 400px;
  top: 10%; right: 10%;
  border-color: rgba(201,168,76,0.04);
  animation-duration: 30s;
  animation-direction: reverse;
}
.shape-3 {
  width: 300px; height: 300px;
  bottom: 20%; left: 5%;
  border-color: rgba(192,57,43,0.06);
  animation-duration: 25s;
}
.shape-4 {
  width: 200px; height: 200px;
  bottom: 10%; left: 20%;
  border-color: rgba(201,168,76,0.05);
  animation-duration: 20s;
  animation-direction: reverse;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  display: flex; flex-direction: column;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 800px;
}
.title-line-1, .title-line-3 { color: var(--white); }
.title-line-2 {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: goldShimmer 4s ease infinite;
}
@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 500px;
}

.hero-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-bottom: 80px;
}

.scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: absolute;
  bottom: 40px; left: 50%; transform: translateX(-50%);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}
.stat-card {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  min-width: 150px;
}
.stat-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: translateX(-8px);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-left: 2px;
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
}

/* ── TICKER ─────────────────────────────────────── */
.ticker-wrap {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0 24px;
}
.ticker-sep { color: var(--dark) !important; opacity: 0.6; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SERVICES GRID (BENTO) ──────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(201,168,76,0.4);
}
.service-card:hover .card-glow { opacity: 1; }
.bento-tall { grid-row: span 2; justify-content: flex-end; }
.bento-wide { grid-column: span 2; }

.service-icon {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 2.2rem;
  color: rgba(201,168,76,0.2);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  color: var(--gold);
  transform: scale(1.1) rotate(-5deg);
}

.service-num {
  position: absolute;
  top: 28px; left: 28px;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: rgba(201,168,76,0.3);
  font-weight: 700;
  letter-spacing: 2px;
}

.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 10px; }

.card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(201,168,76,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

/* ── GALLERY ────────────────────────────────────── */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  background: transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--dark);
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: none; }
.gallery-item.large { grid-row: span 2; }

.gallery-img {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }

.gallery-icon {
  font-size: 4rem;
  color: rgba(255,255,255,0.06);
  position: absolute;
}

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.gallery-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.gallery-overlay p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── VIDEO SECTION ──────────────────────────────── */
.video-section { background: var(--dark); padding: 0; }
.video-container {
  min-height: 600px;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(192,57,43,0.1) 0%, transparent 70%), var(--dark);
}

.video-bg-text {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  color: rgba(201,168,76,0.03);
  white-space: nowrap;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: bgTextFloat 8s ease-in-out infinite;
}
@keyframes bgTextFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -52%) scale(1.02); }
}

.video-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.video-play-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.play-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 120px; height: 120px;
}
.play-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--dark);
  position: relative; z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.play-btn:hover .play-circle {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(201,168,76,0.5);
}
.play-ripple {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.4);
  animation: ripple 2.5s ease-out infinite;
}
.play-ripple.delay-1 { animation-delay: 0.8s; }
.play-ripple.delay-2 { animation-delay: 1.6s; }
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}
.play-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.video-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.video-text h2 em { font-style: italic; color: var(--gold); }
.video-text > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.video-stats {
  display: flex; gap: 40px;
}
.vstat {
  display: flex; flex-direction: column;
}
.vstat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
}
.vstat > span:nth-child(2) {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-left: 2px;
}
.vstat-label {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Deco Rings */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
  animation: rotateSlow linear infinite;
}
.deco-ring-1 { width: 500px; height: 500px; top: -100px; left: -100px; animation-duration: 35s; }
.deco-ring-2 { width: 350px; height: 350px; bottom: -80px; right: -80px; animation-duration: 28s; animation-direction: reverse; }
.deco-ring-3 { width: 250px; height: 250px; top: 20%; right: 20%; animation-duration: 20s; }

/* ── TESTIMONIALS ───────────────────────────────── */
.testimonials-section { padding: 100px 0; }
.testimonials-swiper { padding-bottom: 60px !important; }

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 20px;
  padding: 44px 40px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); }

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}
.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; }

.swiper-button-prev, .swiper-button-next {
  color: var(--gold) !important;
}
.swiper-pagination-bullet { background: var(--text-muted) !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ── PROCESS ────────────────────────────────────── */
.process-section { background: var(--dark); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 40px 32px;
  position: relative;
}
.step-connector {
  position: absolute;
  top: 62px; right: -1px;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,0.3), transparent);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201,168,76,0.08);
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.step-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--gold);
  position: relative; z-index: 1;
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.process-step p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative; z-index: 1;
}

/* ── BARSTRY SECTION ────────────────────────────── */
.barstry-section {
  position: relative;
  min-height: 500px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark-2);
}
.barstry-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(192,57,43,0.15) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.08) 0%, transparent 50%);
}
.barstry-content {
  position: relative; z-index: 2;
  max-width: 650px;
  padding: 80px 0;
}
.barstry-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}
.barstry-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.bar-b {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.barstry-dot {
  color: var(--red-light);
  -webkit-text-fill-color: var(--red-light);
}
.barstry-sub {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-style: italic;
  font-family: var(--font-script);
  font-size: 1.3rem;
}
.barstry-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.barstry-bottles {
  position: absolute;
  right: 10%; top: 50%; transform: translateY(-50%);
  display: flex; gap: 60px;
  z-index: 2;
}
.bottle {
  font-size: 5rem;
  color: rgba(201,168,76,0.15);
  animation: bottleFloat linear infinite;
}
.bottle-1 { animation-duration: 5s; animation-delay: 0s; }
.bottle-2 { animation-duration: 6s; animation-delay: 1s; }
.bottle-3 { animation-duration: 4.5s; animation-delay: 0.5s; }
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ── ABOUT ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-emblem {
  display: flex; justify-content: center;
  margin-bottom: 24px;
  animation: rotateEmblem 20s linear infinite;
}
@keyframes rotateEmblem {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.about-emblem svg { animation: rotateEmblem 20s linear infinite reverse; }
.about-img-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.about-img-card {
  border-radius: 12px;
  overflow: hidden;
  height: 140px;
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.about-img-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.img-placeholder {
  font-size: 2.5rem;
  color: rgba(201,168,76,0.2);
}

.about-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.value-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
}
.value-item i { color: var(--gold); font-size: 1rem; }

/* ── CTA SECTION ────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: var(--dark);
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-shape-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.1) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: ctaFloat 6s ease-in-out infinite;
}
.cta-shape-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: ctaFloat 8s ease-in-out infinite reverse;
}
@keyframes ctaFloat {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.05) translate(20px, 20px); }
}
.cta-content {
  position: relative; z-index: 2;
  text-align: center;
}
.cta-star {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: spin 8s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-content h2 em { font-style: italic; color: var(--gold); }
.cta-content > p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-social {
  display: flex; gap: 14px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-links h5, .footer-contact h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links ul li, .footer-contact ul li {
  margin-bottom: 12px;
}
.footer-links ul li a, .footer-contact ul li a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.87rem;
  color: var(--text-muted);
}
.footer-contact ul li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bh {
  font-family: var(--font-serif);
  font-weight: 900;
  color: var(--gold);
}
.footer-bottom-links {
  display: flex; gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ── VIDEO MODAL ────────────────────────────────── */
.video-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.video-modal.open { opacity: 1; visibility: visible; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
}
.modal-content {
  position: relative; z-index: 1;
  width: 90vw; max-width: 900px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.2);
  transform: scale(0.9);
  transition: transform 0.4s;
}
.video-modal.open .modal-content { transform: scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  color: var(--white);
  font-size: 1.4rem;
  z-index: 2;
  background: rgba(0,0,0,0.4);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.modal-close:hover { background: var(--gold); color: var(--dark); }
.modal-video-wrap { padding-bottom: 56.25%; position: relative; }
.modal-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: var(--text-muted);
}
.modal-placeholder i { font-size: 3rem; color: var(--gold); opacity: 0.5; }
.modal-placeholder p { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); }

/* ── GOLD TEXT UTILITY ───────────────────────────── */
.gold-text {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1200px) {
  .hero-stats { right: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-stats { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-row: span 1; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .video-content { grid-template-columns: 1fr; text-align: center; }
  .video-stats { justify-content: center; }
  .barstry-bottles { display: none; }
  .services-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-wide { grid-column: span 1; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .hero-content { padding: 100px 20px 60px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .cta-actions { flex-direction: column; }
}
