/* ===== VARIABLES ===== */
:root {
  --gold: #C4848E;
  --gold-light: #D9A8B0;
  --dark: #0e0e0e;
  --dark-2: #161616;
  --dark-3: #1e1e1e;
  --white: #ffffff;
  --gray: #888;
  --gray-light: #bbb;
  --radius: 8px;
  --max-w: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--dark { background: var(--dark-2); }
.center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

/* ===== HEADER / NAV ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
#header.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.nav {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo img { height: 52px; width: auto; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.nav-links li a {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--gray-light);
  transition: color 0.2s;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--white); }
.btn-nav {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  font-weight: 700 !important;
}
.btn-nav:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 100%);
}
#heroParticles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
}
.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-light);
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gray);
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollline 1.8s ease-in-out infinite;
}
@keyframes scrollline { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--dark-2);
  text-align: left;
}
.page-hero--img {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 380px;
  display: flex; align-items: flex-end;
  padding-bottom: 60px;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 100%);
}
.page-hero h1 { color: var(--white); }

/* ===== ANIMATION ===== */
.anim-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.anim-item.visible { opacity: 1; transform: none; }

/* ===== FEATURES / USP GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.feature-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { color: var(--white); margin-bottom: 10px; }
.feature-card p { color: var(--gray-light); font-size: 0.95rem; line-height: 1.7; }

/* ===== WORKSHOP INCLUDES ===== */
.include-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.include-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
}
.include-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  width: 32px;
}
.include-text strong { display: block; color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.include-text span { color: var(--gray-light); font-size: 0.88rem; }

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 48px;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-grid .gallery-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ===== SPLIT SECTION ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.split--reverse .split-img { order: 2; }
.split--reverse .split-content { order: 1; }
.split-img { overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-content {
  background: var(--dark-2);
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.split-content h2 { margin-bottom: 20px; }
.split-content p { color: var(--gray-light); line-height: 1.8; margin-bottom: 14px; }
.split-content .btn { margin-top: 12px; align-self: flex-start; }

/* ===== STATS ===== */
.stats { background: var(--gold); padding: 56px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(14,14,14,0.75);
  margin-top: 6px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-img img {
  width: 100%; border-radius: var(--radius);
  object-fit: cover; aspect-ratio: 3/4;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--gray-light); line-height: 1.8; margin-bottom: 16px; }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 32px;
}
.highlight {
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
}
.highlight strong { display: block; font-size: 1.3rem; color: var(--gold); font-family: 'Playfair Display', serif; }
.highlight span { font-size: 0.85rem; color: var(--gray-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-top: 56px;
}
.testimonial {
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 3px solid var(--gold);
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial p { color: var(--gray-light); font-style: italic; line-height: 1.7; margin-bottom: 18px; }
.testimonial-author { font-weight: 600; font-size: 0.9rem; color: var(--white); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--gray-light); max-width: 560px; margin: 0 auto 40px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 64px; align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.contact-item p, .contact-item a { color: var(--gray-light); font-size: 0.95rem; }
.contact-item a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; color: var(--gray-light); font-weight: 500; }
.form-group input, .form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ===== PREMIUM WORKSHOP ===== */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; margin-top: 48px;
}
.premium-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 3px solid var(--gold);
}
.premium-card h3 { color: var(--gold); margin-bottom: 12px; }
.premium-card p { color: var(--gray-light); font-size: 0.95rem; line-height: 1.7; }

/* ===== LEGAL ===== */
.legal-content {
  max-width: 800px; margin: 0 auto;
}
.legal-content h2 { margin: 40px 0 16px; font-size: 1.4rem; }
.legal-content h3 { margin: 28px 0 10px; font-size: 1.1rem; color: var(--gray-light); }
.legal-content p { color: var(--gray-light); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { color: var(--gray-light); margin-bottom: 6px; list-style: disc; }

/* ===== FOOTER ===== */
.footer { background: #080808; padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { color: var(--gray); font-size: 0.9rem; margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer-links h4 { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 18px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a { color: var(--gray-light); font-size: 0.9rem; transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: var(--gray); }
.powered-by { font-size: 0.78rem !important; color: var(--gray) !important; }
.powered-by a { color: var(--gold); font-weight: 600; }
.powered-by a:hover { color: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-img { order: 0; }
  .split--reverse .split-content { order: 0; }
  .split-content { padding: 48px 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-large { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed; inset: 76px 0 0 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column; gap: 0;
    padding: 24px 0; overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 16px 32px; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .btn-nav { margin: 16px 32px 0; display: inline-block; text-align: center; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-large { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}

/* ===========================
   POPUP
   =========================== */
.bm-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bm-popup-overlay.open { opacity: 1; }
.bm-popup {
  position: relative;
  background: var(--white);
  border-radius: 10px;
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.92) translateY(10px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.bm-popup-overlay.open .bm-popup { transform: scale(1) translateY(0); }
.bm-popup img { width: 100%; height: auto; display: block; }
.bm-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  color: #1a1a2e;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 1;
}
.bm-popup-close:hover { background: var(--gold); color: var(--white); transform: rotate(90deg); }
