:root {
  --black: #0a0a0a;
  --dark: #131313;
  --panel: #1a1a1a;
  --gold: #C9A24B;
  --gold-bright: #E8C876;
  --cream: #F3EEE4;
  --muted: rgba(243,238,228,0.6);
  --border: rgba(201,162,75,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { padding: 6rem 1.5rem; position: relative; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
}
.section-title span { color: var(--gold); font-style: italic; }

/* ===== NAV ===== */
#navbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2rem;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; letter-spacing: 0.05em;
  color: var(--cream); transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-size: 0.8rem; letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); }

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at center top, rgba(201,162,75,0.12), transparent 60%);
}
.hero-badge {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 0.4rem 1.2rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1;
}
.hero-title span { color: var(--gold); font-style: italic; }
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  margin-top: 1.2rem;
  color: var(--cream);
}
.hero-sub {
  color: var(--muted);
  margin-top: 0.8rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.hero-links {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
  margin-top: 1.8rem; font-size: 0.85rem;
}
.hero-links a { color: var(--gold); border-bottom: 1px solid transparent; }
.hero-links a:hover { border-bottom-color: var(--gold); }
.btn-primary {
  display: inline-block; margin-top: 2.2rem;
  background: var(--gold); color: var(--black);
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em;
  padding: 0.9rem 2.4rem; border: none; border-radius: 50px;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,75,0.35); }

/* ===== ABOUT ===== */
.about { background: var(--dark); }
.about-copy { max-width: 680px; margin: 0 auto; text-align: center; }
.about-copy p { margin-bottom: 1.2rem; line-height: 1.7; color: var(--muted); }
.about-copy p:first-child { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--cream); font-style: italic; }

/* ===== WHY ME ===== */
.pull-quote {
  max-width: 700px; margin: 0 auto 3.5rem;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  text-align: center; line-height: 1.6; color: var(--cream);
  border-left: 2px solid var(--gold); padding-left: 1.5rem;
}
.stat-grid, .ugc-stats, .niches-grid, .deliv-grid, .process-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 0.4rem; }
.stat-label { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
.stat-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* ===== WHY UGC ===== */
.why-ugc-copy { max-width: 650px; margin: 0 auto 3rem; text-align: center; color: var(--muted); line-height: 1.7; }
.ugc-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); margin-bottom: 0.5rem; }
.ugc-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.ugc-stat { text-align: center; }
.ugc-closer { text-align: center; max-width: 500px; margin: 3rem auto 0; font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); }

/* ===== NICHES ===== */
.niches { background: var(--dark); }
.niche-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.8rem 1.4rem; text-align: center; transition: border-color 0.25s, transform 0.25s;
}
.niche-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.niche-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--gold-bright); }
.niche-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ===== PORTFOLIO ===== */
.tab-bar {
  display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem;
}
.tab-btn {
  background: transparent; border: 1px solid var(--border); color: var(--muted);
  padding: 0.6rem 1.3rem; border-radius: 50px; font-size: 0.8rem; letter-spacing: 0.03em;
  cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.tab-btn:hover { border-color: var(--gold); color: var(--cream); }
.tab-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); font-weight: 600; }

.tab-panel { display: none; max-width: 640px; margin: 0 auto; }
.tab-panel.active { display: block; }

.video-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
}
.video-card video, .yt-embed { width: 100%; aspect-ratio: 9/16; background: #000; }
.yt-embed { aspect-ratio: 16/9; }
.yt-embed iframe { width: 100%; height: 100%; border: 0; }
.video-caption { padding: 1.4rem 1.6rem; }
.video-tag {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 0.3rem 0.8rem; border-radius: 50px; margin-bottom: 0.7rem;
}
.video-caption p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.niche-placeholder {
  padding: 4rem 2rem; text-align: center; color: var(--muted);
}
.niche-placeholder p:first-child { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: 0.8rem; }
.video-tag-sub { font-size: 0.85rem; }

/* ===== DELIVERABLES ===== */
.deliverables { background: var(--dark); }
.deliv-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 1.8rem 1.5rem;
}
.deliv-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--gold-bright); margin-bottom: 0.6rem; }
.deliv-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ===== PROCESS ===== */
.process-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.process-step { text-align: center; }
.step-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); margin-bottom: 0.5rem; }
.step-name { font-weight: 600; margin-bottom: 0.4rem; }
.step-desc { font-size: 0.8rem; color: var(--muted); }

/* ===== CONTACT ===== */
.contact { background: radial-gradient(ellipse at center, rgba(201,162,75,0.1), var(--black) 65%); text-align: center; }
.contact-inner { max-width: 560px; margin: 0 auto; }
.contact-email { margin: 1.2rem 0 2rem; }
.contact-email a { color: var(--gold); font-size: 1.1rem; font-family: 'Playfair Display', serif; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; text-align: left; margin-bottom: 2rem; }
.contact-form input, .contact-form textarea {
  background: var(--panel); border: 1px solid var(--border); border-radius: 10px;
  padding: 0.9rem 1.1rem; color: var(--cream); font-family: 'Inter', sans-serif; font-size: 0.9rem;
  outline: none; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form button { align-self: center; }
.contact-links { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1.5rem; font-size: 0.85rem; }
.contact-links a { color: var(--gold); }
.booking-tag { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.03em; }

/* ===== FOOTER ===== */
footer { border-top: 1px solid var(--border); padding: 2.5rem 1.5rem; text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.6rem; }
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: var(--muted); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  #navbar.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black); padding: 1.5rem; border-bottom: 1px solid var(--border); gap: 1.2rem;
  }
}
