@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --amber: #D4A853;
  --amber-light: #E8C878;
  --amber-dark: #B8872E;
  --black: #0A0A0A;
  --black-light: #111111;
  --black-card: #161616;
  --black-border: #222222;
  --white: #F5F0E8;
  --gray: #777;
  --gray-light: #A0A0A0;
  --gradient: linear-gradient(135deg, var(--amber-dark), var(--amber), var(--amber-light));
  --gradient-dark: linear-gradient(135deg, #1a1a1a, #0d0d0d);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--amber) var(--black); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 2.5rem;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212,168,83,0.08);
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s ease;
}
.nav.scrolled { padding: 0.7rem 2.5rem; background: rgba(10,10,10,0.95); border-bottom-color: rgba(212,168,83,0.15); }
.nav-logo {
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.3rem;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--gray-light); text-decoration: none; font-size: 0.8rem;
  font-weight: 500; transition: color 0.3s; position: relative;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.nav-links a:hover { color: var(--amber); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--amber); transition: width 0.4s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-menu { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-menu span { width: 24px; height: 1.5px; background: var(--white); transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 0; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.3) contrast(1.1);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg img { transform: scale(1.12); }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 900px; padding: 2rem;
}
.hero-subtitle {
  font-family: 'Inter', sans-serif; font-size: 0.8rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.05;
  margin-bottom: 1.5rem; font-weight: 800;
}
.hero-content h1 span {
  display: block; font-style: italic; font-weight: 400;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-size: 0.6em;
}
.hero-line {
  width: 60px; height: 1px; background: var(--amber); margin: 2rem auto;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 1rem 2.5rem; border: 1px solid var(--amber);
  color: var(--amber); text-decoration: none; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  transition: all 0.4s ease; margin-top: 1rem;
}
.hero-cta:hover { background: var(--amber); color: var(--black); }
.hero-cta svg { width: 16px; height: 16px; fill: currentColor; transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }

/* ===== IG CARD (profile) ===== */
.ig-card {
  background: rgba(22,22,22,0.9); border: 1px solid var(--black-border);
  border-radius: 20px; padding: 2rem; width: 100%; max-width: 420px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.ig-card-header { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.2rem; }
.ig-avatar-wrap { position: relative; width: 76px; height: 76px; flex-shrink: 0; }
.ig-avatar-ring {
  position: absolute; inset: -3px; border-radius: 50%;
  background: var(--gradient); animation: ring-rotate 4s linear infinite;
}
@keyframes ring-rotate { to { filter: hue-rotate(15deg); } }
.ig-avatar-ring::after {
  content: ''; display: block; width: 100%; height: 100%;
  border-radius: 50%; background: var(--black-card);
}
.ig-avatar {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 68px; height: 68px; border-radius: 50%; object-fit: cover; z-index: 1;
}
.ig-info h2 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.ig-handle { color: var(--gray); font-size: 0.85rem; }
.ig-handle a { color: var(--gray); text-decoration: none; transition: color 0.3s; }
.ig-handle a:hover { color: var(--amber); }
.ig-category { color: var(--amber); font-size: 0.75rem; font-weight: 500; margin-top: 2px; letter-spacing: 0.5px; }

.ig-stats { display: flex; justify-content: space-around; margin: 1.2rem 0; text-align: center; }
.ig-stat-num { font-family: 'Playfair Display'; font-weight: 700; font-size: 1.2rem; }
.ig-stat-label { font-size: 0.7rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

.ig-bio { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.2rem; color: var(--gray-light); }

.ig-buttons { display: flex; gap: 0.6rem; margin-bottom: 1.2rem; }
.ig-btn {
  flex: 1; padding: 0.6rem; border: none; border-radius: 8px;
  font-weight: 600; font-size: 0.8rem; cursor: pointer; transition: all 0.3s;
  text-decoration: none; text-align: center;
}
.ig-btn-primary { background: var(--gradient); color: var(--black); }
.ig-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,168,83,0.25); }
.ig-btn-secondary { background: var(--black-border); color: var(--white); }
.ig-btn-secondary:hover { background: #333; }

.ig-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; border-radius: 10px; overflow: hidden; }
.ig-mini-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: 0.4s; }
.ig-mini-grid img:hover { transform: scale(1.05); filter: brightness(1.15); }

/* ===== SECTIONS ===== */
section { padding: 7rem 2rem; }
.section-header {
  text-align: center; margin-bottom: 4rem;
}
.section-label {
  font-family: 'Inter'; font-size: 0.75rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1rem;
  display: block;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.8rem; }
.section-header h2 em {
  font-style: italic; font-weight: 400;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-header p { color: var(--gray); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text p { color: var(--gray-light); margin-bottom: 1.5rem; font-size: 1rem; }
.about-text strong { color: var(--amber); font-weight: 600; }

.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.tag {
  padding: 0.45rem 1.1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 500;
  background: transparent; border: 1px solid rgba(212,168,83,0.3); color: var(--amber);
  letter-spacing: 0.5px; transition: all 0.3s;
}
.tag:hover { background: rgba(212,168,83,0.1); border-color: var(--amber); }

.about-image {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 3/4;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.about-image:hover img { transform: scale(1.04); }
.about-image::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(212,168,83,0.2); border-radius: 16px; pointer-events: none;
}

/* ===== SERVICES ===== */
.services-section { background: var(--black-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: 16px; padding: 2.5rem 2rem; text-align: center;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient); opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(212,168,83,0.3); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; font-family: 'Inter'; font-weight: 600; }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* ===== BRANDS ===== */
.brands-bar {
  padding: 4rem 2rem;
  border-top: 1px solid var(--black-border); border-bottom: 1px solid var(--black-border);
  background: rgba(212,168,83,0.02);
}
.brands-bar .container { text-align: center; }
.brands-bar .section-label { margin-bottom: 2rem; }
.brands-list {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem 3rem;
}
.brand-item {
  font-family: 'Inter'; font-size: 0.85rem; font-weight: 500;
  color: var(--gray); letter-spacing: 1px; text-transform: uppercase;
  padding: 0.8rem 1.5rem; border: 1px solid var(--black-border);
  border-radius: 8px; transition: all 0.3s;
}
.brand-item:hover { color: var(--amber); border-color: rgba(212,168,83,0.3); background: rgba(212,168,83,0.05); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem;
}
.gallery-item {
  position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: all 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.6); }
.gallery-item .overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s; background: rgba(212,168,83,0.15);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay svg { width: 28px; height: 28px; fill: white; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }

/* ===== STATS ===== */
.stats-section {
  background: var(--black-light);
  padding: 5rem 2rem;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  max-width: 900px; margin: 0 auto;
}
.stat { text-align: center; }
.stat .number {
  font-family: 'Playfair Display'; font-size: 3rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .label { color: var(--gray); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-top: 0.3rem; }

/* ===== CONTACT ===== */
.contact-section { position: relative; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.contact-info > p { color: var(--gray-light); margin-bottom: 2.5rem; font-size: 1rem; }
.contact-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; margin-bottom: 0.8rem;
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: 12px; text-decoration: none; color: var(--white);
  transition: all 0.3s ease;
}
.contact-link:hover { border-color: rgba(212,168,83,0.4); transform: translateX(6px); }
.contact-link .icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(212,168,83,0.08); display: flex; align-items: center; justify-content: center;
}
.contact-link .icon svg { width: 20px; height: 20px; fill: var(--amber); }
.contact-link span { font-weight: 500; font-size: 0.9rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea {
  padding: 1rem 1.2rem; background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: 10px; color: var(--white); font-family: 'Inter'; font-size: 0.9rem;
  transition: border-color 0.3s; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--amber); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form button {
  padding: 1rem; background: var(--gradient); border: none; border-radius: 10px;
  color: var(--black); font-weight: 700; font-size: 0.9rem; cursor: pointer;
  transition: all 0.3s; font-family: 'Inter'; letter-spacing: 1px; text-transform: uppercase;
}
.contact-form button:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,168,83,0.25); }

/* ===== FOOTER ===== */
.footer {
  text-align: center; padding: 2.5rem;
  border-top: 1px solid var(--black-border);
}
.footer-socials { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--black-card); border: 1px solid var(--black-border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; text-decoration: none;
}
.footer-socials a:hover { border-color: var(--amber); transform: translateY(-3px); background: rgba(212,168,83,0.08); }
.footer-socials a svg { width: 18px; height: 18px; fill: var(--gray-light); }
.footer-socials a:hover svg { fill: var(--amber); }
.footer p { color: var(--gray); font-size: 0.8rem; letter-spacing: 1px; }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(35px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-35px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(35px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95); backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem; width: 44px; height: 44px;
  background: none; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  color: white; font-size: 1.5rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: all 0.3s;
}
.lightbox-close:hover { border-color: var(--amber); color: var(--amber); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    flex-direction: column; background: rgba(10,10,10,0.98);
    padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--black-border);
  }
  .nav-links.open { display: flex; }
  .nav-menu { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-image { max-height: 400px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  section { padding: 5rem 1.2rem; }
}
