/* ============================================
   GRAMY EVENTS — Dark Luxury Theme
   ============================================ */
:root {
  --bg: #0c0a0e;
  --bg-2: #14111a;
  --bg-3: #1c1824;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f2eee9;
  --text-dim: #a89f96;
  --gold: #c9a227;
  --gold-light: #e8c766;
  --red: #c1121f;
  --red-bright: #e5383b;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
  --font-script: "Great Vibes", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}

.section-title { font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 18px; }
.section-title em { font-style: italic; color: var(--gold-light); }
.section-sub { color: var(--text-dim); max-width: 640px; font-size: 18px; }

section { padding: 100px 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: rgba(12, 10, 14, 0.92);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  height: 48px;
  width: auto;
  transition: height 0.35s ease;
}
.site-header.scrolled .brand-logo { height: 40px; }
.footer-brand .brand-logo { height: 56px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 8px 16px;
  font-size: 13.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  transition: color 0.25s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 13.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a8841c);
  color: #14110a;
  font-weight: 600;
}
.btn-gold:hover { box-shadow: 0 10px 34px rgba(201, 162, 39, 0.35); transform: translateY(-2px); }
.btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-sm { padding: 10px 24px; font-size: 12px; }

.nav-cta { flex-shrink: 0; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none; border: none;
  width: 42px; height: 42px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: 1100;
}
.nav-toggle span {
  display: block; height: 2px; width: 26px;
  margin: 0 auto;
  background: var(--text);
  transition: 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(12, 10, 14, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 18px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(193, 18, 31, 0.16), transparent 60%),
    radial-gradient(ellipse 70% 55% at 20% 85%, rgba(201, 162, 39, 0.12), transparent 60%),
    linear-gradient(160deg, #16121d 0%, #0c0a0e 55%, #120d14 100%);
}
.hero-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12,10,14,0.55) 0%, rgba(12,10,14,0.35) 45%, var(--bg) 100%);
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 26px);
  letter-spacing: 1.5px;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(42px, 6.5vw, 84px);
  max-width: 900px;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p.lead {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Impact stats ---------- */
.impact { padding: 0; margin-top: -40px; position: relative; z-index: 5; }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  background: rgba(20, 17, 26, 0.85);
  backdrop-filter: blur(10px);
}
.impact-item {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.impact-item:last-child { border-right: none; }
.impact-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  color: var(--gold-light);
  display: block;
}
.impact-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
  display: block;
}
@media (max-width: 720px) {
  .impact-grid { grid-template-columns: 1fr; }
  .impact-item { border-right: none; border-bottom: 1px solid var(--border); }
  .impact-item:last-child { border-bottom: none; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 200px 0 110px;
  background:
    radial-gradient(ellipse 70% 80% at 80% 0%, rgba(193, 18, 31, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 70% at 10% 100%, rgba(201, 162, 39, 0.1), transparent 60%),
    var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(38px, 5.5vw, 68px); }
.breadcrumb {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold); margin: 0 8px; }

/* ---------- Cards / Services ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  margin-top: 60px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 42px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(201, 162, 39, 0.4); background: rgba(255,255,255,0.06); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  font-size: 34px;
  margin-bottom: 20px;
  width: 66px; height: 66px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.07);
}
.card h3 { font-size: 24px; margin-bottom: 14px; }
.card ul { margin-top: 10px; }
.card ul li {
  padding: 7px 0 7px 24px;
  color: var(--text-dim);
  position: relative;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
  font-size: 15.5px;
}
.card ul li:last-child { border-bottom: none; }
.card ul li::before {
  content: "◆";
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 9px;
  top: 12px;
}

/* ---------- About blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 40px; } }

.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(193, 18, 31, 0.35), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(201, 162, 39, 0.3), transparent 55%),
    linear-gradient(150deg, #221b2e, #120e17);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  overflow: hidden;
}
.about-visual > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  pointer-events: none;
}
.about-visual .mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.4;
  color: rgba(242, 238, 233, 0.9);
  text-align: center;
  padding: 0 30px;
}

.feature-list { margin-top: 34px; display: grid; gap: 22px; }
.feature-list .feat { display: flex; gap: 18px; align-items: flex-start; }
.feat-ico {
  width: 46px; height: 46px; flex-shrink: 0;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-light);
  font-size: 18px;
}
.feat h4 { font-family: var(--font-body); font-weight: 600; letter-spacing: 1px; margin-bottom: 4px; }
.feat p { color: var(--text-dim); font-size: 15.5px; }

/* ---------- Portfolio ---------- */
.tabs { display: flex; gap: 14px; margin: 50px 0 40px; flex-wrap: wrap; }
.tab-btn {
  padding: 12px 38px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-btn.active, .tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.08);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
}
.gallery-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 19px;
  color: rgba(242, 238, 233, 0.75);
  text-align: center;
  padding: 20px;
  transition: transform 0.5s ease;
}
.gallery-item:hover .ph { transform: scale(1.06); }
.gallery-item .tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.g1 { background: linear-gradient(135deg, #3d1220, #17090e); }
.g2 { background: linear-gradient(135deg, #2c2410, #120e06); }
.g3 { background: linear-gradient(135deg, #1c1430, #0d0a16); }
.g4 { background: linear-gradient(135deg, #10262c, #071114); }
.g5 { background: linear-gradient(135deg, #301a10, #140b07); }
.g6 { background: linear-gradient(135deg, #26102e, #100714); }
.play-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.35);
  display: grid; place-items: center;
  color: var(--gold-light);
  font-size: 20px;
  transition: all 0.3s;
}
.gallery-item:hover .play-badge { background: rgba(201, 162, 39, 0.85); color: #14110a; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 60px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.info-block { display: flex; gap: 18px; margin-bottom: 30px; align-items: flex-start; }
.info-ico {
  width: 52px; height: 52px; flex-shrink: 0;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 20px;
  color: var(--gold-light);
}
.info-block h4 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.info-block p, .info-block a { font-size: 17px; color: var(--text); }
.info-block a:hover { color: var(--gold-light); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 46px 42px;
}
.contact-form h3 { font-size: 26px; margin-bottom: 28px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.map-frame {
  margin-top: 70px;
  border: 1px solid var(--border);
  filter: grayscale(1) invert(0.92) hue-rotate(180deg);
}
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  padding: 90px 0;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(193, 18, 31, 0.18), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-band h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.cta-band p { color: var(--text-dim); margin-bottom: 34px; max-width: 560px; margin-inline: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: #08070a;
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

.footer-brand p { color: var(--text-dim); font-size: 15px; margin-top: 16px; max-width: 320px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a, .footer-col p { color: var(--text-dim); font-size: 15.5px; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-light); }

.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all 0.3s;
}
.socials a:hover { border-color: var(--gold); background: rgba(201, 162, 39, 0.1); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: var(--text-dim); transition: fill 0.3s; }
.socials a:hover svg { fill: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--text-dim);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(8, 7, 10, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img, .lightbox video {
  max-width: 100%;
  max-height: 90vh;
  border: 1px solid var(--border);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
}
.lightbox-close {
  position: absolute;
  top: 22px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold-light); }

.lb-stage { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: min(1100px, 86vw); }
.lb-stage img { max-height: 78vh; }
.lb-stage figcaption {
  display: flex; gap: 18px; align-items: baseline;
  font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-dim);
}
.lb-stage .lb-title { color: var(--gold-light); }
.lb-nav {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 54px; height: 54px;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  margin: 0 18px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.lb-nav:hover { border-color: var(--gold); color: var(--gold-light); }
@media (max-width: 640px) {
  .lb-nav { position: absolute; bottom: 24px; margin: 0; }
  .lb-prev { left: calc(50% - 70px); }
  .lb-next { right: calc(50% - 70px); }
}

.album-cover .tag em.count { font-style: normal; color: var(--text-dim); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
