/* ============================================================
   V7 Events & Productions — Luxury Dark + Gold Theme
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --bg-deep: #050505;
  --surface: #121212;
  --fg: #FAFAFA;
  --muted: #A1A1AA;
  --gold: #D4AF37;
  --gold-light: #FCF6BA;
  --gold-dark: #B38728;
  --gold-deeper: #AA771C;
  --gold-border: rgba(212, 175, 55, 0.4);
  --border: rgba(255, 255, 255, 0.08);
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #B38728 100%);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: rgba(212, 175, 55, 0.3); color: #fff; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #B38728, #D4AF37); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #D4AF37; }

/* Shared helpers */
.italic { font-style: italic; }
.gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.divider-gold {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
  margin: 2rem 0;
}
.divider-gold.short { width: 90px; }
.divider-gold.center { width: 90px; margin: 1.5rem auto 0; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.glass {
  background: rgba(18, 18, 18, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
}
.glass-subtle {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-gradient);
  background-size: 200% 200%;
  color: #0A0A0A;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 999px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-gold:hover {
  background-position: 100% 100%;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.45), 0 0 60px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-150%);
  transition: transform 0.9s ease;
}
.btn-gold:hover::after { transform: translateX(150%); }

.btn-ghost {
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  transition: all 0.5s var(--ease);
}
.btn-ghost:hover { border-color: var(--gold); color: #fff; }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold-gradient);
  z-index: 100;
  transition: width 0.1s linear;
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 0;
  transition: all 0.5s var(--ease);
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 12px 0;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-logo {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(212,175,55,0.35);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.9);
}
.brand-tagline {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}
@media (min-width: 640px) { .brand-text { display: flex; } }

.nav-links { display: none; gap: 40px; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative;
  transition: color 0.5s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: none; padding: 10px 24px; font-size: 11px; }

@media (min-width: 1024px) {
  .nav-links, .nav-cta { display: flex; }
  .menu-toggle { display: none; }
}

.menu-toggle { display: flex; padding: 8px; color: #fff; }
.menu-toggle svg { width: 22px; height: 22px; }
.menu-toggle .icon-close { display: none; }
.navbar.open .menu-toggle .icon-menu { display: none; }
.navbar.open .menu-toggle .icon-close { display: block; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta { margin-top: 8px; }
.navbar.open .mobile-menu { display: flex; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(3px);
  transform: scale(1.1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.92) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.95) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(212,175,55,0.8) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 24px;
}
.hero-title .italic { font-weight: 500; }
.hero-sub {
  font-size: clamp(12px, 2vw, 15px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.hero-sub .dot { color: var(--gold); margin: 0 6px; }
.hero-ctas {
  margin-top: 48px;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-bob 2s infinite ease-in-out;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  position: relative;
  padding: 96px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .section { padding: 144px 64px; }
}
.section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(32px, 5.5vw, 60px);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.01em;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.section-head .eyebrow { display: block; margin-bottom: 20px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { overflow: hidden; }
.about::before {
  content: '';
  position: absolute;
  top: 50%; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(212,175,55,0.05);
  filter: blur(120px);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 96px; }
}
.about-media { position: relative; }
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.05); }
.about-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.6), transparent);
}
.about-frame {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 66%; height: 66%;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 16px;
  z-index: -1;
}
@media (max-width: 767px) { .about-frame { display: none; } }
.about-corner {
  position: absolute;
  top: -24px; left: -24px;
  width: 96px; height: 96px;
  border-top: 1px solid rgba(212,175,55,0.6);
  border-left: 1px solid rgba(212,175,55,0.6);
  border-top-left-radius: 16px;
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: 32px; left: 32px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  border-radius: 12px;
}
.badge-logo {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.badge-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.badge-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: #fff;
}
.about-text { display: flex; flex-direction: column; gap: 24px; }
.about-text p { color: rgba(255,255,255,0.7); font-weight: 300; font-size: 16px; }
@media (min-width: 768px) { .about-text p { font-size: 17px; } }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.stat {
  text-align: center;
  padding: 18px 10px;
  border-radius: 12px;
}
.stat svg { width: 20px; height: 20px; color: var(--gold); margin: 0 auto 8px; display: block; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 4vw, 30px);
  color: #fff;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: linear-gradient(180deg, #0A0A0A 0%, #0d0d0d 50%, #0A0A0A 100%);
  max-width: none;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  position: relative;
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 36px;
  min-height: 280px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.7s var(--ease);
}
.service-card::before, .service-card::after {
  content: '';
  position: absolute;
  height: 1px;
  background: var(--gold);
  width: 48px;
  transition: width 0.7s var(--ease);
}
.service-card::before { top: 0; left: 0; }
.service-card::after { bottom: 0; right: 0; transition-delay: 0.1s; }
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 0 40px rgba(212,175,55,0.18);
}
.service-card:hover::before,
.service-card:hover::after { width: 100%; }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), transparent);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.7s var(--ease);
}
.service-icon svg { width: 24px; height: 24px; color: var(--gold); }
.service-card:hover .service-icon { transform: scale(1.1) rotate(-4deg); }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
  transition: color 0.5s;
}
.service-card:hover h3 { color: var(--gold); }
.service-card p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  flex-grow: 1;
}
.service-cta {
  display: block;
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s var(--ease);
}
.service-card:hover .service-cta { opacity: 1; transform: translateY(0); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .portfolio-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.portfolio-head .eyebrow { display: block; margin-bottom: 16px; }
.portfolio-intro {
  max-width: 400px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}
.gallery {
  column-count: 1;
  column-gap: 20px;
}
@media (min-width: 640px) { .gallery { column-count: 2; } }
@media (min-width: 1024px) { .gallery { column-count: 3; } }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  break-inside: avoid;
  margin-bottom: 20px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 1.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item figcaption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
  opacity: 0.6;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: opacity 0.7s var(--ease);
  transform: translateY(8px);
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery-item .cat {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.gallery-item h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 22px;
  color: #fff;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { overflow: hidden; }
.testimonials::before {
  content: '';
  position: absolute;
  top: 50%; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(212,175,55,0.04);
  filter: blur(140px);
  pointer-events: none;
}
.testimonial-wrap {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-wrap .quote {
  width: 48px; height: 48px;
  color: rgba(212,175,55,0.3);
  margin: 0 auto 32px;
  display: block;
}
.testimonial-card {
  border-radius: 16px;
  padding: 40px 32px;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
@media (min-width: 768px) { .testimonial-card { padding: 56px 48px; } }
.testimonial-card.fade-out { opacity: 0; transform: translateY(20px); }
.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(18px, 2.6vw, 28px);
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}
.testimonial-meta { margin-top: 32px; display: flex; flex-direction: column; gap: 4px; }
.t-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff;
}
.t-role {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.t-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.5s var(--ease);
}
.t-btn:hover { border-color: var(--gold); color: var(--gold); }
.t-btn svg { width: 18px; height: 18px; }
.dots { display: flex; align-items: center; gap: 8px; }
.dots button {
  height: 2px;
  width: 16px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  transition: all 0.5s var(--ease);
}
.dots button.active { width: 40px; background: var(--gold); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: linear-gradient(180deg, #0A0A0A 0%, #050505 100%);
  max-width: none;
}
.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; gap: 48px; } }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  transition: border-color 0.5s;
}
.info-item:hover { border-color: rgba(212,175,55,0.4); }
.info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.5s;
}
.info-icon svg { width: 16px; height: 16px; color: var(--gold); }
.info-item:hover .info-icon { background: rgba(212,175,55,0.2); }
.info-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.info-value {
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
  word-break: break-word;
}
.info-item:hover .info-value { color: var(--gold); }

.map-wrap {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  margin-top: 8px;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.25);
  opacity: 0.85;
  transition: opacity 0.7s;
}
.map-wrap:hover iframe { opacity: 1; }

.contact-form {
  border-radius: 16px;
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) { .contact-form { padding: 40px; } }
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 26px;
  color: #fff;
}
.form-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-top: -12px;
}
.contact-form label {
  display: block;
}
.contact-form label span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: inherit;
  font-weight: 300;
  font-size: 14px;
  transition: all 0.3s;
  outline: none;
  resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.5);
  background: rgba(255,255,255,0.07);
}
.submit {
  width: 100%;
  padding: 16px;
  font-size: 13px;
}
.submit svg { width: 16px; height: 16px; }
.form-footnote {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form-footnote a { color: var(--gold); }
.form-footnote a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 24px 40px;
}
@media (min-width: 1024px) { .footer { padding: 64px 96px 40px; } }
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand .brand-text { display: flex; }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 20px;
}
.social { display: flex; gap: 12px; }
.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: rgba(255,255,255,0.7);
  transition: all 0.5s var(--ease);
}
.social a svg { width: 16px; height: 16px; }
.social a:hover { border-color: var(--gold); color: var(--gold); }
.social a.wa-ic:hover { border-color: #25D366; color: #25D366; }

.footer-col .col-head {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col li, .footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column; gap: 8px;
  align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .crafted {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 55;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(37,211,102,0.5);
  transition: transform 0.3s;
  animation: wa-pulse 2.4s infinite;
}
@media (min-width: 768px) {
  .whatsapp-float { bottom: 32px; right: 32px; width: 64px; height: 64px; }
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; }
@media (min-width: 768px) { .whatsapp-float svg { width: 32px; height: 32px; } }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 0 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 0 30px rgba(37,211,102,0.5); }
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE + FIXES ===== */

.brand-text {
  display: inline-block !important;
}

.brand-tagline {
  display: inline-block !important;
}

section {
  background: #121212;
  border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 768px) {

  .brand-text {
    font-size: 12px;
  }

  .brand-tagline {
    font-size: 11px;
    opacity: 0.8;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 14px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 80px 20px;
    text-align: center;
  }
}
