/* ============================================================
   SAY THE WORD — Global Styles
   ============================================================ */

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

:root {
  --pink:        #9B4977;
  --pink-dark:   #7d3a5e;
  --pink-light:  #c4698f;
  --blue:        #4A7CFF;
  --bg:          #080808;
  --surface:     #111111;
  --surface-2:   #1a1a1a;
  --white:       #FFFFFF;
  --muted:       #888888;
  --muted-2:     #444444;

  --font: 'Inter', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 64px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 2px; }

/* ── Typography helpers ────────────────────────────────────── */
.label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.label--pink { color: var(--pink-light); }
.label--white { color: rgba(255,255,255,0.55); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 40px;
  transition: transform 0.15s var(--ease), opacity 0.15s var(--ease);
}
.btn:hover { transform: translateY(-1px); opacity: 0.9; }
.btn:active { transform: translateY(0); }

.btn--pink  { background: var(--pink); color: var(--white); }
.btn--white { background: var(--white); color: var(--pink); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--outline:hover { border-color: rgba(255,255,255,0.7); }

/* ── Fade-in on scroll ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.06);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

.nav__logo img {
  height: 38px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a.active { color: var(--white); }

.nav__instagram,
.nav__tiktok {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  padding-top: 3px;
}
.nav__instagram:hover,
.nav__tiktok:hover { color: var(--white); }
.nav__instagram svg,
.nav__tiktok svg { width: 18px; height: 18px; }

.nav__cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 24px;
  transition: background 0.2s, transform 0.15s !important;
}
.nav__cta:hover { background: var(--pink-light) !important; transform: translateY(-1px); }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px);
  padding: 24px 40px 32px;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 99;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 40px 32px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer__logo img { height: 32px; width: auto; margin-bottom: 12px; }
.footer__tagline {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.05em;
  max-width: 240px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin-top: 4px;
}
.footer__links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.08em;
}
.footer__email a {
  font-size: 11px;
  color: var(--pink-light);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer__email a:hover { color: var(--white); }

/* ── Global sound button ───────────────────────────────────── */
.sound-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 40px;
  padding: 10px 18px 10px 14px;
  color: #fff;
  cursor: pointer;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.sound-toggle:hover {
  background: rgba(155,73,119,0.7);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.sound-toggle svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.sound-toggle .st-unmuted { display: none; }
.sound-toggle.on .st-muted   { display: none; }
.sound-toggle.on .st-unmuted { display: block; }
.sound-toggle.on {
  background: rgba(155,73,119,0.6);
  border-color: rgba(255,255,255,0.4);
}

/* ── CTA Section (shared across pages) ────────────────────── */
.cta-section {
  padding: 120px 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-section__inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 16px;
}

.cta-section__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}

.cta-section__sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .footer { padding: 40px 20px 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__links { flex-wrap: wrap; gap: 16px; }
  .footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}
