*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:     #F472B6;
  --peach:    #FB923C;
  --lavender: #A78BFA;
  --mint:     #34D399;
  --bg:       #FAFAFA;
  --dark:     #111827;
  --mid:      #374151;
  --light:    #9CA3AF;
  --white:    #FFFFFF;
  --f-display: 'Cormorant Garamond', serif;
  --f-body:    'Inter', sans-serif;
  --radius:    20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(250,250,250,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }

.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(244,114,182,0.35);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,114,182,0.45) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fff0f8 0%, #f5f0ff 40%, #fff8f0 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 900px;
  width: 100%;
}

.profile-wrap {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--pink), var(--lavender), var(--peach));
  box-shadow: 0 20px 60px rgba(244,114,182,0.4);
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  display: block;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}

.hero-name {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--mid);
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(244,114,182,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  width: fit-content;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(244,114,182,0.5); }

/* deco circles */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.deco-a { width: 500px; height: 500px; background: radial-gradient(circle, rgba(244,114,182,0.18), transparent 70%); top: -150px; right: -100px; }
.deco-b { width: 350px; height: 350px; background: radial-gradient(circle, rgba(167,139,250,0.2), transparent 70%); bottom: -80px; left: -80px; }
.deco-c { width: 200px; height: 200px; background: radial-gradient(circle, rgba(251,146,60,0.2), transparent 70%); top: 40%; right: 10%; }

/* ── SECTIONS ── */
.section { padding: 96px 40px; }
.section-tinted { background: linear-gradient(135deg, #fdf4ff, #fff0f8); }

.container { max-width: 900px; margin: 0 auto; }

.two-col {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: start;
}

.col-label { padding-top: 4px; }

/* tags */
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  background: rgba(244,114,182,0.12);
  color: var(--pink);
}
.tag-purple { background: rgba(167,139,250,0.12); color: var(--lavender); }
.tag-peach  { background: rgba(251,146,60,0.12);  color: var(--peach); }

.body-lg {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--mid);
  font-weight: 300;
}

/* ── BRANDS ── */
.brands-header { margin-bottom: 48px; }

.brand-block {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  text-align: center;
}
.brand-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.brand-name {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}
.brand-name::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pink), var(--peach));
}

.video-row {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.reel-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  background: #fff;
  width: 340px;
  flex-shrink: 0;
}

.reel-card iframe {
  display: block;
  width: 340px;
  height: 600px;
  border: none;
}

/* ── CONTACT ── */
.contact {
  background: linear-gradient(135deg, #1E1B2E 0%, #2D1B4E 50%, #1E1B2E 100%);
}

.contact-inner { text-align: center; }

.contact-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 56px;
}
.contact-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 40px;
  text-decoration: none;
  color: var(--white);
  min-width: 220px;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.contact-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }

.cc-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-icon svg { width: 22px; height: 22px; color: #fff; }

.cc-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.cc-value {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}

/* ── FOOTER ── */
.footer {
  background: #111827;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }

  .hero { padding: 100px 24px 60px; }
  .hero-content { flex-direction: column; align-items: center; text-align: center; gap: 32px; }
  .profile-wrap { width: 160px; height: 160px; }
  .hero-name { font-size: 3.5rem; }
  .btn-primary { align-self: center; }

  .section { padding: 64px 24px; }
  .two-col { grid-template-columns: 1fr; gap: 16px; }

  .all-videos { grid-template-columns: 1fr; }
  .reel-card { width: 100%; }
  .reel-card iframe { width: 100%; height: 480px; }
  .contact-card { width: 100%; }
}
