/* ============================================================
   A HOT PARTY — components.css
   Buttons · Cards · Forms · Reviews · Stats · Footer
   ============================================================ */

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .95rem 2.4rem;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-smooth), box-shadow var(--t-smooth);
  text-decoration: none;
  white-space: nowrap;
}
.btn i { font-size: .9rem; }

/* Shimmer overlay on hover */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(255,255,255,.2),transparent);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn:hover::before { opacity: 1; }

/* Primary — Gold */
.btn-primary {
  background: var(--grad-gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(212,175,55,.4);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(212,175,55,.6);
  color: var(--black);
}

/* Secondary — Red */
.btn-secondary {
  background: var(--grad-red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,30,58,.3);
}
.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(196,30,58,.5);
}

/* Outline — Gold */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--sh-gold);
}

/* Outline White */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Sizes */
.btn-sm  { padding: .6rem 1.4rem; font-size: .72rem; }
.btn-lg  { padding: 1.15rem 3rem;  font-size: .85rem; }
.btn-xl  { padding: 1.3rem 3.5rem; font-size: .9rem;  }
.btn-full { width: 100%; }

/* ── Stat Cards ────────────────────────────────────────────── */
.stats-section {
  padding: 4rem 0;
  background: var(--dark);
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.stat-card {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--r-lg);
  background: var(--grad-card);
  transition: transform var(--t-smooth), border-color var(--t-smooth), box-shadow var(--t-smooth);
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.4);
  box-shadow: var(--sh-gold);
}
.stat-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem,4vw,3.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: .5rem;
  display: block;
}
.stat-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Service Cards (3D) ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform .55s cubic-bezier(.4,0,.2,1), box-shadow .55s ease;
}
.service-card:hover {
  transform: rotateY(4deg) rotateX(-2deg) translateZ(15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,.8), var(--sh-gold);
}
.service-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.service-card:hover .service-card-bg { transform: scale(1.08); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
}
.service-card-body {
  position: relative; z-index: 2;
  padding: 2rem;
}
.service-card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--r-md);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transform: translateZ(30px);
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: .5rem;
  color: var(--white);
}
.service-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* ── Performer Cards ───────────────────────────────────────── */
.performer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 1.5rem;
}
.performer-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.performer-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.performer-card:hover img { transform: scale(1.1); }
.performer-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 60%);
  opacity: .7;
  transition: opacity .3s ease;
}
.performer-card:hover .performer-card-overlay { opacity: 1; }
.performer-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  transform: translateY(10px);
  transition: transform .3s ease;
}
.performer-card:hover .performer-card-info { transform: translateY(0); }
.performer-card h3 {
  font-size: 1rem;
  margin-bottom: .3rem;
  color: var(--white);
}

/* ── Theme Cards ───────────────────────────────────────────── */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1.5rem;
}
.theme-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.theme-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.theme-card:hover img { transform: scale(1.1); }
.theme-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.1) 60%);
  transition: background .3s ease;
}
.theme-card:hover .theme-card-overlay {
  background: linear-gradient(to top, rgba(139,0,0,.9) 0%, rgba(0,0,0,.5) 100%);
}
.theme-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.theme-card h3 { font-size: 1rem; margin-bottom: .25rem; color: var(--white); }

/* ── Review Cards ──────────────────────────────────────────── */
.reviews-grid {
  columns: 3;
  column-gap: 1.5rem;
}
.review-card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  padding: 1.75rem;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--t-smooth), border-color var(--t-smooth);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,.2);
}
.review-stars {
  display: flex; gap: .2rem;
  margin-bottom: .75rem;
  color: #FFD700;
  font-size: .9rem;
}
.review-text {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--black);
  flex-shrink: 0;
}
.review-name  { font-size: .85rem; font-weight: 600; color: var(--white); display: block; }
.review-date  { font-size: .75rem; color: var(--muted); }
.review-category-tag {
  margin-top: .75rem;
}

/* Google badge */
.google-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.google-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.google-logo span:nth-child(1) { color: #4285F4; }
.google-logo span:nth-child(2) { color: #EA4335; }
.google-logo span:nth-child(3) { color: #FBBC05; }
.google-logo span:nth-child(4) { color: #4285F4; }
.google-logo span:nth-child(5) { color: #34A853; }
.google-logo span:nth-child(6) { color: #EA4335; }
.google-rating {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
}
.google-stars { display: flex; gap: .2rem; color: #FFD700; font-size: 1.1rem; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: -10%;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.82);
}
.cta-banner-content {
  position: relative; z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-family: var(--font-accent);
  font-size: clamp(1.4rem,3vw,2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.cta-banner h2 a { color: var(--gold); text-decoration: none; }
.cta-banner p { color: var(--muted); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Award Items ───────────────────────────────────────────── */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.award-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--r-lg);
  background: var(--grad-card);
  transition: transform var(--t-smooth), border-color var(--t-smooth), box-shadow var(--t-smooth);
}
.award-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,.4);
  box-shadow: var(--sh-gold);
}
.award-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.award-item h3 {
  font-size: 1rem;
  margin-bottom: .4rem;
  color: var(--white);
}
.award-item p {
  font-size: .8rem;
  color: var(--muted);
}

/* ── Team Cards ────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
}
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--t-smooth), border-color var(--t-smooth);
}
.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,.3);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: var(--r-full);
  background: var(--grad-red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1rem;
  border: 2px solid rgba(212,175,55,.3);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.team-card h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.team-card p  { font-size: .8rem; color: var(--gold); font-weight: 500; }

/* ── Decor Cards ───────────────────────────────────────────── */
.decor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 1.5rem;
}
.decor-card {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--t-smooth), border-color var(--t-smooth);
}
.decor-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,.4);
  box-shadow: var(--sh-gold);
}
.decor-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.decor-card h3 { font-size: .95rem; margin-bottom: .5rem; }
.decor-card p  { font-size: .82rem; color: var(--muted); line-height: 1.65; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-control {
  width: 100%;
  padding: .9rem 1.2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
  -webkit-appearance: none;
}
.form-control::placeholder { color: var(--muted-dark); }
.form-control:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}
.form-control:hover { border-color: rgba(255,255,255,.2); }

select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-grid .full-width { grid-column: 1 / -1; }

.form-disclaimer {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
  margin-top: .75rem;
}
.form-submit-wrap { text-align: center; margin-top: 2rem; }

/* ── Blog Cards ────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-smooth), border-color var(--t-smooth);
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,.25);
}
.blog-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-category {
  position: absolute;
  top: .75rem; left: .75rem;
}
.blog-card-content { padding: 1.5rem; }
.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: .75rem;
}
.blog-card h2 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--white);
  line-height: 1.4;
}
.blog-card p {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-category { margin-bottom: 2.5rem; }
.faq-category-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(212,175,55,.2);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--t-fast);
}
.faq-question:hover, .faq-item.active .faq-question { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,175,55,.1);
  border-radius: var(--r-full);
  color: var(--gold);
  font-size: .8rem;
  transition: transform .35s ease, background var(--t-fast);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--black);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, padding .3s ease;
}
.faq-item.active .faq-answer { max-height: 500px; padding-bottom: 1.5rem; }
.faq-answer p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── Video Section ─────────────────────────────────────────── */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
  box-shadow: var(--sh-deep);
}
.video-wrapper iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80px; height: 80px;
  background: var(--grad-gold);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 1.8rem;
  box-shadow: 0 0 50px rgba(212,175,55,.5);
  transition: transform var(--t-smooth), box-shadow var(--t-smooth);
  z-index: 2;
  border: none;
  cursor: pointer;
  pointer-events: none;
}
.video-wrapper:hover .video-play-btn {
  transform: translate(-50%,-50%) scale(1.1);
  box-shadow: var(--sh-gold);
}
.video-wrapper.loaded .video-poster,
.video-wrapper.loaded .video-play-btn,
.video-wrapper.loaded .video-label { display: none; }

/* ── Hero background video ─────────────────────────────────── */
/* The shared .overlay-hero scrim is tuned for still photos. Behind moving
   footage it buries the video, so the homepage hero gets a lighter one:
   dark at the top for the nav, dark at the bottom for the scroll cue, and
   only a soft pool behind the headline. The hero type carries its own
   text-shadow, which is what makes this much scrim enough. */
.hero > .overlay-hero {
  background:
    radial-gradient(ellipse 68% 56% at 50% 46%,
      rgba(6,6,6,.60) 0%, rgba(6,6,6,.40) 58%, rgba(6,6,6,.16) 100%),
    linear-gradient(180deg,
      rgba(10,10,10,.85) 0%, rgba(10,10,10,.28) 28%,
      rgba(10,10,10,.30) 68%, rgba(10,10,10,.88) 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;                       /* revealed once it can actually play */
  transition: opacity 1.1s ease;
  pointer-events: none;
  z-index: 0;
}
.hero-video.playing { opacity: 1; }

/* WCAG 2.2.2 — anything moving for more than five seconds needs a pause. */
.hero-video-toggle {
  position: absolute;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 3;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.hero-video-toggle:hover {
  background: rgba(10,10,10,.8);
  border-color: var(--gold);
  color: var(--gold);
}
@media (max-width: 768px) {
  .hero-video-toggle { bottom: 1rem; right: 1rem; width: 38px; height: 38px; }
}

/* ── Video grid (theme + variety act reels) ────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  text-align: left;
}
.video-grid .video-wrapper {
  box-shadow: var(--sh-card);
  border: 1px solid var(--border);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.video-grid .video-wrapper:hover {
  border-color: rgba(212,175,55,.45);
  box-shadow: var(--sh-gold);
}
.video-grid .video-play-btn { width: 54px; height: 54px; font-size: 1.05rem; }

.video-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.25rem .9rem .8rem;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}

/* ── Sticky Mobile CTA ─────────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  box-shadow: 0 -4px 20px rgba(0,0,0,.5);
}
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: filter var(--t-fast);
}
.sticky-btn:hover { filter: brightness(1.1); }
.sticky-btn i { font-size: 1.1rem; }
.sticky-call      { background: var(--red); color: var(--white); }
.sticky-whatsapp  { background: #25D366;    color: var(--white); }

/* ── Gallery Grid ──────────────────────────────────────────── */
.gallery-grid {
  columns: 4;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--t-smooth);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 1.5rem; color: var(--gold); }

/* ── Lightbox ──────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 2rem;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: var(--sh-deep);
  transform: scale(.93);
  transition: transform .35s ease;
}
.lightbox-overlay.active .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.lightbox-close:hover { background: var(--red); color: var(--white); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.lightbox-nav:hover { background: var(--gold); color: var(--black); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ── Site Footer ───────────────────────────────────────────── */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  position: relative;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
}
.footer-logo { height: 55px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  color: var(--muted);
  font-size: .9rem;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,175,55,.06);
}
.footer-heading {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a {
  font-size: .85rem;
  color: var(--muted);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer-col ul a:hover { color: var(--text); padding-left: 4px; }
.footer-contact p {
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; color: var(--muted);
  margin-bottom: .6rem;
}
.footer-contact p i { color: var(--gold); width: 16px; text-align: center; }
.footer-contact a { color: var(--muted); transition: color var(--t-fast); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.footer-awards {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  font-size: .72rem; color: var(--muted-dark);
}
.footer-awards span { display: flex; align-items: center; gap: .3rem; }
.footer-copy  { font-size: .78rem; color: var(--muted-dark); }
.footer-credit {
  font-size: .78rem;
  color: var(--muted-dark);
  text-align: right;
}
.footer-credit strong { color: var(--gold); }

/* Filter tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-tab {
  padding: .55rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-fast);
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active {
  background: var(--grad-gold);
  border-color: transparent;
  color: var(--black);
}

/* Map wrapper */
.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-deep);
}
.map-wrapper iframe { display: block; }
