:root {
  --bg-primary: #0f0c0a;
  --bg-secondary: #1a1410;
  --accent-maroon: #8B1525;
  --accent-gold: #D4AF37;
  --bright-gold: #F4D03F;
  --text-heading: #FFF8F0;
  --text-body: #D4C5B5;
  --card-bg: rgba(20,16,12,0.88);
  --sidebar-width: 280px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-primary);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.7;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 3px; }

#loading-screen {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg-primary);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-crown {
  width: 80px; height: 60px; position: relative;
  animation: crownRotate 3s linear infinite;
  filter: drop-shadow(0 0 20px var(--accent-gold)) drop-shadow(0 0 40px rgba(212,175,55,0.4));
}
.crown-base {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 70px; height: 12px;
  background: linear-gradient(90deg, #B8860B, var(--accent-gold), #B8860B);
  border-radius: 2px;
}
.crown-point {
  position: absolute; bottom: 12px; width: 0; height: 0;
  border-left: 8px solid transparent; border-right: 8px solid transparent;
  border-bottom: 35px solid var(--accent-gold);
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.6));
}
.crown-point:nth-child(2) { left: 5px; border-bottom-width: 28px; }
.crown-point:nth-child(3) { left: 22px; border-bottom-width: 38px; }
.crown-point:nth-child(4) { left: 50%; transform: translateX(-50%); border-bottom-width: 45px; }
.crown-point:nth-child(5) { right: 22px; border-bottom-width: 38px; }
.crown-point:nth-child(6) { right: 5px; border-bottom-width: 28px; }
.crown-jewel {
  position: absolute; width: 6px; height: 6px;
  background: var(--accent-maroon); border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-maroon);
}
.crown-jewel:nth-child(7) { bottom: 32px; left: 18px; }
.crown-jewel:nth-child(8) { bottom: 42px; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; }
.crown-jewel:nth-child(9) { bottom: 32px; right: 18px; }
.loading-title {
  font-family: 'Cinzel', serif; font-size: 1.8rem; font-weight: 700;
  color: var(--text-heading); margin-top: 24px;
  text-shadow: 0 0 20px rgba(212,175,55,0.3);
}
.loading-tagline {
  font-family: 'Great Vibes', cursive; font-size: 1.3rem;
  color: var(--accent-gold); margin-top: 4px;
}
.loading-bar-container {
  width: 200px; height: 3px;
  background: rgba(212,175,55,0.15); border-radius: 2px;
  margin-top: 20px; overflow: hidden;
}
.loading-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent-gold), var(--bright-gold));
  border-radius: 2px; animation: loadProgress 2.5s ease-in-out forwards;
}
@keyframes crownRotate {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes loadProgress {
  0% { width: 0%; } 50% { width: 70%; } 100% { width: 100%; }
}



.floating-orb {
  position: fixed; z-index: 3; pointer-events: none;
  border-radius: 50%; filter: blur(60px); opacity: 0.18;
  animation: orbDrift 22s ease-in-out infinite;
  mix-blend-mode: screen;
}
.floating-orb.orb-a {
  width: 340px; height: 340px; top: 8%; left: 6%;
  background: radial-gradient(circle, var(--accent-gold), transparent 70%);
  animation-duration: 26s;
}
.floating-orb.orb-b {
  width: 260px; height: 260px; bottom: 10%; right: 8%;
  background: radial-gradient(circle, var(--accent-maroon), transparent 70%);
  animation-duration: 20s; animation-delay: -8s;
}
.floating-orb.orb-c {
  width: 200px; height: 200px; top: 45%; right: 20%;
  background: radial-gradient(circle, var(--bright-gold), transparent 70%);
  animation-duration: 30s; animation-delay: -14s;
}
@keyframes orbDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(40px, -30px, 0) scale(1.1); }
  66% { transform: translate3d(-30px, 20px, 0) scale(0.95); }
}

.app-container {
  position: relative; z-index: 2;
  display: flex; min-height: 100vh;
}
.main-content {
  flex: 1; margin-left: var(--sidebar-width);
  transition: var(--transition-smooth);
}

.mobile-header {
  display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,12,10,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  padding: 12px 20px; align-items: center; justify-content: space-between;
}
.mobile-header .mobile-logo { height: 40px; width: auto; border-radius: 8px; }
.mobile-header .mobile-title {
  font-family: 'Cinzel', serif; font-size: 1rem; color: var(--text-heading); margin-left: 12px;
}
.mobile-header-left { display: flex; align-items: center; }
.hamburger {
  width: 32px; height: 32px; display: flex; flex-direction: column;
  justify-content: center; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; height: 2px; background: var(--accent-gold);
  border-radius: 1px; transition: var(--transition-smooth);
}
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); width: 24px; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); width: 24px; }

.sidebar {
  position: fixed; top: 0; left: 0; width: var(--sidebar-width); height: 100vh;
  background: linear-gradient(180deg, rgba(15,12,10,0.98) 0%, rgba(26,20,16,0.98) 100%);
  border-right: 1px solid rgba(212,175,55,0.12);
  display: flex; flex-direction: column; align-items: center;
  padding: 30px 0; z-index: 100;
  transition: var(--transition-smooth);
}
.sidebar-logo {
  width: 100px; height: auto; border-radius: 12px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 15px rgba(212,175,55,0.2));
}
.sidebar-brand {
  font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--text-heading); text-align: center; letter-spacing: 1px;
}
.sidebar-tagline {
  font-family: 'Great Vibes', cursive; font-size: 0.95rem;
  color: var(--accent-gold); margin-bottom: 30px;
}
.sidebar-divider {
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin-bottom: 20px; opacity: 0.4;
}
.sidebar-nav { width: 100%; padding: 0 16px; }
.sidebar-nav-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; margin-bottom: 6px;
  border-radius: 10px; cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--text-body); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  border: 1px solid transparent;
}
.sidebar-nav-item:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.2);
  color: var(--accent-gold);
  transform: perspective(500px) rotateY(-5deg) translateX(5px);
}
.sidebar-nav-item.active {
  background: linear-gradient(135deg, rgba(139,21,37,0.4), rgba(212,175,55,0.1));
  border-color: rgba(212,175,55,0.3);
  color: var(--accent-gold);
}
.sidebar-nav-item i {
  width: 24px; text-align: center; font-size: 1rem;
  transition: transform 0.3s ease;
}
.sidebar-nav-item:hover i {
  transform: perspective(500px) rotateY(360deg);
}
.sidebar-footer {
  margin-top: auto; padding: 20px; text-align: center;
  font-size: 0.7rem; color: rgba(212,175,55,0.4);
  font-family: 'Cinzel', serif;
}

.tab-content {
  display: none; opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tab-content.active {
  display: block; opacity: 1; transform: translateY(0);
}

.video-bg-container {
  position: relative; width: 100%; min-height: 100vh;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.video-bg-container .video-bg {
  position: absolute; top: -12%; left: 0; width: 100%; height: 124%;
  object-fit: cover; z-index: 1; will-change: transform;
}
.video-bg-container .video-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg,
    rgba(15,12,10,0.85) 0%,
    rgba(15,12,10,0.7) 30%,
    rgba(15,12,10,0.8) 70%,
    rgba(15,12,10,0.95) 100%);
}
/* Per-tab 3D animated canvas — sits above the darkened video, below the content */
.video-bg-container .tab-canvas {
  position: absolute; inset: 0; z-index: 3;
  width: 100%; height: 100%;
  pointer-events: none; mix-blend-mode: screen;
  opacity: 0.85;
}
.video-bg-container .tab-inner {
  position: relative; z-index: 4; width: 100%;
  padding: 80px 60px 60px;
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 16px;
  transition: var(--transition-smooth);
}
.glass-card:hover {
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.08);
}

.golden-shine {
  background: linear-gradient(90deg, var(--accent-gold), var(--bright-gold), var(--accent-gold), var(--bright-gold));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shineText 4s linear infinite;
}
@keyframes shineText {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.card-3d:hover {
  transform: translateY(-12px) rotateX(5deg) rotateY(5deg) translateZ(20px);
}

.flip-card {
  perspective: 1000px; cursor: pointer;
}
.flip-card-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px;
}
.flip-card-front {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,0.12);
  padding: 0; overflow: hidden;
}
/* Brand logos come in mixed aspect ratios (1.00 to 1.82) and none have
   transparency, so cropping them to fill chopped bits off. `contain` keeps
   every logo whole; each tile then carries a plate matching that logo's own
   background colour (set inline per card) so the fit still looks seamless. */
.brand-cover-img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  display: block;
  transition: transform 0.55s cubic-bezier(0.23,1,0.32,1);
}
.flip-card:hover .brand-cover-img { transform: scale(1.07); }
@media (max-width: 480px) { .brand-cover-img { padding: 26px; } }
.flip-card-back {
  background: linear-gradient(135deg, rgba(139,21,37,0.9), rgba(26,20,16,0.95));
  border: 1px solid rgba(212,175,55,0.2);
  transform: rotateY(180deg);
  text-align: center;
}

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1; transform: translateY(0);
}

.section-title {
  font-family: 'Cinzel', serif; font-size: 2.8rem; font-weight: 700;
  color: var(--text-heading); text-align: center; margin-bottom: 8px;
  letter-spacing: 2px;
}
.section-subtitle {
  font-family: 'Great Vibes', cursive; font-size: 1.5rem;
  color: var(--accent-gold); text-align: center; margin-bottom: 50px;
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-gold), #B8860B);
  color: var(--bg-primary); font-family: 'Cinzel', serif;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 1px;
  border: none; border-radius: 50px; cursor: pointer;
  text-decoration: none; transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}
.btn-gold:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 10px rgba(212,175,55,0.4);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 28px;
  background: transparent;
  color: var(--accent-gold); font-family: 'Cinzel', serif;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 1px;
  border: 1px solid var(--accent-gold); border-radius: 50px;
  cursor: pointer; text-decoration: none;
  transition: var(--transition-smooth);
}
.btn-outline:hover {
  background: rgba(212,175,55,0.1);
  transform: translateY(-2px);
}
.btn-outline:active {
  transform: translateY(0) scale(0.97);
  background: rgba(212,175,55,0.18);
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: #25D366; color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 500;
  font-size: 0.8rem; border-radius: 50px; text-decoration: none;
  transition: var(--transition-smooth);
}
.btn-whatsapp:hover {
  transform: translateY(-2px); box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}

.hero-section {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 40px 20px; position: relative;
}
.hero-crown-float {
  width: 100px; height: 80px; position: relative;
  margin-bottom: 30px;
  animation: heroCrownFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(212,175,55,0.5));
}
@keyframes heroCrownFloat {
  0%, 100% { transform: translateY(0) rotateX(10deg); }
  50% { transform: translateY(-15px) rotateX(-10deg); }
}
.hero-title-3d {
  font-family: 'Cinzel', serif; font-size: 4.5rem; font-weight: 900;
  letter-spacing: 4px; line-height: 1.1;
  transform-style: preserve-3d;
  animation: heroTitle3D 6s ease-in-out infinite;
  margin-bottom: 10px;
}
@keyframes heroTitle3D {
  0%, 100% { transform: perspective(1000px) rotateX(3deg) rotateY(-3deg); }
  50% { transform: perspective(1000px) rotateX(-3deg) rotateY(3deg); }
}
.hero-tagline {
  font-family: 'Great Vibes', cursive; font-size: 2rem;
  color: var(--accent-gold); margin-bottom: 40px;
}
.hero-stats {
  display: flex; gap: 40px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
}
.hero-stat {
  text-align: center; padding: 20px 30px;
}
.hero-stat-number {
  font-family: 'Cinzel', serif; font-size: 2.5rem; font-weight: 800;
  color: var(--accent-gold); display: block;
}
.hero-stat-label {
  font-size: 0.85rem; color: var(--text-body); letter-spacing: 1px;
  text-transform: uppercase;
}
.timeline-counter {
  display: inline !important; font-size: inherit !important;
  font-weight: 700; font-family: inherit;
}
.hero-cta { margin-bottom: 60px; }

.why-section { padding: 60px 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 16px; padding: 32px 24px;
  text-align: center; transform-style: preserve-3d;
  transition: var(--transition-smooth);
}
.why-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg) translateZ(15px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(212,175,55,0.08);
}
.why-card-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(139,21,37,0.15));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--accent-gold);
  border: 1px solid rgba(212,175,55,0.2);
}
.why-card h3 {
  font-family: 'Cinzel', serif; font-size: 1.1rem;
  color: var(--text-heading); margin-bottom: 8px;
}
.why-card p { font-size: 0.85rem; color: var(--text-body); }

.story-content { max-width: 900px; margin: 0 auto; }
.story-text {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  line-height: 2; color: var(--text-body); text-align: center;
  margin-bottom: 50px;
}
.timeline {
  position: relative; padding: 20px 0;
}
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, transparent, var(--accent-gold), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative; width: 50%; padding: 20px 40px;
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s ease;
}
.timeline-item.revealed { opacity: 1; transform: translateY(0); }
.timeline-item:nth-child(odd) { left: 0; text-align: right; padding-right: 50px; }
.timeline-item:nth-child(even) { left: 50%; padding-left: 50px; }
.timeline-dot {
  position: absolute; width: 16px; height: 16px;
  background: var(--accent-gold); border-radius: 50%;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 15px rgba(212,175,55,0.5);
  top: 28px;
}
.timeline-item:nth-child(odd) .timeline-dot { right: -8px; }
.timeline-item:nth-child(even) .timeline-dot { left: -8px; }
.timeline-year {
  font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--accent-gold); margin-bottom: 6px;
}
.timeline-title {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: var(--text-heading); margin-bottom: 8px;
}
.timeline-desc { font-size: 0.9rem; color: var(--text-body); }

.story-quote {
  max-width: 700px; margin: 60px auto 0;
  padding: 40px; text-align: center;
  border-left: 3px solid var(--accent-gold);
  background: rgba(212,175,55,0.03);
}
.story-quote p {
  font-family: 'Great Vibes', cursive; font-size: 1.8rem;
  color: var(--accent-gold); line-height: 1.6;
}
.story-quote cite {
  font-family: 'Cinzel', serif; font-size: 0.85rem;
  color: var(--text-body); font-style: normal; margin-top: 16px; display: block;
}

.brands-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.brand-card { height: 220px; }
.brand-logo-img {
  max-width: 80%; max-height: 60px; object-fit: contain;
  filter: brightness(1.2) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.brand-logo-text {
  font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700;
  color: var(--text-heading); text-align: center;
}
.brand-logo-sub {
  font-size: 0.75rem; color: var(--accent-gold); margin-top: 4px;
  text-align: center;
}
.flip-card-back h4 {
  font-family: 'Cinzel', serif; font-size: 1.1rem;
  color: var(--bright-gold); margin-bottom: 8px;
}
.flip-card-back p {
  font-size: 0.85rem; color: var(--text-body); line-height: 1.6;
}
.flip-card-back .brand-category {
  display: inline-block; margin-top: 12px;
  padding: 4px 14px; background: rgba(212,175,55,0.15);
  color: var(--accent-gold); font-size: 0.75rem;
  border-radius: 20px; border: 1px solid rgba(212,175,55,0.2);
}

.range-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1200px; margin: 0 auto;
}
.range-card {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 20px; overflow: hidden;
  transform-style: preserve-3d;
  transition: var(--transition-smooth);
}
.range-card:hover {
  transform: translateY(-15px) rotateX(3deg) translateZ(20px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212,175,55,0.08);
}
/* Most of these are portrait 2:3 shots, so a short letterbox cropped the
   subject's head off. Taller frame + a per-image focal point (set inline on
   each <img>) keeps faces and garments in view. */
.range-card-img {
  width: 100%; height: 320px; object-fit: cover;
  object-position: center 25%;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.range-card { overflow: hidden; }
.range-card:hover .range-card-img { transform: scale(1.06); }
@media (max-width: 768px) { .range-card-img { height: 260px; } }
.range-card-body { padding: 24px; }
.range-card-body h3 {
  font-family: 'Cinzel', serif; font-size: 1.2rem;
  color: var(--text-heading); margin-bottom: 6px;
}
.range-price {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: var(--accent-gold); margin-bottom: 10px;
}
.range-card-body p {
  font-size: 0.85rem; color: var(--text-body); margin-bottom: 16px;
}

.reviews-header-live {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 40px;
}
.live-indicator {
  display: flex; align-items: center; gap: 6px;
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.3);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.75rem; color: #4CAF50;
}
.live-dot {
  width: 8px; height: 8px; background: #4CAF50;
  border-radius: 50%; animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.reviews-timestamp {
  text-align: center; font-size: 0.8rem; color: rgba(212,175,55,0.5);
  margin-bottom: 30px; font-family: 'Cinzel', serif;
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 16px; padding: 28px;
  transition: var(--transition-smooth);
}
.review-card:hover {
  border-color: rgba(212,175,55,0.25);
  transform: translateY(-5px);
}
.review-stars { color: var(--bright-gold); margin-bottom: 12px; font-size: 0.9rem; }
.review-text {
  font-family: 'Playfair Display', serif; font-size: 0.95rem;
  line-height: 1.8; color: var(--text-body); margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-maroon), var(--accent-gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-weight: 700; color: #fff;
  font-size: 0.9rem;
}
.review-name { font-weight: 600; color: var(--text-heading); font-size: 0.9rem; }
.review-location { font-size: 0.75rem; color: rgba(212,175,55,0.6); }

.photos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 1200px; margin: 0 auto;
}
.photo-item {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.photo-item img, .photo-item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.photo-item:hover img, .photo-item:hover video { transform: scale(1.1); }

/* The Women Collection shot is a 4.55:1 panorama, so it gets a double-width
   tile — squeezing it into a 4:3 box cropped away most of the shop floor.
   Its aspect-ratio is overridden to match two 4:3 tiles plus the gap between
   them, so the row keeps the same height as its neighbours. `dense` lets the
   smaller tiles backfill the gap the wide one leaves when it wraps. */
.photos-grid { grid-auto-flow: dense; }
.photo-item-wide { grid-column: span 2; aspect-ratio: 2.74 / 1; }
@media (max-width: 768px) {
  .photo-item-wide { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* Tiles playing our own store footage. No poster image is set — these are real
   clips of the shop, and any stock still would misrepresent them — so the tile
   sits on the site's own dark tone until the first frame paints. */
.photo-item-video { border: 1px solid rgba(212,175,55,0.25); background: var(--bg-secondary); }
.photo-video-badge {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(15,12,10,0.7);
  border: 1px solid rgba(212,175,55,0.45);
  color: var(--accent-gold); font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: var(--transition-smooth);
}
.photo-item-video:hover .photo-video-badge {
  background: var(--accent-gold); color: var(--bg-primary);
  transform: scale(1.12);
}
.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,12,10,0.9) 100%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.4s ease;
}
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-overlay-text {
  font-family: 'Cinzel', serif; font-size: 0.9rem;
  color: var(--text-heading);
}

.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(10,8,6,0.94); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px; opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-overlay img, .lightbox-overlay video {
  max-width: 90vw; max-height: 85vh; border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(212,175,55,0.15);
  transform: scale(0.92); transition: transform 0.35s ease;
}
.lightbox-overlay.active img, .lightbox-overlay.active video { transform: scale(1); }
.lightbox-caption {
  position: absolute; bottom: 30px; left: 0; right: 0; text-align: center;
  font-family: 'Cinzel', serif; color: var(--accent-gold); font-size: 1rem; letter-spacing: 1px;
}
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.3);
  color: var(--accent-gold); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition-smooth);
}
.lightbox-close:hover { background: rgba(212,175,55,0.25); transform: rotate(90deg); }

.site-footer {
  border-top: 1px solid rgba(212,175,55,0.15);
  background: linear-gradient(180deg, rgba(15,12,10,0.6), rgba(10,8,6,0.98));
  padding: 40px 60px 24px;
}
.site-footer-inner {
  display: flex; flex-wrap: wrap; gap: 32px;
  align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
}
.site-footer-brand { display: flex; align-items: center; gap: 14px; }
.site-footer-logo {
  width: 46px; height: 46px; object-fit: cover; border-radius: 10px;
  box-shadow: 0 0 15px rgba(212,175,55,0.2);
}
.site-footer-name { font-family: 'Cinzel', serif; color: var(--text-heading); font-weight: 700; }
.site-footer-tagline { font-family: 'Great Vibes', cursive; color: var(--accent-gold); font-size: 1rem; }
.site-footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer-links a {
  color: var(--text-body); text-decoration: none; font-size: 0.85rem;
  cursor: pointer; transition: var(--transition-smooth);
}
.site-footer-links a:hover { color: var(--accent-gold); }
.site-footer-actions { display: flex; align-items: center; gap: 16px; }
.site-footer-actions a {
  color: var(--accent-gold); text-decoration: none; font-size: 0.85rem;
  display: flex; align-items: center; gap: 6px;
}
.site-footer-actions a:hover { color: var(--bright-gold); }
.site-footer-bottom {
  text-align: center; margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(212,175,55,0.08);
  font-size: 0.75rem; color: rgba(212,175,55,0.4);
}
@media (max-width: 768px) {
  .site-footer { padding: 32px 24px 20px; }
  .site-footer-inner { flex-direction: column; text-align: center; }
}

/* Gallery section bands */
.gallery-band {
  text-align: center; font-family: 'Cinzel', serif;
  font-size: 1.25rem; color: var(--text-heading);
  letter-spacing: 1.5px; margin-bottom: 6px;
}
.gallery-band i { color: var(--accent-gold); margin-right: 8px; }
.gallery-band-sub {
  text-align: center; font-size: 0.85rem;
  color: rgba(212,175,55,0.6); margin-bottom: 28px;
}
.photos-grid-authentic {
  grid-template-columns: repeat(2, 1fr);
  max-width: 940px;
}
.photos-grid-authentic .photo-item { aspect-ratio: 4/3; }
.photo-item-authentic {
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45), 0 0 26px rgba(212,175,55,0.10);
}
.photo-item-authentic .photo-overlay { opacity: 1; background: linear-gradient(180deg, transparent 55%, rgba(15,12,10,0.92) 100%); }
@media (max-width: 700px) { .photos-grid-authentic { grid-template-columns: 1fr; } }

/* Official Google Business listing panel on the Reviews tab */
.google-reviews-panel {
  max-width: 900px; margin: 0 auto 40px; padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.grp-identity { display: flex; align-items: center; gap: 16px; }
.grp-logo {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.16), rgba(139,21,37,0.22));
  border: 1px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--accent-gold);
  transition: var(--transition-smooth);
}
.google-reviews-panel:hover .grp-logo {
  transform: rotateY(180deg) scale(1.06);
  box-shadow: 0 0 24px rgba(212,175,55,0.3);
}
.grp-identity strong {
  display: block; font-family: 'Cinzel', serif;
  color: var(--text-heading); letter-spacing: 0.5px;
}
.grp-sub { font-size: 0.8rem; color: var(--text-body); margin-top: 3px; }
.grp-stars { color: var(--bright-gold); margin-right: 6px; letter-spacing: 1px; }
.grp-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 700px) {
  .google-reviews-panel { flex-direction: column; text-align: center; }
  .grp-identity { flex-direction: column; text-align: center; }
  .grp-actions { justify-content: center; }
}

/* Live Google Maps widget — real coordinates for the Ansari Road store */
.map-widget {
  max-width: 900px; margin: 46px auto 0;
  padding: 0; overflow: hidden;
}
.map-widget-frame {
  position: relative; width: 100%; height: 380px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.map-widget-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: grayscale(18%) contrast(1.04) brightness(0.94);
}
.map-widget-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 20px 26px; flex-wrap: wrap;
}
.map-widget-meta strong {
  display: block; font-family: 'Cinzel', serif;
  color: var(--text-heading); letter-spacing: 0.5px;
}
.map-widget-meta span { font-size: 0.82rem; color: var(--text-body); }
@media (max-width: 640px) {
  .map-widget-frame { height: 280px; }
  .map-widget-bar { flex-direction: column; text-align: center; }
}

.map-cta-card {
  max-width: 700px; margin: 40px auto 0; padding: 36px;
  text-align: center;
}
.map-cta-icon {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(139,21,37,0.2));
  border: 1px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--accent-gold);
}
.map-cta-card h3 {
  font-family: 'Cinzel', serif; color: var(--text-heading); margin-bottom: 8px; font-size: 1.2rem;
}
.map-cta-card p { font-size: 0.9rem; margin-bottom: 20px; }

.own-brand-showcase {
  max-width: 900px; margin: 0 auto; padding: 32px;
  display: flex; align-items: center; gap: 28px;
}
.own-brand-logo {
  width: 100px; height: 100px; object-fit: cover; border-radius: 16px;
  flex-shrink: 0; box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 25px rgba(212,175,55,0.15);
}
.own-brand-title {
  font-family: 'Cinzel', serif; color: var(--text-heading); font-size: 1.3rem; margin-bottom: 6px;
}
.own-brand-sub { font-size: 0.9rem; color: var(--text-body); }
@media (max-width: 600px) {
  .own-brand-showcase { flex-direction: column; text-align: center; padding: 24px; }
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: 1100px; margin: 0 auto;
}
.contact-info-card {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 16px; padding: 32px;
}
.contact-info-card h3 {
  font-family: 'Cinzel', serif; font-size: 1.2rem;
  color: var(--text-heading); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.contact-info-card h3 i { color: var(--accent-gold); }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(212,175,55,0.08);
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-item i {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(212,175,55,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-gold); font-size: 0.9rem;
}
.contact-item div { flex: 1; }
.contact-item strong {
  display: block; color: var(--text-heading); font-size: 0.9rem; margin-bottom: 2px;
}
.contact-item span, .contact-item a {
  font-size: 0.85rem; color: var(--text-body); text-decoration: none;
  transition: color 0.3s ease;
}
.contact-item a:hover { color: var(--accent-gold); }
.timing-banner {
  background: linear-gradient(135deg, rgba(139,21,37,0.3), rgba(212,175,55,0.1));
  border: 1px solid rgba(139,21,37,0.3);
  border-radius: 12px; padding: 20px; margin-top: 20px;
}
.timing-banner strong {
  color: var(--accent-gold); font-family: 'Cinzel', serif; font-size: 0.9rem;
  display: block; margin-bottom: 8px;
}
.timing-banner p { font-size: 0.85rem; color: var(--text-body); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   AI AGENT - REALISTIC HUMAN
   ═══════════════════════════════════════════════════════════════ */
.ai-container {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px;
  max-width: 1200px; margin: 0 auto; align-items: start;
}
.ai-agent-panel {
  display: flex; flex-direction: column; align-items: center;
  padding: 40px 20px;
}
.agent-wrapper {
  position: relative; width: 220px; height: 320px;
  display: flex; flex-direction: column; align-items: center;
}
.agent-real-img {
  width: 200px; height: 260px; object-fit: cover;
  border-radius: 50% 50% 45% 45% / 40% 40% 55% 55%;
  border: 3px solid rgba(212,175,55,0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.2);
  animation: agentBreathe 3s ease-in-out infinite;
  position: relative; z-index: 3;
}
@keyframes agentBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
.agent-crown-overlay {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  z-index: 5; width: 80px; height: 35px;
  filter: drop-shadow(0 2px 8px rgba(212,175,55,0.6));
}
.agent-crown-base {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 7px;
  background: linear-gradient(90deg, #B8860B, var(--accent-gold), #B8860B);
  border-radius: 1px;
}
.agent-crown-point {
  position: absolute; bottom: 7px; width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-bottom: 20px solid var(--accent-gold);
}
.agent-crown-point:nth-child(2) { left: 8px; border-bottom-width: 14px; }
.agent-crown-point:nth-child(3) { left: 22px; border-bottom-width: 22px; }
.agent-crown-point:nth-child(4) { left: 50%; transform: translateX(-50%); border-bottom-width: 28px; }
.agent-crown-point:nth-child(5) { right: 22px; border-bottom-width: 22px; }
.agent-crown-point:nth-child(6) { right: 8px; border-bottom-width: 14px; }
.agent-aura {
  position: absolute; inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
  animation: agentAura 3s ease-in-out infinite;
  pointer-events: none; z-index: 2;
}
@keyframes agentAura {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}
.agent-particles {
  position: absolute; inset: -50px; pointer-events: none; z-index: 4;
}
.agent-particle {
  position: absolute; width: 5px; height: 5px;
  background: var(--accent-gold); border-radius: 50%;
  animation: agentParticleFloat 3s ease-in-out infinite;
  box-shadow: 0 0 10px var(--accent-gold);
}
@keyframes agentParticleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-25px) scale(1.3); opacity: 1; }
}

.ai-chat-panel {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; height: 600px;
}
.ai-chat-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(139,21,37,0.4), rgba(26,20,16,0.8));
  border-bottom: 1px solid rgba(212,175,55,0.1);
  display: flex; align-items: center; gap: 12px;
}
.ai-chat-header img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--accent-gold);
}
.ai-chat-header div h4 {
  font-family: 'Cinzel', serif; font-size: 1rem; color: var(--text-heading);
}
.ai-chat-header div span {
  font-size: 0.75rem; color: #4CAF50; display: flex; align-items: center; gap: 4px;
}
.ai-chat-messages {
  flex: 1; overflow-y: auto; padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.chat-message {
  max-width: 80%; padding: 12px 16px; border-radius: 16px;
  font-size: 0.9rem; line-height: 1.6; animation: msgSlideIn 0.3s ease;
}
@keyframes msgSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-message.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--accent-maroon), rgba(139,21,37,0.8));
  color: #fff; border-bottom-right-radius: 4px;
}
.chat-message.bot {
  align-self: flex-start;
  background: rgba(212,175,55,0.08);
  color: var(--text-body); border: 1px solid rgba(212,175,55,0.15);
  border-bottom-left-radius: 4px;
}
.ai-chat-input-area {
  padding: 16px 20px;
  border-top: 1px solid rgba(212,175,55,0.1);
  display: flex; flex-direction: column; gap: 10px;
}
.ai-quick-buttons {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ai-quick-btn {
  padding: 6px 14px; background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2); border-radius: 20px;
  color: var(--accent-gold); font-size: 0.75rem; cursor: pointer;
  transition: var(--transition-smooth); font-family: 'Poppins', sans-serif;
}
.ai-quick-btn:hover {
  background: rgba(212,175,55,0.2); transform: translateY(-1px);
}
.ai-input-row {
  display: flex; gap: 10px;
}
.ai-input-row input {
  flex: 1; padding: 12px 16px;
  background: rgba(15,12,10,0.6);
  border: 1px solid rgba(212,175,55,0.15); border-radius: 50px;
  color: var(--text-heading); font-family: 'Poppins', sans-serif; font-size: 0.9rem;
  outline: none; transition: var(--transition-smooth);
}
.ai-input-row input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(212,175,55,0.1);
}
.ai-input-row input::placeholder { color: rgba(212,175,55,0.4); }
.ai-input-row button {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #B8860B);
  border: none; color: var(--bg-primary); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-smooth);
}
.ai-input-row button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

.floating-chat-toggle {
  position: fixed; bottom: 30px; right: 30px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #B8860B);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
  animation: chatPulse 2s ease-in-out infinite;
  transition: var(--transition-smooth);
}
.floating-chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(212,175,55,0.6);
}
.floating-chat-toggle i { font-size: 1.4rem; color: var(--bg-primary); }
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,175,55,0.4); }
  50% { box-shadow: 0 4px 30px rgba(212,175,55,0.7), 0 0 20px rgba(212,175,55,0.3); }
}

.floating-chat-panel {
  position: fixed; bottom: 100px; right: 30px; z-index: 199;
  width: 380px; max-height: 500px;
  background: var(--card-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(0.95);
  opacity: 0; visibility: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.floating-chat-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1; visibility: visible;
}
.floating-chat-panel .ai-chat-header { border-radius: 20px 20px 0 0; }
.floating-chat-panel .ai-chat-messages { max-height: 300px; }

.sidebar-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

@media (max-width: 1200px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .range-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .photos-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .ai-container { grid-template-columns: 1fr; }
  .hero-title-3d { font-size: 3rem; }
  .section-title { font-size: 2.2rem; }
}
@media (max-width: 768px) {
  .mobile-header { display: flex; }
  .sidebar {
    transform: translateX(-100%);
    width: 280px; z-index: 1001;
    background: rgba(15,12,10,0.98);
  }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; margin-top: 64px; }
  .video-bg-container .tab-inner { padding: 40px 20px 30px; }
  .hero-title-3d { font-size: 2.2rem; }
  .hero-stats { gap: 20px; }
  .hero-stat-number { font-size: 1.8rem; }
  .why-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .range-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .photos-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .timeline::before { left: 20px; }
  .timeline-item { width: 100%; left: 0 !important; padding-left: 50px !important; padding-right: 20px !important; text-align: left !important; }
  .timeline-item .timeline-dot { left: 12px !important; right: auto !important; }
  .floating-chat-panel { width: calc(100vw - 40px); right: 20px; left: 20px; }
  .floating-chat-toggle { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}
@media (max-width: 480px) {
  .hero-title-3d { font-size: 1.8rem; letter-spacing: 2px; }
  .hero-tagline { font-size: 1.4rem; }
  .brands-grid { grid-template-columns: 1fr; }
  .btn-gold { padding: 12px 24px; font-size: 0.8rem; }
}

/* ============================================================
   BREATHING ROOM + 3D DEPTH PASS
   Loaded last so it refines the base layout above rather than
   duplicating it. Everything here is spacing, depth and motion —
   no content or structural changes.
   ============================================================ */

/* --- 1. Air. Generous vertical rhythm so sections can breathe. --- */
.video-bg-container .tab-inner { padding: 118px 64px 96px; }
.section-title { margin-bottom: 12px; }
.section-subtitle { margin-bottom: 66px; }
.why-section { padding: 96px 0 40px; }
.why-grid, .range-grid, .reviews-grid, .brands-grid { gap: 32px; }
.photos-grid { gap: 22px; }
.story-content > .story-text { margin-bottom: 26px; }

/* A hairline rule that fades in from nothing — separates without shouting */
.section-subtitle::after {
  content: ""; display: block;
  width: 90px; height: 1px; margin: 26px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.55;
}

/* --- 2. Depth. A shared 3D lift for every card-like surface. --- */
.range-card, .review-card, .photo-item, .contact-info-card,
.own-brand-showcase, .map-widget, .google-reviews-panel, .why-card {
  transform-style: preserve-3d;
  will-change: transform;
}
/* Contact cards hold a lot of text, so they get a calm zoom rather than a tilt */
.contact-info-card {
  transition: transform 0.45s cubic-bezier(0.23,1,0.32,1),
              border-color 0.45s ease, box-shadow 0.45s ease;
}
.contact-info-card:hover {
  transform: scale(1.015);
  border-color: rgba(212,175,55,0.22);
  box-shadow: 0 14px 36px rgba(0,0,0,0.3), 0 0 20px rgba(212,175,55,0.06);
}
.photo-item {
  transition: transform 0.55s cubic-bezier(0.23,1,0.32,1), box-shadow 0.55s ease;
}
.photo-item:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 26px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.12);
  z-index: 2;
}
.map-widget:hover, .google-reviews-panel:hover, .own-brand-showcase:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 64px rgba(0,0,0,0.45), 0 0 32px rgba(212,175,55,0.10);
}

/* --- 3. Timeline entries settle into place with a little parallax --- */
.timeline-item { transition: transform 0.6s cubic-bezier(0.23,1,0.32,1), opacity 0.6s ease; }
.timeline-item:hover { transform: translateZ(20px) scale(1.015); }
.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 0 6px rgba(212,175,55,0.14), 0 0 22px var(--accent-gold);
  transform: scale(1.25);
}
.timeline-dot { transition: var(--transition-smooth); }

/* --- 4. Sidebar nav gets a gold rail that grows on hover --- */
.sidebar-nav-item { position: relative; overflow: hidden; }
.sidebar-nav-item::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 2px; height: 0; transform: translateY(-50%);
  background: linear-gradient(180deg, var(--accent-gold), var(--bright-gold));
  transition: height 0.35s ease;
}
.sidebar-nav-item:hover::before, .sidebar-nav-item.active::before { height: 62%; }

/* --- 5. Footer links lift individually --- */
.site-footer-links a { display: inline-block; transition: var(--transition-smooth); }
.site-footer-links a:hover { transform: translateY(-3px); }

/* --- 6. Buttons get a sheen that sweeps across on hover --- */
.btn-gold, .btn-outline { position: relative; overflow: hidden; }
.btn-gold::after, .btn-outline::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn-outline::after { background: linear-gradient(90deg, transparent, rgba(212,175,55,0.28), transparent); }
.btn-gold:hover::after, .btn-outline:hover::after { left: 130%; }

/* --- 7. Respect people who'd rather things held still --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .tab-canvas, .floating-orb { display: none; }
}

@media (max-width: 992px) {
  .video-bg-container .tab-inner { padding: 90px 40px 70px; }
  .why-grid, .range-grid, .reviews-grid, .brands-grid { gap: 24px; }
}
@media (max-width: 768px) {
  .video-bg-container .tab-inner { padding: 64px 22px 52px; }
  .section-subtitle { margin-bottom: 44px; }
  .section-subtitle::after { margin-top: 18px; }
  .why-section { padding: 56px 0 30px; }
}

/* ============================================================
   PHONE & TABLET ADAPTATION
   Ordered last so it refines everything above. Three tiers:
   desktop (>1024px), tablet (641–1024px), phone (≤640px).
   ============================================================ */

/* Mobile browser chrome makes 100vh taller than the visible area, which
   pushed the hero's call-to-action below the fold. dvh tracks the real
   viewport, and this only applies where the browser supports it. */
@supports (height: 100dvh) {
  .video-bg-container { min-height: 100dvh; }
  .sidebar { height: 100dvh; }
}

/* Nothing should ever scroll sideways on a small screen. */
html, body { max-width: 100%; overflow-x: hidden; }

/* ---------------- TABLET ---------------- */
@media (max-width: 1024px) {
  /* A fixed 280px sidebar eats a third of a tablet's width, so the drawer
     takes over here rather than waiting for phone widths. */
  .mobile-header { display: flex; }
  .sidebar {
    transform: translateX(-100%);
    width: 300px; z-index: 1001;
    background: rgba(15,12,10,0.98);
  }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; margin-top: 62px; }

  .video-bg-container .tab-inner { padding: 84px 36px 66px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid, .range-grid, .reviews-grid, .photos-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .ai-container { grid-template-columns: 1fr; }
  .hero-title-3d { font-size: 3rem; }
  .section-title { font-size: 2.1rem; }
  .map-widget-frame { height: 320px; }

  /* iOS zooms the whole page when a focused input is under 16px. */
  .ai-input-row input { font-size: 16px; }
}

/* ---------------- PHONE ---------------- */
@media (max-width: 640px) {
  .video-bg-container .tab-inner { padding: 58px 18px 48px; }

  /* Background video is swapped for its poster still on phones (see
     adaptMediaToDevice) — several MB of video per tab is not a fair ask on a
     phone connection, and the text sits on a dark scrim either way. */
  .video-bg-static {
    background-size: cover; background-position: center; background-repeat: no-repeat;
  }

  /* Decorative GPU work off: three 60px-blur orbs plus a per-tab 3D canvas
     is a real battery and jank cost for a purely ambient effect. */
  .tab-canvas, .floating-orb { display: none !important; }

  .brands-grid, .why-grid, .range-grid, .reviews-grid, .photos-grid { grid-template-columns: 1fr; }
  .hero-title-3d { font-size: 2rem; letter-spacing: 1px; }
  .hero-tagline { font-size: 1.3rem; }
  .section-title { font-size: 1.7rem; }
  .section-subtitle { font-size: 1.15rem; }
  .hero-stats { gap: 12px; }
  .hero-stat { padding: 12px 18px; }
  .hero-stat-number { font-size: 1.6rem; }
  .hero-stat-label { font-size: 0.68rem; }

  .brand-card { height: 200px; }
  .range-card-img { height: 230px; }
  .map-widget-frame { height: 240px; }
  .map-widget-bar { padding: 16px; }
  .own-brand-showcase, .google-reviews-panel { padding: 20px; }
  .site-footer { padding: 28px 18px 18px; }
  .story-quote { padding: 20px; }

  /* Comfortable tap targets (~44px minimum). */
  .btn-gold, .btn-outline { padding: 14px 26px; min-height: 46px; }
  .sidebar-nav-item { padding: 14px 16px; }
  .ai-quick-btn { padding: 9px 16px; font-size: 0.78rem; }
  .lightbox-close { width: 46px; height: 46px; top: 14px; right: 14px; }
  .lightbox-overlay { padding: 16px; }
  .lightbox-caption { bottom: 16px; font-size: 0.85rem; }

  .floating-chat-toggle { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .floating-chat-panel { width: auto; left: 12px; right: 12px; bottom: 80px; }
  .floating-chat-panel .ai-chat-messages { max-height: 46vh; }
}

/* ---------------- TOUCH DEVICES ---------------- */
/* Hover never fires on touch, so the cursor-tilt and flip effects would leave
   brand descriptions unreachable. Neutralise the hover states and drive the
   flip from a tap instead (see the flip-card tap handler). */
@media (hover: none) {
  .card-3d:hover, .why-card:hover, .range-card:hover, .review-card:hover,
  .photo-item:hover, .contact-info-card:hover,
  .map-widget:hover, .google-reviews-panel:hover, .own-brand-showcase:hover {
    transform: none;
  }
  .flip-card:hover .flip-card-inner { transform: none; }
  .flip-card.flipped .flip-card-inner { transform: rotateY(180deg); }
  .photo-item .photo-overlay { opacity: 1; }
}
