/* ============================================================
   Café Lumière — Premium 3D Cafe Website
   Color Palette:
     Primary:   #3E2723 (Deep Brown)
     Secondary: #F5E6CA (Cream/Beige)
     Accent:    #A1887F (Warm Coffee)
     Highlight: #D4A373 (Soft Gold)
   ============================================================ */

/* ─── ROOT & RESET ─────────────────────────────────────────── */
:root {
  --primary:    #3E2723;
  --secondary:  #F5E6CA;
  --accent:     #A1887F;
  --highlight:  #D4A373;
  --dark:       #1a0f0a;
  --light-text: #f0e0cc;
  --card-bg:    rgba(62,39,35,0.55);
  --glass-bg:   rgba(245,230,202,0.08);
  --shadow-warm: 0 8px 40px rgba(62,39,35,0.35);
  --shadow-glow: 0 0 30px rgba(212,163,115,0.4);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Jost', 'Segoe UI', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--dark);
  color: var(--secondary);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: .6rem;
}
.section-label.light { color: var(--secondary); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--highlight);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--accent);
  max-width: 500px;
  margin: 0 auto;
}
.section-body {
  color: rgba(245,230,202,0.75);
  margin-bottom: .75rem;
}

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

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

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  color: var(--primary);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
  padding: .8rem 2rem;
  border-radius: 50px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212,163,115,0.35);
  cursor: pointer;
}
.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(212,163,115,0.6), 0 0 0 4px rgba(212,163,115,0.15);
  color: var(--primary);
}
.btn-glow:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .06em;
  padding: .8rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(245,230,202,0.3);
  transition: var(--transition);
}
.btn-ghost:hover {
  background: rgba(245,230,202,0.08);
  border-color: var(--highlight);
  color: var(--highlight);
  transform: translateY(-3px);
}

.btn-outline-glow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
  padding: .8rem 2rem;
  border-radius: 50px;
  border: 1.5px solid var(--highlight);
  color: var(--highlight);
  background: transparent;
  transition: var(--transition);
}
.btn-outline-glow:hover {
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* ─── NAVBAR ───────────────────────────────────────────────── */
#mainNav {
  background: transparent;
  padding: 1.2rem 0;
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(26,15,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: .7rem 0;
  border-bottom: 1px solid rgba(212,163,115,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.navbar-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--secondary) !important;
  letter-spacing: .03em;
  transition: var(--transition);
}
.navbar-brand em { color: var(--highlight); }
.navbar-brand .brand-icon { margin-right: .3rem; }
.navbar-brand:hover { color: var(--highlight) !important; }

.nav-link {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(245,230,202,0.8) !important;
  padding: .5rem 1rem !important;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--highlight);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover       { color: var(--highlight) !important; }
.nav-link:hover::after { width: 60%; }

.btn-reserve {
  background: linear-gradient(135deg, var(--highlight), var(--accent)) !important;
  color: var(--primary) !important;
  border-radius: 50px !important;
  padding: .45rem 1.4rem !important;
  font-weight: 600 !important;
}
.btn-reserve:hover {
  box-shadow: var(--shadow-glow) !important;
  transform: translateY(-2px);
}
.btn-reserve::after { display: none !important; }

.navbar-toggler {
  border: 1.5px solid rgba(212,163,115,0.4);
  border-radius: 8px;
  padding: .4rem .7rem;
}
.toggler-icon { color: var(--highlight); font-size: 1.1rem; }

/* ─── HERO SECTION ─────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: radial-gradient(ellipse at 30% 50%, #3E2723 0%, #1a0f0a 55%, #0d0806 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Floating particles background */
.hero-bg-blur {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(212,163,115,0.12) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(161,136,127,0.1) 0%, transparent 40%);
  pointer-events: none;
}

/* Floating beans */
.bean {
  position: absolute;
  font-size: 1.8rem;
  animation: floatBean 8s ease-in-out infinite;
  opacity: .4;
  filter: blur(1px);
  user-select: none;
}
.bean-1 { top: 15%; left: 8%;  animation-delay: 0s;    animation-duration: 7s; }
.bean-2 { top: 70%; left: 5%;  animation-delay: 1.5s;  animation-duration: 9s; }
.bean-3 { top: 20%; right: 8%; animation-delay: 0.8s;  animation-duration: 8s; }
.bean-4 { top: 60%; right: 5%; animation-delay: 2s;    animation-duration: 7.5s; }
.bean-5 { top: 45%; left: 50%; animation-delay: 3s;    animation-duration: 10s; }

@keyframes floatBean {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: .3; }
  33%      { transform: translateY(-20px) rotate(15deg); opacity: .6; }
  66%      { transform: translateY(10px) rotate(-10deg); opacity: .4; }
}

/* ── 3D Coffee Cup ── */
.coffee-cup-wrapper {
  margin: 0 auto 2.5rem;
  width: 180px;
  perspective: 800px;
}

.cup-3d {
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCup 6s ease-in-out infinite;
  transition: var(--transition);
  width: 120px;
  margin: 0 auto;
}
@keyframes rotateCup {
  0%,100% { transform: rotateY(-15deg) rotateX(5deg); }
  50%      { transform: rotateY(15deg) rotateX(-3deg); }
}

.cup-body {
  width: 110px;
  height: 90px;
  background: linear-gradient(145deg, #5D4037, #3E2723, #2c1a16);
  border-radius: 8px 8px 20px 20px;
  position: relative;
  margin: 0 auto;
  box-shadow:
    inset -8px 0 20px rgba(0,0,0,0.4),
    inset 8px 0 15px rgba(212,163,115,0.1),
    0 15px 40px rgba(0,0,0,0.5);
  overflow: hidden;
}

.cup-liquid {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(180deg, #8B4513 0%, #3E1F0D 100%);
  border-radius: 0 0 16px 16px;
}
.cup-liquid::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, #D2691E, #A0522D, #8B4513, #D2691E);
  background-size: 200% 100%;
  animation: liquidShimmer 3s linear infinite;
  border-radius: 50%;
}
@keyframes liquidShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.cup-shine {
  position: absolute;
  top: 10px; left: 8px;
  width: 20px; height: 35px;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.cup-handle {
  position: absolute;
  right: -22px;
  top: 15px;
  width: 25px;
  height: 40px;
  border: 9px solid #5D4037;
  border-left: none;
  border-radius: 0 20px 20px 0;
  box-shadow: 2px 0 8px rgba(0,0,0,0.3);
}

.cup-saucer {
  width: 140px;
  height: 18px;
  background: linear-gradient(180deg, #5D4037, #3E2723);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  position: relative;
}
.cup-saucer::after {
  content: '';
  position: absolute;
  top: 3px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 8px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
}

/* Steam Animation */
.steam-container {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.steam {
  width: 8px;
  height: 50px;
  border-radius: 50px;
  background: linear-gradient(to top, rgba(212,163,115,0.6), transparent);
  animation: steamRise 2.5s ease-in-out infinite;
  filter: blur(3px);
}
.steam-1 { animation-delay: 0s; }
.steam-2 { animation-delay: .7s; transform: scaleX(1.3); }
.steam-3 { animation-delay: 1.4s; }

@keyframes steamRise {
  0%   { transform: translateY(0) scaleX(1);   opacity: .7; }
  50%  { transform: translateY(-20px) scaleX(1.4); opacity: .5; }
  100% { transform: translateY(-45px) scaleX(.6);  opacity: 0; }
}

/* Hero Text */
.hero-content { position: relative; z-index: 2; }

.hero-tagline {
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: .8rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards .3s;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards .5s;
}
.hero-title em {
  font-style: italic;
  color: var(--highlight);
  display: block;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(245,230,202,0.7);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards .7s;
}
.hero-cta-group {
  opacity: 0;
  animation: fadeUp .8s ease forwards .9s;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(245,230,202,0.5);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: fadeIn 1s ease forwards 1.5s;
  opacity: 0;
}
.scroll-indicator span {
  display: block;
  width: 1.5px;
  height: 45px;
  background: linear-gradient(to bottom, transparent, var(--highlight));
  margin: 0 auto 10px;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(.5); opacity: .4; }
}

/* ─── ABOUT SECTION ────────────────────────────────────────── */
.about-section {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(62,39,35,0.6) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark) 0%, #1f1108 100%);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,163,115,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-img-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-warm), 0 0 0 3px rgba(212,163,115,0.2);
  position: relative;
  padding-bottom: 120%;
}
.about-img-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
  will-change: transform;
}
.about-img-frame:hover .about-img-inner { transform: scale(1.05); }

.about-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,10,0.5) 0%, transparent 50%);
}

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(212,163,115,0.4);
  animation: pulseGlow 3s ease-in-out infinite;
}
.badge-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.badge-text {
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.3;
}

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 8px 25px rgba(212,163,115,0.4); }
  50%      { box-shadow: 0 8px 40px rgba(212,163,115,0.7); }
}

.about-stats .stat-item {
  text-align: center;
  border-right: 1px solid rgba(245,230,202,0.1);
  padding: 0 1rem;
}
.about-stats .stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--highlight);
  line-height: 1;
}
.stat-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: .3rem;
}

/* ─── MENU SECTION ─────────────────────────────────────────── */
.menu-section {
  background: linear-gradient(180deg, #1f1108 0%, #180e06 100%);
  position: relative;
}
.menu-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--highlight), transparent);
}

/* Tabs */
.menu-tabs { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; }
.tab-btn {
  background: transparent;
  border: 1.5px solid rgba(212,163,115,0.3);
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .55rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  color: var(--primary);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.menu-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212,163,115,0.12);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
}
.menu-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 20px rgba(212,163,115,0.15);
  border-color: rgba(212,163,115,0.35);
}

.menu-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
  position: relative;
}
.menu-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,10,0.8) 0%, transparent 60%);
}
.menu-card:hover .menu-card-img { transform: scale(1.08); }

.menu-card-body {
  padding: 1.3rem 1.4rem;
}
.menu-tag {
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  color: var(--primary);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: .6rem;
}
.menu-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: .3rem;
}
.menu-desc { font-size: .82rem; color: var(--accent); margin-bottom: 1rem; }

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--highlight);
  font-weight: 700;
}
.add-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--highlight);
  background: transparent;
  color: var(--highlight);
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-btn:hover {
  background: var(--highlight);
  color: var(--primary);
  transform: rotate(90deg);
}

/* ─── SIGNATURE SECTION ────────────────────────────────────── */
.signature-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(62,39,35,0.8) 0%, transparent 60%),
    linear-gradient(180deg, #180e06 0%, #1f1108 100%);
  position: relative;
  overflow: hidden;
}
.signature-section::before,
.signature-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.signature-section::before {
  width: 500px; height: 500px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(212,163,115,0.06) 0%, transparent 70%);
}
.signature-section::after {
  width: 400px; height: 400px;
  bottom: -150px; right: -80px;
  background: radial-gradient(circle, rgba(161,136,127,0.07) 0%, transparent 70%);
}

.sig-card {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(62,39,35,0.7), rgba(26,15,10,0.8));
  border: 1px solid rgba(212,163,115,0.2);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.sig-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  border-color: rgba(212,163,115,0.5);
}
.sig-card.featured {
  border-color: var(--highlight);
  box-shadow: 0 0 40px rgba(212,163,115,0.25);
  transform: translateY(-8px);
}
.sig-card.featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.5), 0 0 50px rgba(212,163,115,0.3);
}

.sig-glow {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(212,163,115,0.12) 0%, transparent 70%);
  transition: opacity .5s ease;
  pointer-events: none;
}
.sig-card:hover .sig-glow { opacity: 1; }

.featured-ribbon {
  position: absolute;
  top: 15px; right: 15px;
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  color: var(--primary);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .3rem .8rem;
  border-radius: 50px;
  z-index: 2;
}

.sig-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform .6s ease;
}
.sig-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,10,0.85) 0%, transparent 55%);
}
.sig-card:hover .sig-img { transform: scale(1.05); }

.sig-body { padding: 1.5rem; }
.sig-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: .5rem;
}
.sig-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: .6rem;
}
.sig-desc { font-size: .85rem; color: rgba(245,230,202,0.65); margin-bottom: 1rem; }
.sig-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--highlight);
}

/* ─── EXPERIENCE SECTION ───────────────────────────────────── */
.experience-section {
  min-height: 80vh;
  background:
    url('https://images.unsplash.com/photo-1616078372769-0fe4b8dc6c58?w=1600&q=80') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 0;
}
.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,15,10,0.88) 0%, rgba(62,39,35,0.75) 60%, rgba(26,15,10,0.88) 100%);
  z-index: 1;
}
.experience-content {
  position: relative;
  z-index: 2;
}
.exp-inner { max-width: 700px; margin: 0 auto; padding: 60px 20px; }
.exp-body {
  font-size: 1.05rem;
  color: rgba(245,230,202,0.75);
  max-width: 550px;
  margin: 0 auto 1rem;
}

/* Ambient decorations */
.amb-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: ambFloat 8s ease-in-out infinite;
  z-index: 1;
}
.amb-1 {
  width: 300px; height: 300px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(212,163,115,0.1) 0%, transparent 70%);
}
.amb-2 {
  width: 200px; height: 200px;
  bottom: -80px; right: 10%;
  background: radial-gradient(circle, rgba(161,136,127,0.12) 0%, transparent 70%);
  animation-delay: 2s;
}
.amb-3 {
  width: 150px; height: 150px;
  top: 30%; right: 20%;
  background: radial-gradient(circle, rgba(212,163,115,0.08) 0%, transparent 70%);
  animation-delay: 4s;
}
@keyframes ambFloat {
  0%,100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.15) rotate(180deg); }
}

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
  background: linear-gradient(180deg, #1f1108 0%, #180e06 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.testimonial-track-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.testimonial-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
}

.testi-card {
  min-width: 330px;
  max-width: 330px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212,163,115,0.12);
  border-radius: 18px;
  padding: 2rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: rgba(212,163,115,0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-warm);
}
.testi-stars {
  color: var(--highlight);
  font-size: 1.1rem;
  letter-spacing: .1em;
  margin-bottom: .8rem;
}
.testi-text {
  font-size: .9rem;
  color: rgba(245,230,202,0.8);
  font-style: italic;
  margin-bottom: 1.4rem;
  line-height: 1.7;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  width: 45px; height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.testi-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--secondary);
}
.testi-role {
  font-size: .75rem;
  color: var(--accent);
  letter-spacing: .05em;
}

/* ─── GALLERY ──────────────────────────────────────────────── */
.gallery-section {
  background: linear-gradient(180deg, #180e06 0%, #1f1108 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
  border-radius: 16px;
  overflow: hidden;
}
.gallery-large { grid-column: span 3; grid-row: span 2; }
.gallery-wide  { grid-column: span 2; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.gallery-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(0.25,0.8,0.25,1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62,39,35,0.85), rgba(26,15,10,0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay span {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
}
.gallery-item:hover .gallery-img    { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ─── PRICING ──────────────────────────────────────────────── */
.pricing-section {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(62,39,35,0.5) 0%, transparent 60%),
    linear-gradient(180deg, #1f1108 0%, #180e06 100%);
}

.price-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212,163,115,0.12);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-warm);
  border-color: rgba(212,163,115,0.3);
}
.price-card.featured-plan {
  border-color: var(--highlight);
  background: linear-gradient(145deg, rgba(62,39,35,0.9), rgba(42,24,18,0.95));
  box-shadow: 0 0 40px rgba(212,163,115,0.2);
}
.price-card.featured-plan:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 50px rgba(212,163,115,0.3);
}

.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}
.price-icon { font-size: 2.5rem; margin-bottom: .8rem; }
.price-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--secondary);
  margin-bottom: .5rem;
}
.price-desc { font-size: .83rem; color: var(--accent); margin-bottom: 1.2rem; }
.price-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 1.5rem;
}
.price-value span { font-size: .85rem; font-weight: 400; color: var(--accent); }

.price-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 1.8rem;
}
.price-features li {
  font-size: .85rem;
  color: rgba(245,230,202,0.75);
  padding: .4rem 0;
  border-bottom: 1px solid rgba(245,230,202,0.06);
  display: flex;
  align-items: center;
  gap: .7rem;
}
.price-features li:last-child { border-bottom: none; }
.price-features li .fa-check { color: var(--highlight); font-size: .75rem; }

/* ─── CONTACT ──────────────────────────────────────────────── */
.contact-section {
  background: linear-gradient(180deg, #180e06 0%, #1a0f0a 100%);
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--highlight), transparent);
}

.contact-info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212,163,115,0.12);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,163,115,0.35);
  box-shadow: var(--shadow-warm);
}
.ci-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  color: var(--primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 20px rgba(212,163,115,0.3);
}
.contact-info-card h5 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: .6rem;
}
.contact-info-card p {
  font-size: .9rem;
  color: rgba(245,230,202,0.65);
  margin: 0;
}

.social-label {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.social-icons-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,163,115,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  transition: var(--transition);
  background: var(--glass-bg);
}
.social-icon:hover {
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  color: var(--primary);
  border-color: transparent;
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-glow);
}

/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #120a04 0%, #0d0806 100%);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212,163,115,0.1);
}
.footer-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(62,39,35,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(161,136,127,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: .8rem;
}
.footer-brand em { color: var(--highlight); }
.footer-brand .brand-icon { margin-right: .3rem; }
.footer-tagline {
  font-size: .88rem;
  color: rgba(245,230,202,0.5);
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: .75rem;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212,163,115,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--highlight);
  color: var(--primary);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(245,230,202,0.5);
  transition: var(--transition);
  position: relative;
  padding-left: 0;
}
.footer-links a::before {
  content: '→';
  margin-right: .4rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
  display: inline-block;
  color: var(--highlight);
}
.footer-links a:hover { color: var(--highlight); padding-left: 1rem; }
.footer-links a:hover::before { opacity: 1; transform: translateX(-8px); }

.footer-newsletter-text {
  font-size: .85rem;
  color: rgba(245,230,202,0.5);
  margin-bottom: .8rem;
}
.footer-newsletter {
  display: flex;
  gap: .5rem;
}
.newsletter-input {
  flex: 1;
  background: rgba(245,230,202,0.06);
  border: 1px solid rgba(212,163,115,0.2);
  border-radius: 50px;
  padding: .65rem 1.2rem;
  font-size: .85rem;
  color: var(--secondary);
  outline: none;
  transition: var(--transition);
}
.newsletter-input::placeholder { color: rgba(245,230,202,0.3); }
.newsletter-input:focus { border-color: var(--highlight); background: rgba(245,230,202,0.09); }
.newsletter-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  border: none;
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.newsletter-btn:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.1);
}

.footer-awards { display: flex; flex-wrap: wrap; gap: .5rem; }
.award-badge {
  background: rgba(212,163,115,0.1);
  border: 1px solid rgba(212,163,115,0.2);
  color: var(--highlight);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .3rem .8rem;
  border-radius: 50px;
}

.footer-bottom {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(245,230,202,0.05);
  margin-top: 4rem;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(245,230,202,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(245,230,202,0.35);
  transition: var(--transition);
  font-size: .8rem;
}
.footer-bottom-links a:hover { color: var(--highlight); }

/* ─── SCROLL REVEAL ANIMATIONS ─────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s cubic-bezier(0.25,0.8,0.25,1);
}
.reveal-up    { transform: translateY(50px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ─── KEYFRAME UTILITIES ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 8px 25px rgba(212,163,115,0.4); }
  50%      { box-shadow: 0 8px 40px rgba(212,163,115,0.7); }
}

/* ─── MOBILE / RESPONSIVE ──────────────────────────────────── */
@media (max-width: 991px) {
  .hero-title { font-size: 3rem; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-large { grid-column: span 2; grid-row: span 1; }
  .gallery-wide  { grid-column: span 2; }
  .about-img-frame { padding-bottom: 70%; }
}

@media (max-width: 767px) {
  .section-pad { padding: 70px 0; }
  .hero-title { font-size: 2.4rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-large { grid-column: span 2; }
  .gallery-wide  { grid-column: span 2; }
  .about-badge   { bottom: -15px; right: -10px; width: 80px; height: 80px; }
  .badge-number  { font-size: 1.4rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-newsletter { flex-direction: column; }
  .newsletter-btn { width: 100%; border-radius: 50px; height: 44px; }
  .testimonial-track-wrapper {
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-large, .gallery-wide { grid-column: span 1; }
}
