:root {
  --gold: #C9A84C;
  --gold-light: #F5D98A;
  --gold-dark: #7A5E1A;
  --black: #050505;
  --dark: #0A0A0A;
  --red: #8B0000;
  --red-bright: #CC1111;
  --white: #F0EDE6;
  --grey: #1A1A1A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  overflow-x: hidden;
  cursor: crosshair;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.18s ease;
  opacity: 0.6;
}

/* ===== NOISE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: linear-gradient(180deg, rgba(5,5,5,0.98) 0%, transparent 100%);
}
.nav-logo {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(201,168,76,0.5);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100% !important; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* ===== GALLERY HERO ===== */
.gallery-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.gallery-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(139,0,0,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.85) 100%);
  z-index: 1;
}
/* Kente diagonal pattern */
.gallery-hero-kente {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0, transparent 18px,
      rgba(201,168,76,0.04) 18px, rgba(201,168,76,0.04) 20px
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0, transparent 18px,
      rgba(139,0,0,0.03) 18px, rgba(139,0,0,0.03) 20px
    );
  z-index: 0;
}
.gallery-hero-content {
  position: relative;
  z-index: 2;
  padding: 180px 80px 80px;
}
.gallery-hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.gallery-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.gallery-hero-title {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.88;
  color: var(--white);
  text-shadow:
    3px 3px 0px var(--gold-dark),
    0 0 80px rgba(201,168,76,0.25),
    0 0 120px rgba(139,0,0,0.35);
  animation: flickerIn 1.2s ease forwards;
}
.gallery-hero-title span { color: var(--gold); }

@keyframes flickerIn {
  0%   { opacity:0; transform:translateY(30px); filter:blur(10px); }
  60%  { opacity:0.8; }
  70%  { opacity:0.6; }
  80%  { opacity:1; }
  100% { opacity:1; transform:translateY(0); filter:blur(0); }
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  position: relative;
  z-index: 5;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.marquee-inner span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 6px;
  color: var(--black);
  text-transform: uppercase;
  padding: 0 40px;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 90px 80px 120px;
  position: relative;
}
.gallery-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}
.gallery-section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.gallery-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 3px;
  line-height: 0.9;
  color: var(--white);
}
.gallery-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold);
  padding: 12px 28px;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.gallery-open-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.gallery-open-btn svg {
  width: 14px; height: 14px;
  fill: currentColor;
}

/* ===== PIXIESET EMBED WRAPPER ===== */
.pixieset-embed-wrapper {
  position: relative;
  width: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.05),
    0 40px 100px rgba(0,0,0,0.8);
  min-height: 700px;
}
.pixieset-embed-wrapper iframe {
  width: 100%;
  height: 800px;
  border: none;
  display: block;
}

/* Gold corner accents */
.pixieset-embed-wrapper::before,
.pixieset-embed-wrapper::after {
  content: '';
  position: absolute;
  width: 30px; height: 30px;
  z-index: 2;
  pointer-events: none;
}
.pixieset-embed-wrapper::before {
  top: 0; left: 0;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0.5;
}
.pixieset-embed-wrapper::after {
  bottom: 0; right: 0;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  opacity: 0.5;
}

/* Fallback message */
.embed-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  gap: 20px;
  min-height: 500px;
}
.embed-fallback.visible { display: flex; }
.embed-fallback-icon {
  font-size: 3rem;
  opacity: 0.4;
}
.embed-fallback-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--white);
}
.embed-fallback-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: rgba(240,237,230,0.4);
  max-width: 420px;
  line-height: 1.7;
}
.embed-fallback-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  transition: background 0.3s;
}
.embed-fallback-btn:hover { background: var(--gold-light); }

/* ===== DIVIDER ===== */
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0;
}

/* ===== FOOTER ===== */
footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 80px 60px;
  border-top: 1px solid rgba(201,168,76,0.1);
  background: #030303;
}
.footer-brand-name {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 2.5rem;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(201,168,76,0.3);
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 0.85rem;
  color: rgba(240,237,230,0.35);
  letter-spacing: 1px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240,237,230,0.5);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.07);
}
.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.8;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(240,237,230,0.4);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 0.85rem;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  border-top: 1px solid rgba(201,168,76,0.06);
  background: #030303;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: rgba(240,237,230,0.2);
  text-transform: uppercase;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 20px 28px; }
  .nav-links { gap: 20px; }
  .gallery-hero-content { padding: 130px 30px 60px; }
  .gallery-section { padding: 60px 28px 90px; }
  .gallery-section-header { flex-direction: column; align-items: flex-start; }
  .pixieset-embed-wrapper iframe { height: 600px; }
  footer { grid-template-columns: 1fr 1fr; padding: 60px 28px; gap: 40px; }
  .footer-bottom { padding: 20px 28px; flex-direction: column; }
}
@media (max-width: 600px) {
  .pixieset-embed-wrapper iframe { height: 480px; }
  footer { grid-template-columns: 1fr; }
}

/* ===== MOBILE HAMBURGER NAV ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(80vw, 320px);
    height: 100vh;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(201,168,76,0.12);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 60px 48px;
    list-style: none;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
  }
  .nav-links.open { right: 0; }

  .nav-links li { width: 100%; border-bottom: 1px solid rgba(201,168,76,0.07); }

  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 1.1rem;
    letter-spacing: 5px;
  }

  /* Overlay behind drawer */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1040;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .nav-overlay.open { display: block; }
}