/* ============================================
   ABOUT, SERVICES, GALLERY, TESTIMONIALS
   ============================================ */

/* --- About --- */
#about { background: var(--dark); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-image-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
}
.about-image-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark3) 0%, #2a1a00 50%, var(--dark3) 100%);
}
.about-frame {
  position: absolute; inset: 16px;
  border: 1px solid var(--glass-border);
}
.about-initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 80px;
  color: rgba(201,168,76,0.15); letter-spacing: 0.1em;
}
.about-badge-img {
  position: absolute; bottom: 24px; right: -24px;
  background: var(--gold); color: var(--black);
  padding: 20px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600; line-height: 1;
}
.about-badge-img small {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 9px; letter-spacing: 0.2em; font-weight: 400;
  text-transform: uppercase; margin-top: 4px;
}
.about-text p {
  color: rgba(245,240,232,0.65); font-size: 15px;
  line-height: 1.85; margin-bottom: 20px;
}
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic; color: var(--gold);
  border-left: 2px solid var(--gold-dark);
  padding-left: 20px; margin: 32px 0; line-height: 1.6;
}
.about-stats { display: flex; gap: 40px; margin-top: 40px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted); margin-top: 6px;
}

/* --- Services --- */
#services { background: var(--black); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 60px; max-width: 1200px;
}
.service-card {
  background: var(--dark2); padding: 48px 36px;
  position: relative; overflow: hidden;
  transition: all 0.4s ease; border: 1px solid transparent;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { border-color: var(--glass-border); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; color: rgba(201,168,76,0.1);
  position: absolute; top: 20px; right: 24px;
  font-weight: 300; line-height: 1;
}
.service-icon { width: 48px; height: 48px; margin-bottom: 24px; }
.service-icon::before { content: attr(data-icon); font-size: 28px; line-height: 1; }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; color: var(--white); margin-bottom: 12px;
}
.service-desc { font-size: 13px; color: rgba(245,240,232,0.5); line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; margin-top: 24px; transition: gap 0.3s;
}
.service-link:hover { gap: 14px; }
.service-link::after { content: '→'; }

/* --- Gallery --- */
#gallery { background: var(--dark); }

.gallery-filter {
  display: flex; gap: 8px; margin: 40px 0 48px; flex-wrap: wrap;
}
.filter-btn {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 8px 20px; border: 1px solid rgba(255,255,255,0.1);
  background: transparent; color: rgba(245,240,232,0.5);
  cursor: pointer; transition: all 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.masonry-grid { columns: 3; column-gap: 12px; max-width: 1200px; }

.gallery-item {
  break-inside: avoid; margin-bottom: 12px;
  position: relative; overflow: hidden; cursor: pointer;
}
.gallery-placeholder {
  width: 100%; display: block; background: var(--dark3);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.gallery-inner-icon { font-size: 32px; opacity: 0.2; }
.gallery-category {
  font-size: 9px; letter-spacing: 0.4em;
  text-transform: uppercase; color: rgba(201,168,76,0.4);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,8,8,0.9) 100%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--white);
}

/* Gallery aspect ratios */
.gi-tall .gallery-placeholder  { aspect-ratio: 2/3; }
.gi-wide .gallery-placeholder  { aspect-ratio: 4/3; }
.gi-sq   .gallery-placeholder  { aspect-ratio: 1/1; }
.gi-port .gallery-placeholder  { aspect-ratio: 3/4; }
.gi-land .gallery-placeholder  { aspect-ratio: 16/9; }

/* Gallery color themes */
.gal-1 .gallery-placeholder { background: linear-gradient(135deg, #1a1200 0%, #2d2000 100%); }
.gal-2 .gallery-placeholder { background: linear-gradient(135deg, #0d0d1a 0%, #1a1030 100%); }
.gal-3 .gallery-placeholder { background: linear-gradient(135deg, #0a1a0a 0%, #1a3020 100%); }
.gal-4 .gallery-placeholder { background: linear-gradient(135deg, #1a0a0a 0%, #301520 100%); }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 5000; display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(20px);
}
#lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 28px; color: var(--white); cursor: pointer;
  font-weight: 300; z-index: 1; transition: color 0.3s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-content {
  max-width: 80vw; max-height: 80vh;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lightbox-img-area {
  width: 500px; height: 400px;
  background: var(--dark3); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.lightbox-img-icon { font-size: 48px; opacity: 0.2; }
.lightbox-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; color: var(--gold); text-align: center;
}

/* --- Testimonials --- */
#testimonials { background: var(--black); overflow: hidden; }

.testimonials-track-wrap { overflow: hidden; margin-top: 60px; }
.testimonials-track {
  display: flex; gap: 24px;
  animation: scrollTrack 30s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testi-card {
  min-width: 380px; background: var(--dark2);
  border: 1px solid var(--glass-border);
  padding: 36px; position: relative; flex-shrink: 0;
  backdrop-filter: blur(10px);
}
.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; color: rgba(201,168,76,0.1);
  line-height: 1; position: absolute; top: 12px; right: 24px;
}
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic;
  color: rgba(245,240,232,0.85); line-height: 1.7; margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; color: var(--black); flex-shrink: 0;
}
.testi-name  { font-size: 14px; font-weight: 500; }
.testi-event { font-size: 11px; color: var(--gold); letter-spacing: 0.1em; }
.testi-stars { color: var(--gold); font-size: 12px; margin-bottom: 6px; }
