/* ============================================================================
   JAY GOROBA KALA KENDRA — PREMIUM STATUE & ART GALLERY
   Theme: Premium Indian Art Studio
   Colors: Dark Brown #6B3E26 | Gold #D4AF37 | Cream #F5F5DC
   Fonts: Cormorant Garamond (headings) | Poppins (body)
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ─── CSS VARIABLES ────────────────────────────────────────────────── */
:root {
  --brown:        #6B3E26;
  --brown-dark:   #4a2910;
  --brown-mid:    #8B5530;
  --gold:         #D4AF37;
  --gold-light:   #e8c84a;
  --gold-dim:     rgba(212, 175, 55, 0.15);
  --cream:        #F5F5DC;
  --cream-dark:   #EDE8C8;
  --white:        #FFFFFF;
  --dark:         #1a0f07;
  --text-dark:    #1a0f07;
  --text-muted:   #4a3a2a;
  --border:       rgba(212, 175, 55, 0.2);

  --font-head:    'Cormorant Garamond', serif;
  --font-body:    'Poppins', sans-serif;

  --ease:         all 0.35s ease;
  --shadow-sm:    0 2px 12px rgba(107, 62, 38, 0.10);
  --shadow-md:    0 6px 28px rgba(107, 62, 38, 0.16);
  --shadow-lg:    0 16px 56px rgba(107, 62, 38, 0.22);

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;

  --section-py:   5rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { transition: var(--ease); }

/* ─── TYPOGRAPHY ───────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--brown-dark);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  font-size: 0.975rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

/* ─── SECTION LAYOUT ────────────────────────────────────────────────── */
section { padding: var(--section-py) 0; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(212,175,55,0.3);
}

.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-heading p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  background: var(--gold);
  color: var(--brown-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 18px rgba(212,175,55,0.35);
  transition: var(--ease);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--brown-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212,175,55,0.45);
}

.btn-outline-cream {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(245,245,220,0.6);
  transition: var(--ease);
}

.btn-outline-cream:hover {
  background: rgba(245,245,220,0.12);
  border-color: var(--cream);
  color: var(--cream);
  transform: translateY(-3px);
}

.btn-brown {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  background: var(--brown);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid var(--brown);
  transition: var(--ease);
}

.btn-brown:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ─── NAVBAR ─────────────────────────────────────────────────────────── */
.navbar {
  background: rgba(255,255,255,0.97);
  padding: 0;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.35s ease;
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(107,62,38,0.12);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.1);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text .brand-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.3px;
}

.brand-text .brand-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--radius-sm);
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-link:hover,
.nav-link.active { color: var(--brown) !important; }

.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  background: transparent;
  cursor: pointer;
  transition: var(--ease);
}

.navbar-toggler:hover { background: var(--gold-dim); }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236B3E26' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile nav */
@media (max-width: 991.98px) {
  .navbar-collapse {
    border-top: 1px solid var(--border);
    margin-top: 0.75rem;
    padding: 0.75rem 0;
  }

  .navbar-nav { flex-direction: column; align-items: flex-start; }

  .nav-link::after { bottom: 2px; }
}

/* ─── HERO SECTION ────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brown-dark);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 15, 7, 0.78) 0%,
    rgba(74, 41, 16, 0.65) 50%,
    rgba(26, 15, 7, 0.80) 100%
  );
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  color: var(--cream);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.hero-content h1 span {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(245,245,220,0.8);
  font-weight: 300;
  letter-spacing: 1.5px;
  margin-bottom: 2.5rem;
  font-family: var(--font-body);
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245,245,220,0.5);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  animation: bounce-scroll 2.2s ease-in-out infinite;
}

.hero-scroll i { font-size: 1.2rem; }

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ─── TRUST BAR ───────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--brown-dark);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.12);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 2rem;
  color: var(--cream);
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(212,175,55,0.2);
}

.trust-item i {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-item-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.trust-item-text span {
  font-size: 0.7rem;
  color: rgba(245,245,220,0.6);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 400;
}

/* ─── ABOUT SECTION ───────────────────────────────────────────────────── */
.about-section {
  background: var(--cream);
}

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

.about-kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

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

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brown);
  transition: var(--ease);
}

.about-feature:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.about-feature i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(212,175,55,0.2);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img { transform: scale(1.05); }

.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--brown-dark);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  width: 110px;
}

.about-img-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-img-badge span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.3;
  display: block;
  margin-top: 0.25rem;
}

/* ─── STATS ROW ────────────────────────────────────────────────────────── */
.stats-section {
  background: var(--brown-dark);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(212,175,55,0.15);
  transition: var(--ease);
}

.stat-card:last-child { border-right: none; }

.stat-card:hover { background: rgba(212,175,55,0.05); }

.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(245,245,220,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── CATEGORIES SECTION ────────────────────────────────────────────────── */
.categories-section {
  background: #fdfcf7;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

@media (min-width: 992px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
}

.cat-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 4;
  transition: var(--ease);
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover img { transform: scale(1.08); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(26,15,7,0.92) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--ease);
}

.cat-card-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.cat-card h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.cat-card p {
  font-size: 0.78rem;
  color: rgba(245,245,220,0.65);
  margin: 0;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.cat-card:hover p {
  max-height: 60px;
  opacity: 1;
}

.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cat-card:hover .cat-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ─── GALLERY SECTION ────────────────────────────────────────────────── */
.gallery-section {
  background: var(--cream);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.75rem;
}

.filter-btn {
  padding: 0.55rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--brown);
  background: white;
  border: 2px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown-dark);
  box-shadow: 0 4px 14px rgba(212,175,55,0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.12); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,15,7,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay i {
  font-size: 2rem;
  color: var(--gold);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

/* ─── EXPERTISE / WHY US SECTION ─────────────────────────────────────── */
.expertise-section {
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

.expertise-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
}

.expertise-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
}

.expertise-section .section-heading h2 { color: var(--cream); }
.expertise-section .section-heading p  { color: rgba(245,245,220,0.55); }
.expertise-section .section-heading h2::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  .expertise-grid { grid-template-columns: 1fr; }
}

.expertise-card {
  padding: 2.25rem 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--ease);
  backdrop-filter: blur(8px);
}

.expertise-card:hover {
  background: rgba(212,175,55,0.07);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}

.expertise-icon {
  width: 64px;
  height: 64px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--gold);
  transition: var(--ease);
}

.expertise-card:hover .expertise-icon {
  background: rgba(212,175,55,0.18);
  border-color: var(--gold);
}

.expertise-card h4 {
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.expertise-card p {
  color: rgba(245,245,220,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

/* ─── CTA SECTION ─────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 5.5rem 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-content h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-content h2 span { color: var(--gold); font-style: italic; }

.cta-content p {
  color: rgba(245,245,220,0.7);
  font-size: 1rem;
  margin-bottom: 2.25rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 5rem 0 0;
  border-top: 1px solid rgba(212,175,55,0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  mix-blend-mode: screen;
  filter: invert(1) brightness(2);
  opacity: 0.9;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(245,245,220,0.45);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.social-row {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.25);
  background: rgba(212,175,55,0.06);
  color: rgba(245,245,220,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--ease);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown-dark);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.65rem; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(245,245,220,0.45);
  text-decoration: none;
  transition: var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.25s;
}

.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-item i {
  font-size: 1rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.82rem;
  color: rgba(245,245,220,0.45);
  line-height: 1.55;
}

.footer-contact-item a {
  color: rgba(245,245,220,0.45);
  text-decoration: none;
  transition: var(--ease);
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245,245,220,0.3);
  margin: 0;
}

.footer-bottom a {
  color: rgba(212,175,55,0.6);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--ease);
}

.footer-bottom a:hover { color: var(--gold); }

/* ─── WHATSAPP FLOAT ──────────────────────────────────────────────────── */
.whatsapp-btn {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, #25D366, #1fa855) !important;
  color: white !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.8rem !important;
  text-decoration: none !important;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45) !important;
  z-index: 999999 !important;
  transition: all 0.3s ease !important;
  visibility: visible !important;
  opacity: 1 !important;
  animation: wa-float 3.5s ease-in-out infinite !important;
}

.whatsapp-btn:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  color: white;
}

@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* ─── VIDEO MODAL ─────────────────────────────────────────────────────── */
.video-showcase {
  background: #fdfcf7;
}

.video-showcase-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brown-dark);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(212,175,55,0.15);
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--ease);
}

.video-placeholder:hover { background: rgba(212,175,55,0.03); }

.video-play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  border: 2px solid rgba(212,175,55,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: var(--ease);
  animation: pulse-ring 2.5s ease-in-out infinite;
}

.video-placeholder:hover .video-play-icon {
  background: var(--gold);
  color: var(--brown-dark);
}

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

.video-placeholder h3 {
  color: var(--cream);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.video-placeholder p {
  color: rgba(245,245,220,0.5);
  max-width: 420px;
  font-size: 0.9rem;
}

/* Video Modal */
#videoModal {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.92) !important;
  z-index: 2000000 !important;
  align-items: center;
  justify-content: center;
}

#videoModal.open { display: flex !important; }

.video-modal-inner {
  position: relative;
  width: 90%;
  max-width: 900px;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: black;
}

.video-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: var(--ease);
}

.video-close:hover { background: rgba(255,255,255,0.3); }

#videoModal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ─── PAGE HEADER (inner pages) ────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header-content h1 {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.page-header-content .breadcrumb {
  justify-content: center;
  background: none;
  padding: 0;
  margin: 0;
}

.page-header-content .breadcrumb-item,
.page-header-content .breadcrumb-item a {
  font-size: 0.8rem;
  color: rgba(245,245,220,0.5);
  text-decoration: none;
}

.page-header-content .breadcrumb-item.active {
  color: var(--gold);
}

.page-header-content .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(245,245,220,0.3);
}

/* ─── RESPONSIVE BREAKPOINTS ─────────────────────────────────────────── */
@media (max-width: 1199.98px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991.98px) {
  :root { --section-py: 4rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { order: -1; }
  .about-img-main { height: 380px; }
  .about-img-badge { bottom: -1rem; left: -0.5rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.15); }
  .stat-card:nth-child(odd) { border-right: 1px solid rgba(212,175,55,0.15); }
  .stat-card:last-child, .stat-card:nth-last-child(2) { border-bottom: none; }

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

@media (max-width: 767.98px) {
  :root { --section-py: 3rem; }

  .trust-bar-inner { gap: 0; }
  .trust-item { padding: 0.5rem 1rem; border-left: none !important; }
  .trust-item { width: 50%; border-bottom: 1px solid rgba(212,175,55,0.12); }

  .about-features { grid-template-columns: 1fr; }

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

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-gold,
  .hero-buttons .btn-outline-cream { width: 100%; max-width: 280px; justify-content: center; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-gold,
  .cta-buttons .btn-outline-cream { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 575.98px) {
  .categories-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── UTILITY ─────────────────────────────────────────────────────────── */
.text-gold { color: var(--gold) !important; }
.text-brown { color: var(--brown) !important; }
.text-cream { color: var(--cream) !important; }
.bg-cream { background-color: var(--cream) !important; }
.bg-dark-brown { background-color: var(--brown-dark) !important; }

/* ════════════════════════════════════════════════════════════════════════
   PREMIUM UI POLISH — Animations, Micro-interactions & Visual Refinements
   ════════════════════════════════════════════════════════════════════════ */

/* ─── Custom scrollbar ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold) 0%, var(--brown) 100%);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover { background: var(--brown); }

/* ─── Text selection ────────────────────────────────────────────────────── */
::selection {
  background: rgba(212,175,55,0.28);
  color: var(--brown-dark);
}

/* ─── Scroll progress bar ────────────────────────────────────────────────── */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--brown-mid), var(--gold));
  background-size: 200% 100%;
  z-index: 9998;
  transition: width 0.1s linear;
  animation: shimmer-bar 2.5s linear infinite;
}

@keyframes shimmer-bar {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ─── Page load fade-in ─────────────────────────────────────────────────── */
body {
  animation: page-fade-in 0.45s ease both;
}

@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Focus styles (accessibility) ─────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Back-to-top button ─────────────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brown-dark);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px) scale(0.85);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#backToTop:hover {
  background: var(--gold);
  color: var(--brown-dark);
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.05);
}

/* ─── Enhanced hero — ken-burns on video ──────────────────────────────── */
.hero-video {
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

@keyframes hero-breathe {
  from { transform: scale(1.00); }
  to   { transform: scale(1.06); }
}

/* ─── Hero content entrance ──────────────────────────────────────────── */
.hero-tag {
  animation: fade-slide-down 0.7s 0.2s ease both;
}

.hero-content h1 {
  animation: fade-slide-up 0.8s 0.35s ease both;
}

.hero-divider {
  animation: expand-width 0.6s 0.55s ease both;
}

.hero-subtitle {
  animation: fade-slide-up 0.7s 0.6s ease both;
}

.hero-buttons {
  animation: fade-slide-up 0.7s 0.75s ease both;
}

@keyframes fade-slide-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-slide-down {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes expand-width {
  from { width: 0; opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

/* ─── Section headings — gradient gold underline animation ────────────── */
.section-heading h2::after {
  transition: width 0.6s ease;
}

[data-aos].section-heading.aos-animate h2::after {
  width: 60px;
}

/* ─── Ornamental divider between some sections ─────────────────────────── */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
  margin: 0 auto;
}

.section-ornament::before,
.section-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  max-width: 120px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4));
}

.section-ornament::after {
  background: linear-gradient(90deg, rgba(212,175,55,0.4), transparent);
}

.ornament-icon {
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.6;
}

/* ─── Gold shimmer on stat numbers ─────────────────────────────────────── */
.stat-number {
  background: linear-gradient(90deg, var(--gold) 0%, #f0d060 40%, var(--gold) 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 4s linear infinite;
}

@keyframes gold-shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ─── Cat card — parallax-depth shadow on hover ───────────────────────── */
.cat-card {
  transform-style: preserve-3d;
}

.cat-card:hover {
  transform: translateY(-10px) perspective(800px) rotateX(1deg);
  box-shadow:
    0 20px 60px rgba(107,62,38,0.22),
    0 4px 12px rgba(212,175,55,0.1);
}

/* ─── Product/gallery card — enhanced 3D lift ───────────────────────────── */
.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 16px 48px rgba(107,62,38,0.2),
    0 2px 8px rgba(212,175,55,0.12);
}

/* ─── Expertise card — glowing border on hover ──────────────────────────── */
.expertise-card:hover {
  border-color: rgba(212,175,55,0.5);
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.2),
    0 12px 40px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(212,175,55,0.1);
}

/* ─── About image — frame decoration ────────────────────────────────────── */
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  z-index: 0;
  transition: all 0.4s ease;
}

.about-img-wrap:hover::before {
  top: -10px;
  right: -10px;
  border-color: rgba(212,175,55,0.4);
}

.about-img-main { position: relative; z-index: 1; }

/* ─── Button ripple effect ──────────────────────────────────────────────── */
.btn-gold,
.btn-brown,
.btn-outline-cream {
  position: relative;
  overflow: hidden;
}

.btn-gold::after,
.btn-brown::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.btn-gold:active::after,
.btn-brown:active::after {
  width: 240px;
  height: 240px;
  opacity: 0;
}

/* ─── Nav link — stagger entrance when mobile menu opens ─────────────────── */
.navbar-collapse.show .nav-item {
  animation: nav-item-in 0.3s ease both;
}

.navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.05s; }
.navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.10s; }
.navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.15s; }
.navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.20s; }
.navbar-collapse.show .nav-item:nth-child(5) { animation-delay: 0.25s; }

@keyframes nav-item-in {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─── Footer links — left slide on hover ────────────────────────────────── */
.footer-links a {
  position: relative;
  padding-left: 0;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover { padding-left: 8px; }

/* ─── Trust bar — pop-in on load ────────────────────────────────────────── */
.trust-item {
  transition: transform 0.3s ease;
}

.trust-item:hover { transform: translateY(-3px); }

/* ─── Section transitions — smooth bg shifts ───────────────────────────── */
section {
  transition: background-color 0.4s ease;
}

/* ─── Glightbox custom skin ─────────────────────────────────────────────── */
.glightbox-clean .gslide-description {
  background: var(--brown-dark) !important;
  font-family: 'Poppins', sans-serif !important;
}

.glightbox-clean .gdesc-inner .gslide-title {
  font-family: 'Cormorant Garamond', serif !important;
  color: var(--cream) !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
  background: rgba(107,62,38,0.85) !important;
  border: 1px solid rgba(212,175,55,0.3) !important;
  border-radius: 50% !important;
}

.glightbox-clean .gprev svg path,
.glightbox-clean .gnext svg path,
.glightbox-clean .gclose svg path {
  fill: var(--gold) !important;
}

/* ─── Floating label for gallery filter ─────────────────────────────────── */
.filter-btn {
  position: relative;
  overflow: hidden;
}

.filter-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212,175,55,0.08);
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: inherit;
}

.filter-btn:hover::after { opacity: 1; }

/* ─── CTA section — animated background particles ───────────────────────── */
.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.06) 0%, transparent 65%);
  animation: cta-glow 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

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

@keyframes cta-glow {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(5%, 5%) scale(1.08); }
}

/* ─── Section-level AOS custom variants ──────────────────────────────────── */
[data-aos="fade-up-subtle"] {
  opacity: 0;
  transform: translateY(14px);
  transition-property: opacity, transform;
}
[data-aos="fade-up-subtle"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="scale-in"] {
  opacity: 0;
  transform: scale(0.92);
  transition-property: opacity, transform;
}
[data-aos="scale-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

/* ─── Image lazy-load blur-up ────────────────────────────────────────────── */
img[loading="lazy"] {
  transition: filter 0.4s ease;
}

/* ─── Smooth anchor scroll offset helper ─────────────────────────────────── */
[id] {
  scroll-margin-top: 130px;
}

/* ─── Category card counter badge glow ──────────────────────────────────── */
.cat-count-badge {
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
  50%       { box-shadow: 0 0 0 6px rgba(212,175,55,0.1); }
}

/* ─── Enquiry strip hover ─────────────────────────────────────────────────── */
.enquiry-strip {
  transition: all 0.35s ease;
}

.enquiry-strip:hover {
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ─── Page header text shimmer ────────────────────────────────────────────── */
.page-header-content h1 {
  background: linear-gradient(90deg, var(--cream) 0%, rgba(245,245,220,0.75) 50%, var(--cream) 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 5s linear infinite;
}

/* ─── Stat card counter after animation ──────────────────────────────────── */
.stat-card.counted .stat-number {
  animation: pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes pop-in {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* ─── AOS fine-tuning — slower, more cinematic ───────────────────────────── */
[data-aos] {
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}

/* ─── Gallery item stagger glow on hover sequence ────────────────────────── */
.gallery-grid .gallery-item:nth-child(odd):hover {
  box-shadow:
    0 12px 40px rgba(107,62,38,0.2),
    0 0 0 2px rgba(212,175,55,0.12);
}

.gallery-grid .gallery-item:nth-child(even):hover {
  box-shadow:
    0 12px 40px rgba(74,41,16,0.25),
    0 0 0 2px rgba(212,175,55,0.14);
}

/* ─── Responsive polish ──────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .about-img-wrap::before { display: none; }
  #backToTop { right: 1rem; bottom: 5rem; }
  .stat-number { font-size: 2.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

