/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --white: #ffffff;
  --gray: #888888;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

img { width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.section { padding: 100px 5%; }
.container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 80px; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; }
.section-header h2 span, h2 span { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 5%;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  padding: 14px 5%;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  position: relative;
}
.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%; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
              radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 60%);
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-sub {
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-name span { color: var(--gold); font-style: italic; }

.hero-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.hero-tagline {
  font-size: 0.8rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.btn-gold {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  z-index: -1;
}
.btn-gold:hover { color: var(--black); }
.btn-gold:hover::before { transform: scaleX(1); }

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
}
.hero-scroll-hint span {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ===== FADE ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.4s; }
.fade-up:nth-child(3) { animation-delay: 0.6s; }
.fade-up:nth-child(4) { animation-delay: 0.8s; }
.fade-up:nth-child(5) { animation-delay: 1s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ABOUT ===== */
.about { background: var(--dark); }
.about .container { flex-wrap: wrap; }

.about-img {
  flex: 1; min-width: 280px; max-width: 420px;
  position: relative;
}
.about-img img {
  height: 560px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
  transition: filter 0.4s;
}
.about-img:hover img { filter: grayscale(0%); }
.about-img-border {
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.4;
}

.about-text { flex: 1; min-width: 280px; }
.about-text h2 { font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; margin-bottom: 24px; }
.about-text p { color: rgba(255,255,255,0.65); line-height: 1.9; font-size: 0.9rem; margin-bottom: 16px; }

.about-stats { display: flex; gap: 40px; margin-top: 40px; }
.stat span { font-family: var(--font-serif); font-size: 2.5rem; color: var(--gold); display: block; }
.stat p { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

/* ===== PORTFOLIO GALLERY ===== */
.portfolio { background: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--gold);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 85vw; max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(201,168,76,0.2);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none; border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  font-size: 1rem;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--black); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ===== RUNWAY ===== */
.runway { background: var(--dark); overflow: hidden; }

.carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  height: 600px;
}
.carousel-slide img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}
.car-btn:hover { background: var(--gold); color: var(--black); }
.car-prev { left: 16px; }
.car-next { right: 16px; }

.carousel-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 24px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ===== FASHION ===== */
.fashion { background: var(--black); }

.fashion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.fashion-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.fashion-card img {
  height: 420px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.fashion-card:hover img { transform: scale(1.05); }

.fashion-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  transform: translateY(10px);
  transition: transform 0.3s;
}
.fashion-card:hover .fashion-info { transform: translateY(0); }
.fashion-info h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; }
.fashion-info p { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

/* ===== BOOKING ===== */
.booking {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
}

.booking-inner { max-width: 860px; margin: 0 auto; }

.booking-form {
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 10px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark2); }

.booking-form .btn-gold { align-self: flex-start; cursor: pointer; }

.form-success {
  display: none;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.form-success.show { display: block; }

/* ===== CONTACT ===== */
.contact { background: var(--dark); }

.contact-cards {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 40px 30px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.contact-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.contact-card i { font-size: 1.8rem; color: var(--gold); margin-bottom: 16px; }
.contact-card h4 { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-bottom: 10px; }
.contact-card a, .contact-card p { font-size: 0.9rem; color: rgba(255,255,255,0.8); word-break: break-all; }
.contact-card a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.1);
  text-align: center;
  padding: 60px 5% 40px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 300; letter-spacing: 4px; margin-bottom: 6px; }
.footer-tagline { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-bottom: 30px; }

.social-icons { display: flex; justify-content: center; gap: 16px; margin-bottom: 30px; }
.social-icons a {
  width: 42px; height: 42px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: all 0.3s;
}
.social-icons a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.footer-copy { font-size: 0.7rem; color: var(--gray); letter-spacing: 1px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.97); padding: 20px 5%; gap: 20px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .about .container { flex-direction: column; }
  .about-img { max-width: 100%; }
  .about-img img { height: 400px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-row: span 1; aspect-ratio: 3/4; }
  .form-row { grid-template-columns: 1fr; }
  .carousel-slide { height: 400px; }
}

@media (max-width: 560px) {
  .section { padding: 70px 5%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .fashion-grid { grid-template-columns: 1fr 1fr; }
  .fashion-card img { height: 280px; }
  .about-stats { gap: 20px; }
  .carousel-slide { height: 280px; }
}
