@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f7eef5;
  --card: #f2e6f0;
  --primary: #6b2f8a;
  --primary-light: #8a40b0;
  --foreground: #1a1020;
  --foreground-muted: rgba(26,16,32,0.65);
  --foreground-faint: rgba(26,16,32,0.45);
  --border: rgba(107,47,138,0.15);
  --secondary: #ede0f0;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg);
  color: var(--foreground);
  overflow-x: hidden;
  line-height: 1.6;
}

.serif { font-family: 'Playfair Display', serif; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Fade-in animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,238,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo img { height: 56px; width: 56px; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--foreground-muted);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(247,238,245,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.mobile-menu.open {
  max-height: 400px;
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu a {
  display: block;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--primary); }
.mobile-menu a:hover { color: var(--primary); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}
.hero-bg-overlay1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(247,238,245,0.95) 0%, rgba(247,238,245,0.72) 50%, transparent 100%);
}
.hero-bg-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(247,238,245,1) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--primary);
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--foreground-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-light); }
.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1.5px solid rgba(26,16,32,0.25);
}
.btn-outline:hover { background: var(--secondary); }

/* ══════════════════════════════════════
   STANDARDS
══════════════════════════════════════ */
.standards { padding: 8rem 0; background: var(--card); }
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(107,47,138,0.6);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--foreground);
  line-height: 1.2;
}
.text-center { text-align: center; }
.mb-section { margin-bottom: 5rem; }
.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem 2rem;
}
.standard-card {
  border-top: 1px solid rgba(107,47,138,0.2);
  padding-top: 2rem;
  transition: border-color 0.4s;
}
.standard-card:hover { border-color: var(--primary); }
.standard-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: rgba(107,47,138,0.25);
  display: block;
  margin-bottom: 1.25rem;
}
.standard-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.standard-card p { color: var(--foreground-muted); font-weight: 300; line-height: 1.75; }

/* ══════════════════════════════════════
   SPECIALIZATION
══════════════════════════════════════ */
.specialization { padding: 8rem 0; background: var(--bg); }
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.spec-col { padding: 0 4rem 0 0; }
.spec-col:last-child {
  padding: 0 0 0 4rem;
  border-left: 1px solid var(--border);
}
.spec-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--secondary);
  margin-bottom: 2.5rem;
}
.spec-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.spec-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 2rem;
}
.spec-list { display: flex; flex-direction: column; gap: 1.5rem; }
.spec-list li { display: flex; flex-direction: column; }
.spec-list li strong { font-weight: 600; letter-spacing: 0.02em; margin-bottom: 0.2rem; }
.spec-list li span { color: var(--foreground-faint); font-weight: 300; font-size: 0.9rem; }

/* ══════════════════════════════════════
   BRAND PARTNERS
══════════════════════════════════════ */
.partners { padding: 8rem 0; background: #fce4ec; }
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.partners-label { color: rgba(107,47,138,0.55); }
.partners h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}
.partners > .container > .partners-grid > div > p {
  font-size: 1.05rem;
  color: var(--foreground-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.partner-items { display: flex; flex-direction: column; gap: 2rem; }
.partner-item {
  padding-left: 1.5rem;
  border-left: 2px solid rgba(107,47,138,0.25);
}
.partner-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--foreground);
  margin-bottom: 0.4rem;
}
.partner-item p { color: var(--foreground-faint); font-weight: 300; font-size: 0.9rem; }
.partners-img { height: 560px; }
.partners-img img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats {
  padding: 6rem 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--foreground-faint);
}

/* ══════════════════════════════════════
   TALENT
══════════════════════════════════════ */
.talent { padding: 8rem 0; background: var(--bg); }
.talent-desc {
  color: var(--foreground-faint);
  font-weight: 300;
  margin-top: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.talent-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}
.talent-card { cursor: pointer; }
.talent-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--secondary);
}
.talent-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease;
}
.talent-card:hover .talent-photo-wrap img { transform: scale(1.05); }
.talent-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s;
}
.talent-card:hover .talent-overlay { opacity: 1; }
.talent-info-hover {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.5s ease;
}
.talent-card:hover .talent-info-hover { opacity: 1; transform: translateY(0); }
.talent-info-hover .t-name {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.talent-info-hover .t-stats { color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.05em; }
.talent-info-hover .t-tiktok { color: rgba(255,255,255,0.75); font-size: 0.7rem; font-weight: 500; }
.talent-border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.5s;
  pointer-events: none;
}
.talent-card:hover .talent-border { border-color: rgba(107,47,138,0.4); }
.talent-meta { margin-top: 0.75rem; }
.talent-meta .m-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--foreground);
  line-height: 1.3;
}
.talent-meta .m-tiktok { font-size: 0.72rem; color: var(--foreground-faint); margin-top: 0.15rem; letter-spacing: 0.03em; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact { padding: 8rem 0; background: var(--bg); }
.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.contact-sub { font-size: 1.05rem; color: var(--foreground-muted); font-weight: 300; max-width: 540px; margin: 0 auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  margin-top: 4rem;
}
.contact-info {
  background: var(--secondary);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.contact-info h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.contact-info a {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--foreground);
  transition: color 0.2s;
  word-break: break-all;
}
.contact-info a:hover { color: var(--primary); }
.contact-info .quote {
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(107,47,138,0.1);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--foreground-faint);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--foreground-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 48px;
  padding: 0 0 0.5rem 0;
  font-size: 0.95rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--foreground);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  appearance: none;
}
.form-group textarea {
  height: 100px;
  resize: none;
  padding-top: 0.25rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--primary); }
.form-group .error { color: #e74c3c; font-size: 0.75rem; margin-top: 0.3rem; display: none; }
.form-group.invalid .error { display: block; }
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-bottom-color: #e74c3c; }
.form-submit { align-self: flex-start; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  padding: 3rem 0;
  background: var(--foreground);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
footer a:hover { color: #fff; }

/* ══════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .spec-grid { grid-template-columns: 1fr; gap: 4rem; }
  .spec-col { padding: 0; border: none !important; }

  .partners-grid { grid-template-columns: 1fr; }
  .partners-img { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }

  .talent-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; }

  .talent-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
