/* =============================================
   MAA TARA CATERER — Main Stylesheet
   Aesthetic: Regal Bengali — Deep crimson, antique gold, warm ivory
   Fonts: Cinzel (headings) + Cormorant Garamond (display/italic) + Nunito Sans (body)
============================================= */

:root {
  --crimson: #8B1A1A;
  --crimson-dark: #5c0f0f;
  --crimson-light: #c0392b;
  --gold: #D4A017;
  --gold-light: #e8c04a;
  --gold-dark: #9a7210;
  --ivory: #FAF7F0;
  --ivory-dark: #F0EAD6;
  --charcoal: #1a1008;
  --brown: #3d1f0a;
  --text: #2c1a0e;
  --text-light: #6b4c2a;
  --white: #ffffff;
  --shadow: rgba(139,26,26,0.15);
  --radius: 4px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

em, i {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--crimson);
}

p { font-weight: 300; font-size: 1rem; color: var(--text-light); line-height: 1.8; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* SECTION HEADER */
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; }

.section-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 0.8rem;
  position: relative;
  padding: 0 1rem;
}
.section-tag::before, .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-tag::before { right: 100%; margin-right: -1rem; }
.section-tag::after { left: 100%; margin-left: -1rem; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--crimson);
  color: var(--ivory);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 2px solid var(--crimson);
  transition: var(--transition);
  cursor: pointer;
  border-radius: 0;
}
.btn-primary:hover {
  background: transparent;
  color: var(--crimson);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--ivory);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--ivory);
  color: var(--crimson);
  border-color: var(--ivory);
}

.btn-link {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--crimson);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  display: inline-block;
  margin-top: 1rem;
}
.btn-link:hover { color: var(--gold); }

/* =============================================
   NAVBAR
============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;           /* above hero stacking contexts */
  transition: var(--transition);
  padding: 1.5rem 0;
  -webkit-transform: translateZ(0); /* force GPU layer, fixes iOS stacking */
  transform: translateZ(0);
}
#navbar.scrolled {
  background: rgba(26,10,8,0.97);
  backdrop-filter: blur(10px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
}
.logo-img { height: 50px; width: auto; display: block; }
.footer-logo .logo-img { height: 58px; }
.menu-sidebar-logo .logo-img { height: 54px; margin: 0 auto; }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.85);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 0.7rem 1.5rem;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;           /* bigger tap area */
  min-width: 44px;         /* iOS recommended touch target */
  min-height: 44px;        /* iOS recommended touch target */
  align-items: center;
  justify-content: center;
  touch-action: manipulation;            /* removes 300ms delay */
  -webkit-tap-highlight-color: transparent; /* removes grey flash on iOS */
  position: relative;
  z-index: 1001;           /* above nav z-index so nothing covers it */
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ivory);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: -105%;   /* extra offset to ensure fully off-screen */
  width: 280px; height: 100vh;
  background: var(--charcoal);
  padding: 5rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 1060;           /* above navbar */
  overflow-y: auto;
  box-shadow: -4px 0 30px rgba(0,0,0,0.4);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav a {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--ivory);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(212,160,23,0.1);
  display: block;
  text-transform: uppercase;
}
.mobile-nav a:hover { color: var(--gold); padding-left: 0.5rem; }

/* Close ✕ button */
.mobile-nav-close {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  width: 44px; height: 44px;
  background: rgba(212,160,23,0.1);
  border: 1.5px solid rgba(212,160,23,0.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.3s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  z-index: 10;
  flex-shrink: 0;
}
.mobile-nav-close:hover { background: rgba(212,160,23,0.22); transform: rotate(90deg); }

/* Dark backdrop when mobile nav is open */
.mobile-nav-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1055;           /* between navbar and mobile-nav panel */
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-backdrop.visible { display: block; }
.mobile-cta {
  margin-top: 1rem;
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  text-align: center;
  border-radius: 2px;
  padding: 0.9rem 1rem !important;
  border-bottom: none !important;
}

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(139,26,26,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,160,23,0.15) 0%, transparent 50%),
    linear-gradient(160deg, #1a0808 0%, #2c1005 40%, #1a0808 100%);
}
.hero-overlay {
  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='%23D4A017' 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-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(212,160,23,0.02) 40px,
    rgba(212,160,23,0.02) 41px
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 12rem;
  width: 100%;
}
.hero-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero-title {
  font-family: 'Cinzel', serif;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}
.title-line.italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(3rem, 7vw, 6.5rem);
  color: var(--gold);
  font-weight: 300;
}
.hero-desc {
  max-width: 550px;
  color: rgba(250,247,240,0.75);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.hero-scroll {
  position: absolute;
  bottom: 14rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll span {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(250,247,240,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(26,10,8,0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 0;
  z-index: 3;
}
.stat-item {
  text-align: center;
  padding: 0 3rem;
  flex: 1;
  max-width: 200px;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.stat-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.6);
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212,160,23,0.3);
}

/* =============================================
   ABOUT STRIP
============================================= */
.about-strip {
  padding: 7rem 0;
  background: var(--ivory);
  overflow: hidden;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-strip-text .section-tag { display: block; margin-bottom: 1rem; text-align: left; padding: 0; }
.about-strip-text .section-tag::before, .about-strip-text .section-tag::after { display: none; }
.about-strip-text h2 { margin-bottom: 1.5rem; }
.about-strip-text p { margin-bottom: 1rem; }
.about-strip-image { position: relative; }
.image-frame {
  position: relative;
  padding: 1.5rem;
}
.image-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 75%;
  border: 2px solid var(--gold);
  z-index: 0;
}
.image-frame::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 75%;
  height: 75%;
  border: 2px solid var(--crimson);
  z-index: 0;
}
.image-placeholder {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--brown) 50%, var(--crimson) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.image-placeholder.about-img {
  background: url('assets/photos/1000005239.jpg') center/cover no-repeat;
}
.deco-circle {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.3);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.deco-line-h {
  position: absolute;
  left: 0; right: 0;
  top: 50%; height: 1px;
  background: rgba(212,160,23,0.2);
}
.deco-line-v {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; width: 1px;
  background: rgba(212,160,23,0.2);
}
.img-text-overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.img-text-overlay span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}
.img-text-overlay span:last-child {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(250,247,240,0.8);
  text-transform: uppercase;
}
.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--gold);
  padding: 1rem 1.5rem;
  z-index: 10;
}
.badge-inner { text-align: center; }
.badge-num { color: var(--crimson); font-size: 0.9rem; display: block; }
.badge-text { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.1em; color: var(--charcoal); line-height: 1.4; display: block; margin-top: 0.3rem; }

/* =============================================
   SERVICES
============================================= */
.services-section {
  padding: 7rem 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.services-bg-text {
  position: absolute;
  font-family: 'Cinzel', serif;
  font-size: clamp(6rem, 20vw, 18rem);
  color: rgba(212,160,23,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.services-section .section-header h2 { color: var(--ivory); }
.services-section .section-header p { color: rgba(250,247,240,0.6); }
.services-section .section-tag { color: var(--gold); }
.services-section .section-tag::before,
.services-section .section-tag::after { background: var(--gold); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,160,23,0.15);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation-delay: var(--delay);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--crimson), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { border-color: rgba(212,160,23,0.4); background: rgba(255,255,255,0.05); transform: translateY(-5px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.5rem; margin-bottom: 1.2rem; display: flex; align-items: center; justify-content: center; }
.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--ivory);
  margin-bottom: 0.8rem;
}
.service-card p { color: rgba(250,247,240,0.6); font-size: 0.9rem; }
.card-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  border-bottom: 1px solid rgba(212,160,23,0.3);
  padding-bottom: 2px;
}
.card-link:hover { border-color: var(--gold); }

/* =============================================
   MENU PREVIEW
============================================= */
.menu-preview {
  padding: 7rem 0;
  background: var(--ivory-dark);
  position: relative;
  overflow: hidden;
}
.menu-preview-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 90% 10%, rgba(139,26,26,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(212,160,23,0.06) 0%, transparent 50%);
}
.menu-preview .container { position: relative; }
.tab-buttons {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(139,26,26,0.2);
  flex-wrap: wrap;
}
.tab-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  flex: 1;
  min-width: 120px;
  border-right: 1px solid rgba(139,26,26,0.2);
  position: relative;
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active {
  background: var(--crimson);
  color: var(--ivory);
}
.tab-btn:not(.active):hover { background: rgba(139,26,26,0.05); color: var(--crimson); }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeInUp 0.4s ease; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(15px)} to{opacity:1;transform:none} }

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}
.menu-item {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(139,26,26,0.1);
  border-right: 1px solid rgba(139,26,26,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: var(--transition);
}
.menu-item:hover { background: rgba(139,26,26,0.04); }
.mi-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--crimson);
  font-weight: 600;
}
.mi-desc { font-size: 0.85rem; color: var(--text-light); font-weight: 300; }

/* =============================================
   GALLERY STRIP
============================================= */
.gallery-strip {
  padding: 5rem 0 0;
  background: var(--ivory);
}
.gallery-strip-header { text-align: center; margin-bottom: 2.5rem; }
.gallery-strip-header h2 { color: var(--charcoal); }
.gallery-ticker { overflow: hidden; }
.gallery-track {
  display: flex;
  gap: 1rem;
  animation: ticker 30s linear infinite;
  width: max-content;
  padding: 0 0.5rem;
}
.gallery-track:hover { animation-play-state: paused; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.gallery-thumb {
  width: 280px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 2px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: var(--transition);
}
.gallery-thumb:hover::before { background: rgba(0,0,0,0.1); }
.gallery-thumb span {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials {
  padding: 7rem 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30rem;
  color: rgba(212,160,23,0.03);
  top: -5rem;
  left: -2rem;
  line-height: 1;
}
.testimonials .section-header h2 { color: var(--ivory); }
.testimonials .section-tag { color: var(--gold); }
.testimonials .section-tag::before, .testimonials .section-tag::after { background: var(--gold); }

/* Two-column testimonials layout */
.testimonials-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
.t-rating-card {
  background: rgba(212,160,23,0.06);
  border: 1px solid rgba(212,160,23,0.2);
  padding: 3rem 2rem;
  text-align: center;
  position: sticky;
  top: 5rem;
}
.t-rating-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.t-rating-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 4px; margin: 0.5rem 0; }
.t-rating-count {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.7);
  margin-bottom: 1.5rem;
}
.t-rating-divider {
  width: 40px; height: 1px;
  background: rgba(212,160,23,0.3);
  margin: 1.5rem auto;
}
.t-google-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.7rem 1rem;
  margin-bottom: 1.2rem;
  width: 100%;
  justify-content: center;
  text-decoration: none;
  cursor: default;
}
.t-google-badge svg { flex-shrink: 0; }
.t-google-badge-text { display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem; }
.t-google-label {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.8);
  line-height: 1.3;
}
.t-google-stars-sm { color: #FBBC04; font-size: 0.8rem; line-height: 1.2; letter-spacing: 1px; }
.t-rating-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1rem 0 0.5rem;
  border-top: 1px solid rgba(212,160,23,0.15);
  padding-top: 1rem;
}
.t-stat { text-align: center; }
.t-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1.1;
}
.t-stat span {
  display: block;
  font-size: 0.6rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.45);
  margin-top: 0.1rem;
}
.t-rating-note {
  font-size: 0.78rem;
  color: rgba(250,247,240,0.4);
  font-style: italic;
  line-height: 1.5;
  margin-top: 0.75rem;
}

/* Custom text selection on shimmer headings */
.cta-strip h2::selection, .cta-strip h2 *::selection,
.testimonials .section-header h2::selection, .testimonials .section-header h2 *::selection {
  background: rgba(212,160,23,0.35);
  -webkit-text-fill-color: var(--ivory);
  color: var(--ivory);
}
.t-carousel-wrap { overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  flex: 0 0 100%;
  display: block;
  padding: 2.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,160,23,0.1);
  text-align: left;
  box-sizing: border-box;
}
.t-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 1rem;
}
.testimonial-card p { color: rgba(250,247,240,0.8); font-size: 1.05rem; font-style: italic; line-height: 1.9; margin-bottom: 2rem; }
.t-author { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--crimson);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: var(--ivory);
  flex-shrink: 0;
}
.t-info { text-align: left; }
.t-info strong {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--ivory);
  display: block;
  font-weight: 600;
}
.t-info span { font-size: 0.8rem; color: rgba(250,247,240,0.5); }
.t-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; }
.t-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.t-prev, .t-next {
  background: none;
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold);
  width: 40px; height: 40px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.t-prev:hover, .t-next:hover { background: var(--gold); color: var(--charcoal); }
.t-dots { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(212,160,23,0.3);
  transition: var(--transition);
  cursor: pointer;
}
.dot.active { background: var(--gold); }
@media (max-width: 900px) {
  .testimonials-layout { grid-template-columns: 1fr; }
  .t-rating-card {
    position: static;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
    padding: 1.5rem 2rem;
  }
  .t-rating-number { font-size: 4rem; flex-shrink: 0; margin-bottom: 0; }
}
@media (max-width: 600px) {
  .t-rating-card { flex-direction: column; text-align: center; }
  .testimonial-card { padding: 1.5rem; }
}

/* =============================================
   CTA STRIP
============================================= */
.cta-strip {
  padding: 7rem 0;
  background: var(--crimson-dark);
  background-image: url('assets/photos/1000081870.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(92,15,15,0.9);
  z-index: 0;
  pointer-events: none;
}
.cta-strip > * { position: relative; z-index: 1; }
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4A017' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-text h2 { color: var(--ivory); font-size: clamp(1.5rem, 3vw, 2.5rem); }
.cta-text h2 em { color: var(--gold-light); }
.cta-text p { color: rgba(250,247,240,0.7); margin-top: 0.8rem; }
.cta-form form { display: flex; flex-direction: column; gap: 1rem; }
.cta-form input, .cta-form select {
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--ivory);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.cta-form input::placeholder { color: rgba(250,247,240,0.5); }
.cta-form select option { background: var(--crimson-dark); color: var(--ivory); }
.cta-form input:focus, .cta-form select:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.cta-form .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.cta-form .btn-primary:hover { background: transparent; color: var(--gold); }

/* =============================================
   FOOTER
============================================= */
#footer {
  background: #0e0603;
}
.footer-top { padding: 4rem 0 2.5rem; border-bottom: 1px solid rgba(212,160,23,0.15); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.1fr 1.5fr;
  gap: 2.5rem;
}
.footer-logo { display: inline-flex; flex-direction: column; line-height: 1; margin-bottom: 0.8rem; }
.brand-col p { color: rgba(250,247,240,0.5); font-size: 0.85rem; margin-bottom: 1.2rem; line-height: 1.65; }

/* Services 2-column sub-grid */
.footer-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 0.5rem; }
.footer-services-grid ul { gap: 0.45rem !important; }
.footer-services-grid li a strong { color: inherit; font-weight: normal; }

/* FSSAI inline in brand column */
.footer-fssai { margin-top: 1.4rem; }
.footer-fssai-img {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  background: rgba(255,255,255,0.97);
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(212,160,23,0.18);
  display: block;
}
@media (max-width: 768px) {
  .footer-fssai { margin-top: 1.6rem; }
  .footer-fssai-img {
    height: auto;
    width: 100%;
    max-width: 100%;
    padding: 0.6rem 1rem;
  }
  .footer-services-grid { grid-template-columns: 1fr; }
}
/* SOCIAL LINKS — Themed SVG icon buttons */
.social-links { display: flex; gap: 0.65rem; margin-top: 1.2rem; }
.social-links a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,160,23,0.28);
  color: rgba(250,247,240,0.5);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease, border-color 0.35s ease;
  flex-shrink: 0;
}
.social-links a svg {
  width: 17px; height: 17px;
  position: relative; z-index: 1;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
}
.social-links a::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--gold-dark) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.social-links a:hover { color: var(--ivory); border-color: transparent; }
.social-links a:hover::before { opacity: 1; }
.social-links a:hover svg { transform: scale(1.18) rotate(-6deg); }

/* FLOATING WHATSAPP BUTTON */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5), 0 6px 24px rgba(0,0,0,0.3); }
  60%       { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 6px 24px rgba(0,0,0,0.3); }
}
.wa-float {
  position: fixed;
  bottom: 5.8rem; right: 1.8rem;
  z-index: 9998;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 1;
  visibility: visible;
  animation: waPulse 2.8s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.28);
}
.wa-float:hover {
  transform: scale(1.12);
  background: #1da851;
  animation-play-state: paused;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; display: block; flex-shrink: 0; }
@media (max-width: 600px) {
  .wa-float { bottom: 5rem; right: 1.25rem; width: 50px; height: 50px; }
  .wa-float svg { width: 26px; height: 26px; }
}
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(212,160,23,0.2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(250,247,240,0.5);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}
.fc-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.footer-contact-item span:last-child { font-size: 0.85rem; color: rgba(250,247,240,0.5); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(250,247,240,0.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(250,247,240,0.3); }
.footer-bottom-links a:hover { color: var(--gold); }

/* =============================================
   SCROLL TOP
============================================= */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--crimson);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  border: 1px solid rgba(212,160,23,0.3);
}
.scroll-top.visible { opacity: 1; transform: none; }
.scroll-top:hover { background: var(--gold); color: var(--charcoal); }

/* =============================================
   REVEAL ANIMATIONS
============================================= */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* =============================================
   PAGE BANNER (inner pages)
============================================= */
.page-banner {
  height: 50vh;
  min-height: 350px;
  background: linear-gradient(160deg, var(--crimson-dark) 0%, var(--brown) 50%, var(--charcoal) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  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'%3E%3Cg fill='%23D4A017' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.page-banner h1 {
  color: var(--ivory);
  font-size: clamp(2rem, 5vw, 4rem);
}
.page-banner h1 em { color: var(--gold); }
.breadcrumb {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: rgba(250,247,240,0.5);
}
.breadcrumb a { color: rgba(212,160,23,0.7); }
.breadcrumb a:hover { color: var(--gold); }

/* =============================================
   ABOUT PAGE
============================================= */
.about-story { padding: 7rem 0; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-story-grid.reverse { direction: rtl; }
.about-story-grid.reverse > * { direction: ltr; }
.about-text .section-tag { text-align: left; padding: 0; }
.about-text .section-tag::before, .about-text .section-tag::after { display: none; }
.about-text h2 { margin: 0.5rem 0 1.5rem; }
.about-text p { margin-bottom: 1rem; }
.about-visual {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--crimson-dark), var(--brown));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(212,160,23,0.3);
  font-style: italic;
  text-align: center;
  line-height: 1.2;
  padding: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 5rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(139,26,26,0.15);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 0.5rem; color: var(--crimson); }
.value-card p { font-size: 0.85rem; }

.team-section { padding: 5rem 0 7rem; background: var(--ivory-dark); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card { text-align: center; }
.team-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--crimson), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--ivory);
  border: 3px solid var(--gold-dark);
}
.team-card h4 { font-family: 'Cinzel', serif; font-size: 0.9rem; margin-bottom: 0.2rem; }
.team-card span { font-size: 0.8rem; color: var(--text-light); font-style: italic; }

/* =============================================
   SERVICES PAGE
============================================= */
.services-page { padding: 7rem 0; }
.services-page-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.service-page-card {
  border: 1px solid rgba(139,26,26,0.15);
  overflow: hidden;
  transition: var(--transition);
}
.service-page-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(139,26,26,0.15); }
.spc-header {
  padding: 3rem 2rem 2rem;
  background: linear-gradient(135deg, var(--crimson-dark), var(--brown));
  text-align: center;
}
.spc-icon { font-size: 3rem; margin-bottom: 0.8rem; }
.spc-header h3 { font-family: 'Cinzel', serif; color: var(--ivory); font-size: 1rem; letter-spacing: 0.1em; }
.spc-body { padding: 1.5rem 2rem 2rem; }
.spc-body p { font-size: 0.9rem; margin-bottom: 1rem; }
.spc-list { display: flex; flex-direction: column; gap: 0.5rem; }
.spc-list li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding-left: 1.2rem;
  position: relative;
}
.spc-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.5rem; top: 0.3rem; }

.why-us { padding: 5rem 0; background: var(--charcoal); }
.why-us h2 { color: var(--ivory); text-align: center; margin-bottom: 3rem; }

/* Infinite carousel */
.why-us-carousel {
  overflow: hidden;
  position: relative;
}
.why-us-carousel::before,
.why-us-carousel::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.why-us-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--charcoal) 30%, transparent);
}
.why-us-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--charcoal) 30%, transparent);
}
@keyframes whyScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-220px * 6)); }
}
.why-us-track {
  display: flex;
  width: max-content;
  animation: whyScroll 22s linear infinite;
}
.why-us-track:hover { animation-play-state: paused; }
.why-item {
  flex: 0 0 220px;
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(212,160,23,0.08);
}
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; }
.why-item h4 { font-family: 'Cinzel', serif; color: var(--gold); font-size: 0.82rem; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.why-item p { color: rgba(250,247,240,0.6); font-size: 0.82rem; line-height: 1.6; }

/* =============================================
   MENU PAGE
============================================= */
.menu-page { padding: 7rem 0; }
.menu-categories { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; align-items: start; }
.menu-sidebar { position: sticky; top: 100px; }
.menu-sidebar-logo {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(139,26,26,0.15);
  margin-bottom: 1rem;
}
.menu-sidebar-logo { text-align: center; }
.menu-sidebar ul { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(139,26,26,0.15); }
.menu-sidebar li a {
  display: block;
  padding: 0.9rem 1.2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid rgba(139,26,26,0.1);
  transition: var(--transition);
}
.menu-sidebar li a:hover, .menu-sidebar li a.active { background: var(--crimson); color: var(--ivory); padding-left: 1.5rem; }
.menu-sidebar li:last-child a { border-bottom: none; }
.menu-sidebar .btn-primary { width: 100%; text-align: center; margin-top: 1rem; display: block; }

.menu-content { }
.menu-section { margin-bottom: 4rem; }
.menu-section-title {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--crimson);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--crimson);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.menu-section-title::after { content: '✦'; color: var(--gold); font-size: 0.8rem; }

.menu-section-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--crimson-dark), var(--brown));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.menu-section-img span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: rgba(212,160,23,0.5);
  font-style: italic;
}
.menu-items-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.menu-list-item {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid rgba(139,26,26,0.08);
  border-right: 1px solid rgba(139,26,26,0.08);
}
.menu-list-item:nth-child(even) { border-right: none; }
.menu-list-item h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--crimson);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.menu-list-item p { font-size: 0.8rem; color: var(--text-light); }

/* =============================================
   GALLERY PAGE
============================================= */
.gallery-page { padding: 5rem 0 7rem; }
.gallery-filter {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  border: 1px solid rgba(139,26,26,0.2);
}
.filter-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  border-right: 1px solid rgba(139,26,26,0.2);
}
.filter-btn:last-child { border-right: none; }
.filter-btn.active { background: var(--crimson); color: var(--ivory); }
.filter-btn:not(.active):hover { background: rgba(139,26,26,0.05); }
/* BENTO GRID GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--charcoal);
}
.gallery-item.wide  { grid-column: span 2; }
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item-inner {
  width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover !important;
  background-position: center !important;
}
.gallery-item:hover .gallery-item-inner { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(26,10,8,0.95) 0%, rgba(26,10,8,0.55) 55%, transparent 100%);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; transform: translateY(0); }
.gallery-item-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.2;
}
.gallery-item-overlay small {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   FAQ PAGE
============================================= */
.faq-page { padding: 7rem 0; }
.faq-section { margin-bottom: 3rem; }
.faq-section-title {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212,160,23,0.3);
}
.faq-item { border-bottom: 1px solid rgba(139,26,26,0.12); }
.faq-question {
  padding: 1.3rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--crimson); }
.faq-question.open { color: var(--crimson); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid rgba(139,26,26,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--crimson);
  transition: var(--transition);
}
.faq-question.open .faq-icon { background: var(--crimson); color: var(--ivory); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 1.2rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  animation: fadeInUp 0.3s ease;
}
.faq-answer.open { display: block; }

/* =============================================
   CONTACT PAGE
============================================= */
.contact-page { padding: 7rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info .section-tag { text-align: left; padding: 0; }
.contact-info .section-tag::before, .contact-info .section-tag::after { display: none; }
.contact-info h2 { margin: 0.5rem 0 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  border: 1px solid rgba(139,26,26,0.1);
  transition: var(--transition);
}
.contact-detail:hover { border-color: var(--gold); }
.cd-icon {
  width: 44px; height: 44px;
  background: var(--crimson);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cd-text strong {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.3rem;
}
.cd-text p { font-size: 0.9rem; }
.contact-form-wrap h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(139,26,26,0.15);
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(139,26,26,0.2);
  background: var(--ivory);
  color: var(--text);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--crimson); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  padding: 1rem 1.5rem;
  background: rgba(26,74,46,0.1);
  border: 1px solid rgba(26,74,46,0.3);
  color: #1a4a2e;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 3rem; }
  .menu-categories { grid-template-columns: 1fr; }
  .menu-sidebar { position: static; }
  .menu-sidebar ul { flex-direction: row; flex-wrap: wrap; }
  .menu-sidebar li a { border-right: 1px solid rgba(139,26,26,0.1); border-bottom: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .stat-item { flex: 50%; padding: 1.2rem 1rem; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 10px; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .gallery-item.wide  { grid-column: span 2; }
  .gallery-item.tall  { grid-row: span 2; }
  .gallery-item { border-radius: 14px; }
  .menu-items-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .tab-btn { min-width: 80px; padding: 0.8rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; gap: 8px; }
  .gallery-item { border-radius: 10px; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .hero-stats { display: none; }
  .tab-buttons { flex-direction: column; }
  .tab-btn { border-right: none; border-bottom: 1px solid rgba(139,26,26,0.2); }
}

/* =============================================
   MENU CONFIGURATOR
============================================= */
.menu-configurator {
  padding: 5rem 0;
  background: var(--ivory-dark);
  border-bottom: 1px solid rgba(139,26,26,0.12);
}
.config-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
}
.config-panel {
  border: 1px solid rgba(139,26,26,0.18);
  margin-bottom: 0.6rem;
  background: var(--ivory);
}
.config-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}
.config-panel-header:hover { background: rgba(139,26,26,0.04); }
.config-panel.open .config-panel-header { background: var(--crimson); color: var(--ivory); }
.config-toggle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--crimson);
  transition: var(--transition);
}
.config-panel.open .config-toggle { color: var(--gold); }
.config-panel-body {
  display: none;
  padding: 1rem 1.2rem;
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.3rem;
  border-top: 1px solid rgba(139,26,26,0.1);
}
.config-panel.open .config-panel-body { display: grid; }
.config-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.3rem 0.4rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}
.config-item:hover { background: rgba(139,26,26,0.05); }
.config-item input[type=checkbox] {
  accent-color: var(--crimson);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.config-summary {
  position: sticky;
  top: 100px;
  background: var(--ivory);
  border: 2px solid var(--crimson);
  padding: 1.5rem;
}
.config-summary h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212,160,23,0.3);
}
.config-empty { font-size: 0.85rem; color: var(--text-light); font-style: italic; }
.config-summary-group { margin-bottom: 0.75rem; }
.config-summary-group strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}
.config-summary-group ul { list-style: disc; padding-left: 1.2rem; }
.config-summary-group li { font-size: 0.82rem; color: var(--text); line-height: 1.6; }
.config-meta { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(139,26,26,0.12); }
.config-meta label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
  margin-top: 0.8rem;
}
.config-meta input, .config-meta select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(139,26,26,0.25);
  background: var(--ivory);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
}
.config-meta input:focus, .config-meta select:focus { border-color: var(--crimson); }
.config-msg {
  margin: 0.8rem 0;
  padding: 0.7rem 0.9rem;
  font-size: 0.82rem;
  border-radius: var(--radius);
}
.config-msg-success { background: rgba(26,74,46,0.1); color: #1a4a2e; border: 1px solid rgba(26,74,46,0.2); }
.config-msg-error { background: rgba(139,26,26,0.08); color: var(--crimson); border: 1px solid rgba(139,26,26,0.2); }
@media (max-width: 900px) {
  .config-layout { grid-template-columns: 1fr; }
  .config-summary { position: static; }
}
@media (max-width: 480px) {
  .config-panel-body { grid-template-columns: 1fr; }
}

/* =============================================
   ROYAL ENHANCEMENTS
============================================= */

/* Scroll progress bar */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(212,160,23,0.5);
  pointer-events: none;
}

/* ── Keyframes ─────────────────────────────── */
@keyframes shine-sweep {
  0%   { left: -100%; }
  100% { left: 220%; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(1.9); opacity: 0; }
}
@keyframes ripple-anim {
  0%   { transform: scale(0); opacity: 0.45; }
  100% { transform: scale(4); opacity: 0; }
}
@keyframes float-gentle {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes word-reveal {
  from { clip-path: inset(0 0 110% 0); opacity: 0; transform: translateY(14px); }
  to   { clip-path: inset(0 0 0% 0);   opacity: 1; transform: translateY(0); }
}
@keyframes border-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(139,26,26,0.08); }
  50%       { box-shadow: 0 4px 32px rgba(212,160,23,0.28), 0 0 0 1px rgba(212,160,23,0.14); }
}
@keyframes shimmer-text {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── Button Enhancements ───────────────────── */
.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.28);
  transform: scale(0);
  animation: ripple-anim 0.65s ease-out forwards;
  pointer-events: none;
}
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ''; position: absolute;
  top: -50%; left: -100%;
  width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
}
.btn-primary:hover::after { animation: shine-sweep 0.55s ease forwards; }
.btn-primary:active { transform: scale(0.97); }
.btn-outline:active  { transform: scale(0.97); }
.nav-cta:active      { transform: scale(0.97); }

/* Pulse ring on hero primary CTA */
.hero-actions .btn-primary { position: relative; }
.hero-actions .btn-primary::before {
  content: ''; position: absolute; inset: -7px;
  border-radius: inherit;
  border: 1.5px solid rgba(212,160,23,0.45);
  animation: pulse-ring 2.4s ease-out infinite;
  pointer-events: none;
}

/* Outline button — animated gold border draw */
.btn-outline { position: relative; overflow: hidden; }
.btn-outline::before {
  content: ''; position: absolute; inset: 0;
  border: 2px solid var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
  pointer-events: none;
}
.btn-outline:hover::before { transform: scaleX(1); }

/* ── Royal Section Divider ─────────────────── */
.royal-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 0.8rem; margin: 0 auto 3rem;
  max-width: 320px;
}
.royal-divider::before, .royal-divider::after {
  content: ''; flex: 1; height: 1px;
}
.royal-divider::before { background: linear-gradient(90deg, transparent, var(--gold) 80%); }
.royal-divider::after  { background: linear-gradient(90deg, var(--gold) 20%, transparent); }
.royal-divider span    { color: var(--gold); font-size: 0.7rem; flex-shrink: 0; opacity: 0.8; }

/* ── Shimmer on dark headings ──────────────── */
.testimonials .section-header h2,
.cta-strip h2 {
  background: linear-gradient(90deg, var(--ivory) 15%, var(--gold-light) 50%, var(--ivory) 85%);
  background-size: 280% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 5s linear infinite;
}

/* ── Card Border Glow ──────────────────────── */
.service-card:hover,
.value-card:hover,
.team-card:hover { animation: border-glow 2s ease-in-out infinite; }

/* ── Hero pattern float ────────────────────── */
.hero-pattern { animation: float-gentle 14s ease-in-out infinite; }

/* ── Word-split text reveal ────────────────── */
.split-word {
  display: inline-block;
  clip-path: inset(0 0 110% 0);
  opacity: 0;
  will-change: clip-path, opacity, transform;
}
.split-word.word-visible {
  animation: word-reveal 0.55s cubic-bezier(0.35, 0, 0.2, 1) forwards;
}

/* ── Reveal Scale ──────────────────────────── */
.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.revealed {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* =============================================
   ABOUT PAGE ENHANCEMENTS
============================================= */

/* About-visual: real photo background */
.about-visual {
  position: relative;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
}
.about-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,26,26,0.15) 0%, rgba(26,10,8,0.22) 100%);
  display: flex; align-items: flex-end; padding: 2rem;
}
.about-visual-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(26,10,8,0.72);
  padding: 0.45rem 1rem; border-radius: 4px;
  border: 1px solid rgba(212,160,23,0.35);
}

/* Food photo strip */
.about-photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px; height: 180px;
  margin: 4rem 0 3rem;
}
.aps-item {
  border-radius: 12px;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.aps-item:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(139,26,26,0.22);
}

/* Stats section with photo bg */
.about-stats-section {
  position: relative;
  background: url('assets/photos/1000081903.jpg') center/cover no-repeat;
  padding: 5rem 0;
}
.about-stats-overlay {
  position: absolute; inset: 0;
  background: rgba(26,10,8,0.84);
}
.about-stats-section .container { position: relative; z-index: 1; }

/* Team photo collage */
.team-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: 6px;
  margin-top: 3rem;
  /* Full-width breakout from container */
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 6px;
  box-sizing: border-box;
}
.collage-item {
  aspect-ratio: 1;                    /* perfect squares */
  background-size: cover !important;
  background-position: center !important;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
}

/* Gold border shown on pop */
.collage-item::after {
  content: ''; position: absolute; inset: 0;
  border: 2.5px solid rgba(212,160,23,0);
  border-radius: inherit;
  transition: border-color 0.35s ease;
  pointer-events: none;
  z-index: 2;
}
.collage-item.popping::after { border-color: rgba(212,160,23,0.7); }

@keyframes collage-pop {
  0%   { transform: scale(1);    box-shadow: none; }
  20%  { transform: scale(1.18); box-shadow: 0 24px 70px rgba(26,10,8,0.6), 0 0 0 3px rgba(212,160,23,0.5); }
  80%  { transform: scale(1.18); box-shadow: 0 24px 70px rgba(26,10,8,0.6), 0 0 0 3px rgba(212,160,23,0.5); }
  100% { transform: scale(1);    box-shadow: none; }
}
.collage-item.popping {
  animation: collage-pop 2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  z-index: 10;
  overflow: visible;
}

/* Team names strip */
.team-names-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 10px;
  background: rgba(139,26,26,0.12);
  border-radius: 12px;
  overflow: hidden;
}
.tns-item {
  text-align: center; padding: 1.4rem 1rem;
  background: var(--ivory);
  display: flex; flex-direction: column; gap: 0.25rem;
  transition: background 0.3s ease;
}
.tns-item:hover { background: rgba(139,26,26,0.04); }
.tns-item strong {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem; letter-spacing: 0.08em; color: var(--charcoal);
}
.tns-item span {
  font-size: 0.75rem; color: var(--text-light);
  font-style: italic; font-family: 'Cormorant Garamond', serif;
}

/* Responsive for about enhancements */
@media (max-width: 768px) {
  .about-photo-strip { grid-template-columns: repeat(3, 1fr); }
  .aps-item:nth-child(4), .aps-item:nth-child(5) { display: none; }
  .team-collage { grid-template-columns: repeat(4, 1fr); }
  .team-names-strip { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .about-photo-strip { grid-template-columns: repeat(2,1fr); height: 130px; }
  .aps-item:nth-child(3), .aps-item:nth-child(4), .aps-item:nth-child(5) { display: none; }
  .team-collage { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .team-names-strip { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   GALLERY LIGHTBOX
============================================= */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.gallery-lightbox.open {
  opacity: 1; visibility: visible;
}

.glb-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 4, 2, 0.93);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.glb-content {
  position: relative; z-index: 1;
  max-width: min(94vw, 1100px);
  max-height: 90vh;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.glb-image {
  max-width: 100%; max-height: 78vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.75), 0 0 0 1px rgba(212,160,23,0.12);
  transform: scale(0.92);
  transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.2s ease;
}
.gallery-lightbox.open .glb-image { transform: scale(1); }

.glb-caption {
  text-align: center;
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 0 1rem;
}
.glb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-style: italic;
  color: var(--ivory);
  letter-spacing: 0.03em;
}
.glb-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); opacity: 0.8;
}

/* Close button */
.glb-close {
  position: fixed; top: 1.2rem; right: 1.4rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,160,23,0.5);
  background: rgba(26,10,8,0.75);
  color: var(--ivory); font-size: 1.05rem;
  cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}
.glb-close:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  transform: rotate(90deg);
}

/* Prev / Next arrows */
.glb-prev, .glb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,160,23,0.4);
  background: rgba(26,10,8,0.65);
  color: var(--gold); font-size: 2.2rem; line-height: 1;
  cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(4px);
  user-select: none;
}
.glb-prev { left: 1.2rem; }
.glb-next { right: 1.2rem; }
.glb-prev:hover { background: var(--crimson); border-color: var(--crimson); transform: translateY(-50%) scale(1.1); }
.glb-next:hover { background: var(--crimson); border-color: var(--crimson); transform: translateY(-50%) scale(1.1); }

/* Counter */
.glb-counter {
  position: fixed; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  font-family: 'Cinzel', serif; font-size: 0.62rem; letter-spacing: 0.18em;
  color: rgba(250,247,240,0.45); z-index: 2;
  white-space: nowrap;
}

/* Gallery items become clickable */
.gallery-item { cursor: pointer; }

/* Responsive lightbox */
@media (max-width: 768px) {
  .glb-prev { left: 0.4rem; width: 42px; height: 42px; font-size: 1.8rem; }
  .glb-next { right: 0.4rem; width: 42px; height: 42px; font-size: 1.8rem; }
  .glb-close { top: 0.8rem; right: 0.8rem; width: 40px; height: 40px; }
  .glb-image { max-height: 65vh; border-radius: 8px; }
  .glb-title { font-size: 1.1rem; }
}

/* =============================================
   SVG ICON SYSTEM
============================================= */
.site-icon {
  display: inline-block;
  transition: transform 0.4s ease, filter 0.4s ease;
  vertical-align: middle;
}
@keyframes strokeDraw {
  from { stroke-dashoffset: 300; opacity: 0.3; }
  to   { stroke-dashoffset: 0;   opacity: 1;   }
}
.site-icon path, .site-icon circle, .site-icon rect,
.site-icon line, .site-icon polyline, .site-icon polygon,
.site-icon ellipse {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: strokeDraw 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
  animation-play-state: paused;
}
.revealed .site-icon path, .revealed .site-icon circle,
.revealed .site-icon rect, .revealed .site-icon line,
.revealed .site-icon polyline, .revealed .site-icon polygon,
.revealed .site-icon ellipse { animation-play-state: running; }

/* Per-context sizes */
.service-icon .site-icon { width: 48px; height: 48px; color: var(--gold); }
.spc-icon .site-icon { width: 52px; height: 52px; color: var(--gold); }
.value-icon .site-icon { width: 44px; height: 44px; color: var(--crimson); }
.why-icon .site-icon { width: 44px; height: 44px; color: var(--gold); }
.fc-icon .site-icon { width: 15px; height: 15px; color: var(--gold); }
.cd-icon .site-icon { width: 22px; height: 22px; color: var(--ivory); }

/* Hover animations */
.service-card:hover .site-icon,
.spc-card:hover .site-icon,
.value-card:hover .site-icon,
.why-item:hover .site-icon {
  transform: rotate(10deg) scale(1.12);
  filter: drop-shadow(0 0 7px rgba(212,160,23,0.55));
}
.cd-icon:hover .site-icon {
  filter: drop-shadow(0 0 5px rgba(250,247,240,0.4));
}

/* Staggered animation delays for grid children */
.service-card:nth-child(1) .site-icon path,
.service-card:nth-child(1) .site-icon circle { animation-delay: 0s; }
.service-card:nth-child(2) .site-icon path,
.service-card:nth-child(2) .site-icon circle { animation-delay: 0.15s; }
.service-card:nth-child(3) .site-icon path,
.service-card:nth-child(3) .site-icon circle { animation-delay: 0.3s; }
.service-card:nth-child(4) .site-icon path,
.service-card:nth-child(4) .site-icon circle { animation-delay: 0.45s; }

/* =============================================
   SERVICE CARD PHOTO BACKGROUNDS
============================================= */
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: grayscale(20%) sepia(15%);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover .service-card-bg { opacity: 0.16; }

/* =============================================
   WHY CHOOSE US — PHOTO BACKGROUND
============================================= */
.why-us { position: relative; overflow: hidden; }
.why-us-photo-bg {
  position: absolute;
  inset: 0;
  background: url('assets/photos/1000006919.jpg') center/cover no-repeat;
  opacity: 0.07;
  filter: grayscale(15%);
  pointer-events: none;
}

/* =============================================
   FAQ PHOTO STRIP
============================================= */
.faq-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 3rem 0;
  height: 180px;
}
.fps-item {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.fps-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,8,0.75) 0%, transparent 65%);
}
.fps-item span {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(250,247,240,0.92);
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  .faq-photo-strip { grid-template-columns: 1fr; height: auto; }
  .fps-item { height: 140px; }
}
