@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Great+Vibes&display=swap');

:root {
  --gold: #D4A853;
  --gold-light: #E8C97A;
  --gold-dark: #B8892E;
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #1A1A1A;
  --text-primary: #F5F0E8;
  --text-secondary: #A89F91;
  --text-muted: #6B6358;
  --accent-rose: #C4717A;
  --accent-purple: #8B6DB0;
  --glass-bg: rgba(26, 26, 26, 0.7);
  --glass-border: rgba(212, 168, 83, 0.15);
  --shadow-gold: 0 0 40px rgba(212, 168, 83, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

.script-font { font-family: 'Great Vibes', cursive; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.8rem 5%;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--gold);
  text-decoration: none; letter-spacing: 1px;
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 75px; width: auto; object-fit: contain;
  transition: transform 0.3s;
  display: block;
}
.nav-logo-img:hover { transform: scale(1.05); }
.navbar.scrolled .nav-logo-img { height: 55px; }
.nav-logo span { font-family: 'Great Vibes', cursive; font-size: 2.2rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 0.9rem; font-weight: 400; letter-spacing: 0.5px;
  transition: color 0.3s; text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0A0A0A !important; padding: 0.6rem 1.5rem;
  border-radius: 50px; font-weight: 600 !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(212,168,83,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 25px; height: 2px; background: var(--gold); transition: 0.3s; }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero-banner.png') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 900px; padding: 0 2rem;
}
.hero-badge {
  display: inline-block; padding: 0.6rem 1.8rem;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--gold); border-radius: 50px;
  font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase;
  color: #FFD97D;
  text-shadow: 0 0 12px rgba(212, 168, 83, 0.8), 0 1px 3px rgba(0,0,0,0.9);
  box-shadow: 0 0 18px rgba(212, 168, 83, 0.25), inset 0 1px 0 rgba(255,255,255,0.08);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease both;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem; color: var(--text-secondary);
  max-width: 600px; margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0A0A0A; padding: 1rem 2.5rem; border: none; border-radius: 50px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212,168,83,0.35); }
.btn-outline {
  background: transparent; color: var(--text-primary);
  padding: 1rem 2.5rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 50px;
  font-size: 1rem; cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex; justify-content: center; gap: 4rem; margin-top: 4rem;
  animation: fadeInUp 0.8s 0.8s ease both;
}
.stat { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ─── SECTIONS ─── */
section { padding: 6rem 5%; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block; color: var(--gold); font-size: 0.8rem;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem;
  font-weight: 500;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-desc { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ─── ABOUT ─── */
.about { background: var(--bg-secondary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-image { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--glass-border); border-radius: 20px;
}
.about-text h3 { font-size: 2rem; margin-bottom: 1.5rem; }
.about-text p { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.about-feature { display: flex; align-items: flex-start; gap: 0.8rem; }
.about-feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(212,168,83,0.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.about-feature span { font-size: 0.9rem; color: var(--text-secondary); }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem; max-width: 1400px; margin: 0 auto;
}
.service-card {
  position: relative; border-radius: 16px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.service-card-image { position: relative; height: 220px; overflow: hidden; cursor: zoom-in; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform: scale(1) translateZ(0); will-change: transform; backface-visibility: hidden; }
.service-card:hover .service-card-image img { transform: scale(1.08) translateZ(0); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.8) 100%);
}
.service-card-category {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(212,168,83,0.9); color: #0A0A0A;
  padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.7rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}
.service-card-icon {
  position: absolute; bottom: 1rem; right: 1rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10,10,10,0.6); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; border: 1px solid rgba(212,168,83,0.2);
  transition: transform 0.3s, background 0.3s;
}
.service-card:hover .service-card-icon { transform: scale(1.15); background: rgba(212,168,83,0.2); }
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.service-card-body p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.service-card-footer {
  padding: 0 1.5rem 1.5rem; display: flex; justify-content: flex-end; align-items: center;
}
.service-price { color: var(--gold); font-weight: 600; font-size: 0.95rem; }
.service-link {
  color: var(--gold); text-decoration: none; font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.3rem; transition: gap 0.3s;
}
.service-link:hover { gap: 0.6rem; }

/* Filter Tabs */
.filter-tabs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 3rem;
}
.filter-tab {
  padding: 0.6rem 1.5rem; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; background: transparent; color: var(--text-secondary);
  cursor: pointer; font-size: 0.85rem; transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--gold); color: #0A0A0A; border-color: var(--gold); font-weight: 600;
}

/* ─── GALLERY SLIDESHOW ─── */
.gallery { background: var(--bg-secondary); }
.gallery-slider-wrapper { max-width: 1000px; margin: 0 auto; position: relative; overflow: hidden; }
.gallery-track-container { overflow: hidden; border-radius: 16px; border: 1px solid var(--glass-border); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.gallery-track { display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.gallery-item {
  flex: 0 0 100%; position: relative;
  aspect-ratio: 16/9; overflow: hidden;
  cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.8));
}
.gallery-label {
  position: absolute; bottom: 2rem; left: 2rem; z-index: 2;
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  color: var(--text-primary); text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ─── PROCESS ─── */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  max-width: 1200px; margin: 0 auto; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  color: var(--gold); margin: 0 auto 1.5rem; position: relative; z-index: 2;
}
.process-step h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--text-secondary); font-size: 0.9rem; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--bg-secondary); }
.testimonial-slider { max-width: 800px; margin: 0 auto; position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
  min-width: 100%; padding: 3rem; text-align: center;
}
.testimonial-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1.5rem; letter-spacing: 4px; }
.testimonial-card blockquote {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  line-height: 1.8; color: var(--text-primary); margin-bottom: 2rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonial-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent-rose));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #0A0A0A;
}
.testimonial-name { font-weight: 600; }
.testimonial-event { color: var(--text-muted); font-size: 0.85rem; }
.slider-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.slider-btn {
  width: 45px; height: 45px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--glass-border);
  color: var(--gold); cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.slider-btn:hover { background: var(--gold); color: #0A0A0A; }
.slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--text-muted); border: none; cursor: pointer; transition: all 0.3s;
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ─── CONTACT ─── */
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  max-width: 1200px; margin: 0 auto;
  align-items: center;
}
.contact-info { padding-right: 2rem; }
.contact-info h3 { font-size: 2rem; margin-bottom: 1.5rem; }
.contact-info p { color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.8; }
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(212,168,83,0.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
  border: 1px solid rgba(212,168,83,0.2);
}
.contact-detail span { color: var(--text-secondary); font-size: 0.95rem; }
.contact-detail strong { display: block; color: var(--text-primary); margin-bottom: 0.2rem; }

/* QR Code Styles */
.contact-qr {
  margin-top: 2rem;
  background: rgba(26, 26, 26, 0.6);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  display: inline-block;
  text-align: center;
}
.footer-qr { margin-top: 1.5rem; }
.qr-code-img, .footer-qr-img {
  width: 130px; height: 130px;
  object-fit: contain;
  background: #ffffff;
  padding: 8px;
  border-radius: 12px;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.qr-code-img:hover, .footer-qr-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212,168,83,0.3);
}

.contact-form {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; color: var(--text-secondary); font-size: 0.85rem;
  margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 1rem 1.2rem; background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  color: var(--text-primary); font-size: 0.95rem; font-family: 'Inter', sans-serif;
  transition: all 0.3s; outline: none;
  height: 56px; /* Uniform height for text, select, and date inputs */
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { 
  border-color: var(--gold); 
  background: rgba(10, 10, 10, 0.9);
  box-shadow: 0 0 15px rgba(212, 168, 83, 0.1);
}
.form-group textarea { resize: vertical; height: auto; min-height: 120px; }
.form-group select option { background: var(--bg-card); }
.form-submit {
  width: 100%; padding: 1.2rem; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none; border-radius: 50px; color: #0A0A0A; font-size: 1.05rem;
  font-weight: 700; cursor: pointer; transition: all 0.3s;
  font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 1px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,83,0.35); }

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-secondary); border-top: 1px solid var(--glass-border);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; max-width: 1200px; margin: 0 auto 3rem;
}
.footer-brand p { color: var(--text-secondary); margin: 1rem 0 1.5rem; line-height: 1.8; font-size: 0.9rem; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); text-decoration: none;
  transition: all 0.3s; font-size: 0.9rem;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,168,83,0.1); }
.footer-col h4 {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted); font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

/* ─── FLASH SALE BANNER ─── */
.flash-sale-banner {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1100;
  background: linear-gradient(90deg, #b8892e, #d4a853, #e8c97a, #d4a853, #b8892e);
  background-size: 200% 100%; animation: shineGold 3s linear infinite;
  padding: 0.6rem 1rem; text-align: center;
  box-shadow: 0 2px 20px rgba(212,168,83,0.3);
}
.flash-sale-banner.hidden { display: none; }
.flash-sale-inner {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  color: #0A0A0A; font-size: 0.9rem; flex-wrap: wrap;
}
.flash-pulse { animation: pulse 1s ease-in-out infinite; font-size: 1.2rem; }
.flash-cta {
  background: #0A0A0A; color: var(--gold) !important; padding: 0.3rem 1rem;
  border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.8rem;
  transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px;
}
.flash-cta:hover { background: #1a1a1a; transform: scale(1.05); }
.flash-close {
  background: none; border: none; color: #0A0A0A; font-size: 1.1rem;
  cursor: pointer; padding: 0 0.3rem; opacity: 0.7; transition: opacity 0.3s;
}
.flash-close:hover { opacity: 1; }
@keyframes shineGold { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.3)} }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Floating particles */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; width: 4px; height: 4px; background: var(--gold);
  border-radius: 50%; opacity: 0.3; animation: floatParticle 8s infinite;
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  50% { transform: translateY(-400px) translateX(100px); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { gap: 2rem; }
  .contact-info { padding-right: 0; }
  .contact-form { padding: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; right: -100%; width: 70%; height: 100vh;
    background: var(--bg-secondary); flex-direction: column; padding: 5rem 2rem; gap: 1.5rem;
    transition: right 0.4s; border-left: 1px solid var(--glass-border);
  }
  .nav-links.open { right: 0; display: flex; }
  .hamburger { display: flex; z-index: 1001; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 4/3; }
  .gallery-label { font-size: 1.2rem; bottom: 1.5rem; left: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form { padding: 1.5rem; }
  section { padding: 4rem 5%; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .nav-logo-img { height: 60px; }
  .navbar.scrolled .nav-logo-img { height: 45px; }
}

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none; position: fixed; z-index: 2000; padding-top: 60px;
  left: 0; top: 0; width: 100%; height: 100%; overflow: auto;
  background-color: rgba(0,0,0,0.9); backdrop-filter: blur(10px);
}
.lightbox.active { display: flex; flex-direction: column; align-items: center; justify-content: center; animation: fadeIn 0.3s; padding-top: 0; }
.lightbox-content {
  display: block; max-width: 90%; max-height: 80vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 0 40px rgba(212,168,83,0.2);
}
.lightbox-caption {
  display: block; width: 80%; max-width: 700px;
  text-align: center; color: var(--gold); padding: 15px 0 0;
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
}
.lightbox-close {
  position: absolute; top: 20px; right: 40px; color: #f1f1f1;
  font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer;
  z-index: 2001;
}
.lightbox-close:hover { color: var(--gold); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
