/* ============================================================
   HEY MAITRI — Professional Emcee Portfolio
   OFFICIAL Brand Colors (from logo JPG):
   Purple #51005F | Gold #F5A623 | White #FFFFFF | Black #000000
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Great+Vibes&family=Jost:wght@300;400;500;600&family=Quicksand:wght@500;600;700&family=Varela+Round&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* == OFFICIAL BRAND COLORS (pixel-sampled from Hey Maitri logo JPG) == */
  --purple-deep: #51005F;      /* EXACT brand purple — pixel sampled from logo */
  --purple-brand: #6B0080;     /* Slightly lighter for hover/gradient */
  --purple-plum: #3A0045;      /* Deeper — shadows & accents */
  --purple-mid: #250030;       /* Darkest purple for dark backgrounds */
  --gold-brand: #F5A623;       /* Exact brand gold — icon & "hey" text */
  --gold-warm: #F5A623;        /* Same */
  --gold-bright: #F7C048;      /* Brighter highlight */
  --gold-light: #FAD678;       /* Lightest gold */
  --black: #000000;
  --black-soft: #080808;
  --black-card: #0F0F0F;
  --black-border: #1E1E1E;
  --white: #FFFFFF;
  --white-soft: #F5F0FF;
  --text-muted: #888888;
  --text-light: #CCCCCC;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --font-logo: 'Quicksand', 'Nunito', sans-serif;

  --max-width: 1200px;
  --section-pad: 6rem 1.5rem;
  --radius: 4px;
  --transition: 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black-soft);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Gold Text Gradient ---- */
.gold-text {
  background: linear-gradient(135deg, #F5A623, #F7C048, #F5A623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-text-static { color: #F5A623; }

/* ---- Section Base ---- */
.section { padding: var(--section-pad); }
.container { max-width: var(--max-width); margin: 0 auto; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-warm), var(--gold-bright));
  margin: 0 auto 2.5rem;
}
.section-divider.left { margin-left: 0; }
.text-center { text-align: center; }

/* ---- Gold Rule ---- */
.gold-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-warm), transparent);
  margin: 3rem 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #51005F;
  border-bottom: 1px solid rgba(245,166,35,0.2);
  transition: padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  padding: 0.4rem 2rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  transition: opacity var(--transition);
}
.nav-logo img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  /* No border-radius — let the logo bleed flush into navbar */
}
.nav-logo-text {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}
.nav-logo-text .hey { color: var(--gold-warm); }
.nav-logo:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold-warm);
  transition: right var(--transition);
}
.nav-links a:hover { opacity: 1; color: var(--gold-warm); }
.nav-links a:hover::after { right: 0; }

.nav-socials {
  display: flex;
  gap: 1rem;
}
.nav-socials a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,148,58,0.3);
  border-radius: 50%;
  font-size: 0.85rem;
  color: var(--gold-warm);
  transition: all var(--transition);
}
.nav-socials a:hover {
  background: var(--gold-warm);
  color: var(--black);
  border-color: var(--gold-warm);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-warm);
  transition: all var(--transition);
}
.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); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 65% 45%, rgba(81,0,95,0.35) 0%, transparent 55%),
              radial-gradient(ellipse at 15% 70%, rgba(69,20,92,0.25) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 10%, rgba(245,166,35,0.06) 0%, transparent 40%),
              var(--black);
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,148,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,148,58,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.hero-text { z-index: 2; }
.hero-pre {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 1rem;
}
.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
.hero-name-script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3.5rem);
  display: block;
  margin-bottom: 1rem;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-plum));
  border-radius: 2px;
  overflow: hidden;
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/maitri-hero.jpg') center/cover no-repeat;
  opacity: 0.95;
}
.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}
.hero-image-placeholder {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--purple-deep) 0%, var(--purple-plum) 50%, var(--black-card) 100%);
  border: 1px solid rgba(212,148,58,0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212,148,58,0.15);
  border-radius: 1px;
}
.hero-placeholder-text {
  font-family: var(--font-script);
  font-size: 2rem;
  color: rgba(212,148,58,0.4);
  text-align: center;
  padding: 1rem;
}
.hero-corner {
  position: absolute;
  width: 40px; height: 40px;
}
.hero-corner.tl { top: 0; left: 0; border-top: 2px solid var(--gold-warm); border-left: 2px solid var(--gold-warm); }
.hero-corner.tr { top: 0; right: 0; border-top: 2px solid var(--gold-warm); border-right: 2px solid var(--gold-warm); }
.hero-corner.bl { bottom: 0; left: 0; border-bottom: 2px solid var(--gold-warm); border-left: 2px solid var(--gold-warm); }
.hero-corner.br { bottom: 0; right: 0; border-bottom: 2px solid var(--gold-warm); border-right: 2px solid var(--gold-warm); }

.hero-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: linear-gradient(135deg, var(--gold-warm), var(--gold-bright));
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.2rem;
  text-align: center;
}
.hero-badge strong { display: block; font-size: 1.2rem; font-family: var(--font-heading); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: linear-gradient(135deg, #F5A623, #F7C048);
  color: #000000;
  font-weight: 600;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #F7C048, #FAD678);
  box-shadow: 0 6px 24px rgba(245,166,35,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid rgba(245,166,35,0.5);
  color: #F5A623;
  background: transparent;
}
.btn-outline:hover {
  border-color: #F5A623;
  background: rgba(245,166,35,0.08);
  box-shadow: 0 0 24px rgba(245,166,35,0.18);
}
.btn-purple {
  background: var(--purple-deep);
  color: var(--white);
  border: 1px solid rgba(81,0,95,0.5);
}
.btn-purple:hover {
  background: var(--purple-brand);
  box-shadow: 0 4px 20px rgba(81,0,95,0.5);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(90deg, var(--purple-mid), var(--purple-deep), var(--purple-brand), var(--purple-deep), var(--purple-mid));
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(245,166,35,0.2);
  border-bottom: 1px solid rgba(245,166,35,0.2);
}
.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 0.5rem 1rem; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  margin: auto;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview {
  background: var(--black-soft);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--purple-deep), var(--black-card));
  border: 1px solid rgba(212,148,58,0.2);
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.9;
}
.about-accent-box {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--black-card);
  border: 1px solid rgba(212,148,58,0.3);
  padding: 1.5rem;
  width: 200px;
}
.about-accent-box .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 0.3rem;
}
.about-accent-box .value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}
.about-text { padding: 2rem 0; }
.about-body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}
.credential-icon {
  width: 36px; height: 36px;
  background: rgba(75,45,127,0.3);
  border: 1px solid rgba(212,148,58,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ============================================================
   WHAT I DO
   ============================================================ */
.services {
  background: var(--black-card);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(212,148,58,0.1);
}
.service-card {
  background: var(--black-card);
  padding: 2.5rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-warm), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { background: rgba(107,0,128,0.15); transform: translateY(-2px); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   REEL SECTION
   ============================================================ */
.reel {
  background: radial-gradient(ellipse at center, rgba(75,45,127,0.3) 0%, var(--black-soft) 70%);
  padding: var(--section-pad);
}
.reel-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.video-container {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--black-card);
  border: 1px solid rgba(212,148,58,0.2);
  overflow: hidden;
}
.video-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-deep), var(--black));
  gap: 1rem;
}
.play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-warm), var(--gold-bright));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--black);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 40px rgba(212,148,58,0.3);
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 0 60px rgba(212,148,58,0.5); }
.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--black-soft); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(212,148,58,0.3);
  box-shadow: 0 8px 30px rgba(75,45,127,0.2);
}
.quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.5;
  color: rgba(212,148,58,0.15);
  margin-bottom: 1.5rem;
  display: block;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-plum));
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.author-name { font-size: 0.9rem; font-weight: 500; color: var(--white); }
.author-title { font-size: 0.78rem; color: var(--text-muted); }
.stars { color: var(--gold-warm); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 0.1rem; }

/* ============================================================
   SOCIAL FEED
   ============================================================ */
.social-feed { background: var(--black); }
.social-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.social-tab {
  padding: 0.6rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--black-border);
  color: var(--text-muted);
  background: transparent;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
}
.social-tab.active, .social-tab:hover {
  background: #F5A623;
  border-color: #F5A623;
  color: #000000;
  font-weight: 600;
}
.social-panel { display: none; }
.social-panel.active { display: block; }

/* Instagram feed */
.instagram-feed-wrap {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 2rem;
  border-radius: var(--radius);
}
.feed-placeholder {
  text-align: center;
  color: var(--text-muted);
}
.feed-placeholder .icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.feed-placeholder p { font-size: 0.9rem; margin-bottom: 1rem; }
.feed-placeholder a { color: var(--gold-warm); }

/* Facebook embed */
.facebook-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 400px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 2rem;
}
.linkedin-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 300px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  text-align: center;
}
.linkedin-icon {
  width: 64px; height: 64px;
  background: #0A66C2;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto;
}

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking-cta {
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-deep) 30%, var(--purple-brand) 60%, var(--purple-deep) 80%, var(--black) 100%);
  text-align: center;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,148,58,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,148,58,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.booking-cta .container { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  display: block;
  margin-bottom: 1rem;
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-logo);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold-warm);
  margin-bottom: 1rem;
  display: block;
}
.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--black-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--gold-warm);
  color: var(--gold-warm);
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 1.5rem;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--black-border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.5s; }
.reveal-delay-5 { transition-delay: 0.65s; }

/* ============================================================
   INNER PAGES — HERO
   ============================================================ */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-deep) 40%, var(--purple-brand) 70%, var(--purple-mid) 100%);
  padding: 8rem 1.5rem 3rem;
  border-bottom: 2px solid rgba(245,166,35,0.2);
}
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; width: 100%; }
.page-hero-label { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-warm); margin-bottom: 0.5rem; display: block; }
.page-hero-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 600; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--black-border);
  color: var(--text-muted);
  background: transparent;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--gold-warm); border-color: var(--gold-warm); color: var(--black); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--purple-deep), var(--black-card));
  border: 1px solid var(--black-border);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
}
.gallery-item:nth-child(3n+1):first-child { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover { transform: scale(1.01); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(75,45,127,0.9), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { font-family: var(--font-heading); font-size: 1.1rem; color: var(--white); }

/* Placeholder gallery items */
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212,148,58,0.3);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info { padding-top: 1rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(75,45,127,0.3);
  border: 1px solid rgba(212,148,58,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold-warm);
}
.contact-detail-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-warm); margin-bottom: 0.25rem; }
.contact-detail-value { font-size: 0.95rem; color: var(--text-light); }
.contact-form {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(212,148,58,0.5);
  box-shadow: 0 0 0 2px rgba(212,148,58,0.08);
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { min-height: 140px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }

/* ============================================================
   NAVBAR UPDATE — CTA + right group
   ============================================================ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-cta {
  padding: 0.55rem 1.3rem;
  font-size: 0.75rem;
  background: linear-gradient(135deg, #F5A623, #F7C048) !important;
  color: #000 !important;
  font-weight: 700;
  border: none;
}

/* ---- Hero tags ---- */
.hero-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.hero-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-warm);
  border: 1px solid rgba(212,148,58,0.3);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
}
.hero-role {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

/* ---- Floating credential badges ---- */
.hero-float-badge {
  position: absolute;
  top: 30%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(212,148,58,0.3);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold-warm);
  z-index: 3;
}
.hero-float-badge i { font-size: 1rem; }
.hero-float-badge.left { left: 2rem; }
.hero-float-badge.right { right: 2rem; top: 40%; }

/* ---- Scroll cue ---- */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold-warm), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1) translateY(10px); }
}

/* ============================================================
   CREDENTIALS BADGES (about section)
   ============================================================ */
.cred-badges {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0;
}
.cred-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(75,45,127,0.12);
  border: 1px solid rgba(212,148,58,0.12);
  padding: 0.85rem 1rem;
  transition: border-color var(--transition), background var(--transition);
}
.cred-badge:hover {
  border-color: rgba(212,148,58,0.3);
  background: rgba(75,45,127,0.2);
}
.cred-badge i {
  color: var(--gold-warm);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.cred-badge strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.cred-badge span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   HOW I WORK — PROCESS
   ============================================================ */
.process {
  background: var(--black-card);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.process-step {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  padding: 2rem;
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-warm), var(--gold-bright));
  opacity: 0;
  transition: opacity var(--transition);
}
.process-step:hover { border-color: rgba(212,148,58,0.25); box-shadow: 0 8px 30px rgba(75,45,127,0.2); }
.process-step:hover::before { opacity: 1; }
.process-number {
  flex-shrink: 0;
}
.process-number span {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, rgba(212,148,58,0.6), rgba(232,168,64,0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.process-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.process-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.process-icon {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: rgba(212,148,58,0.1);
}

/* ============================================================
   CLIENT LOGOS
   ============================================================ */
.clients {
  background: rgba(75,45,127,0.06);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--black-border);
}
.logo-item {
  background: var(--black-soft);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.logo-item:hover { background: rgba(75,45,127,0.15); }
.logo-item img {
  max-height: 50px;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(0.6);
  transition: filter var(--transition);
}
.logo-item:hover img { filter: brightness(0) invert(0.85); }
.logo-placeholder {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  text-align: center;
  padding: 1rem;
  border: 1px dashed rgba(255,255,255,0.08);
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text-badge {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 0.5rem;
  line-height: 1.4;
  width: 100%;
  transition: color var(--transition);
}
.logo-text-badge span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
  margin-top: 0.15rem;
}
.logo-item:hover .logo-text-badge { color: rgba(212,148,58,0.8); }

/* ============================================================
   PRESS / MEDIA
   ============================================================ */
.press {
  background: var(--black-soft);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.press-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
  display: block;
  color: inherit;
}
.press-card:hover {
  border-color: rgba(212,148,58,0.3);
  transform: translateY(-3px);
}
.press-placeholder { opacity: 0.5; cursor: default; }
.press-placeholder:hover { transform: none; border-color: var(--black-border); }
.press-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--black-border);
}
.press-logo span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  font-family: var(--font-body);
}
.press-text blockquote {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.press-text cite {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-warm);
}
.press-ext {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-image-wrap { display: none; }
  .hero-float-badge { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { order: -1; }
  .about-accent-box { right: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(3n+1):first-child { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .nav-right .nav-socials { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-socials { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.97);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.5rem; letter-spacing: 0.2em; }
  .hamburger { display: flex; z-index: 1001; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 480px) {
  :root { --section-pad: 4rem 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .social-tabs { justify-content: flex-start; overflow-x: auto; padding-bottom: 0.5rem; }
}

/* ============================================================
   CUSTOM GOLD CURSOR
   ============================================================ */
*, *::before, *::after { cursor: none !important; }
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold-warm);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(245,166,35,0.6);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}
.cursor-dot.hover { width: 14px; height: 14px; background: var(--gold-bright); }
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--gold-warm); }
.cursor-dot.click { transform: translate(-50%, -50%) scale(0.6); }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================================
   TYPEWRITER / ROTATING HERO TEXT
   ============================================================ */
.hero-role-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.5rem 0 1rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-light);
}
.hero-role-static { color: var(--text-muted); }
.hero-role-typed {
  color: var(--gold-warm);
  font-weight: 600;
  min-width: 120px;
  display: inline-block;
  border-right: 2px solid var(--gold-warm);
  padding-right: 4px;
  animation: blink-cursor 0.8s step-end infinite;
}
@keyframes blink-cursor {
  0%, 100% { border-color: var(--gold-warm); }
  50% { border-color: transparent; }
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-strip {
  background: linear-gradient(90deg, var(--purple-mid), var(--purple-deep), var(--purple-brand), var(--purple-deep), var(--purple-mid));
  padding: 0.85rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(245,166,35,0.15);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 30s linear infinite;
  gap: 0;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.marquee-item .dot {
  width: 4px; height: 4px;
  background: var(--gold-warm);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   BENTO GRID � ABOUT SECTION
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}
.bento-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.bento-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(107,0,128,0.2);
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,0,128,0.06) 0%, transparent 60%);
  pointer-events: none;
}
/* Bento layout positions */
.bento-photo   { grid-column: 1 / 6;  grid-row: 1 / 3; padding: 0; overflow: hidden; }
.bento-intro   { grid-column: 6 / 13; grid-row: 1; }
.bento-cma     { grid-column: 6 / 9;  grid-row: 2; }
.bento-cnn     { grid-column: 9 / 13; grid-row: 2; }
.bento-stat1   { grid-column: 1 / 4;  grid-row: 3; }
.bento-stat2   { grid-column: 4 / 7;  grid-row: 3; }
.bento-stat3   { grid-column: 7 / 10; grid-row: 3; }
.bento-emba    { grid-column: 10 / 13; grid-row: 3; }
.bento-quote   { grid-column: 1 / 8;  grid-row: 4; }
.bento-cta     { grid-column: 8 / 13; grid-row: 4; }

.bento-photo .bento-photo-inner {
  width: 100%; height: 100%; min-height: 380px;
  background: linear-gradient(145deg, var(--purple-deep), var(--black));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-script);
  font-size: 2rem;
  color: rgba(245,166,35,0.2);
  text-align: center;
}
.bento-photo img { width: 100%; height: 100%; object-fit: cover; }
.bento-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 0.5rem;
  display: block;
}
.bento-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.bento-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
/* Big stat cards */
.bento-stat1, .bento-stat2, .bento-stat3, .bento-emba {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107,0,128,0.12), var(--black-card));
}
.bento-stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}
.bento-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* Credential cards */
.bento-cma, .bento-cnn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-cred-icon {
  font-size: 1.5rem;
  color: var(--gold-warm);
  margin-bottom: 0.75rem;
  display: block;
}
.bento-cred-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.bento-cred-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
/* Quote bento */
.bento-quote {
  background: linear-gradient(135deg, rgba(81,0,95,0.2), rgba(107,0,128,0.08));
  border-color: rgba(245,166,35,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 0.6;
  color: rgba(245,166,35,0.15);
  display: block;
  margin-bottom: 1rem;
}
.bento-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}
/* CTA bento */
.bento-cta {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-brand));
  border-color: rgba(245,166,35,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
}
.bento-cta h3 {
  font-size: 1.3rem;
  color: var(--white);
}
.bento-cta p { color: rgba(255,255,255,0.7); }

/* Bento mobile */
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-photo  { grid-column: 1 / -1; grid-row: auto; }
  .bento-intro  { grid-column: 1 / -1; grid-row: auto; }
  .bento-cma, .bento-cnn, .bento-stat1, .bento-stat2, .bento-stat3, .bento-emba { grid-column: span 1; grid-row: auto; }
  .bento-quote, .bento-cta { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-cma, .bento-cnn, .bento-stat1, .bento-stat2, .bento-stat3, .bento-emba { grid-column: 1 / -1; }
}

/* ============================================================
   GLASSMORPHISM � TESTIMONIAL CARDS
   ============================================================ */
.testimonials {
  background: linear-gradient(135deg, rgba(81,0,95,0.15) 0%, var(--black-soft) 50%, rgba(107,0,128,0.1) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,0,128,0.15) 0%, transparent 70%);
  top: -100px; left: -100px;
  pointer-events: none;
}
.testimonials::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  bottom: -50px; right: -50px;
  pointer-events: none;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonial-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(245,166,35,0.25);
  box-shadow: 0 16px 48px rgba(107,0,128,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

/* ============================================================
   KINETIC SECTION LABELS
   ============================================================ */
.kinetic-word {
  display: inline-block;
  overflow: hidden;
}
.kinetic-word span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.kinetic-word.in-view span { transform: translateY(0); }

/* ============================================================
   MEDIA KIT CTA
   ============================================================ */
.mediakit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold-warm);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s ease;
  background: rgba(245,166,35,0.04);
}
.mediakit-btn:hover {
  background: rgba(245,166,35,0.1);
  border-color: var(--gold-warm);
  box-shadow: 0 0 20px rgba(245,166,35,0.15);
}
.mediakit-btn i { font-size: 0.9rem; }

/* ============================================================
   MAGNETIC BUTTON EFFECT (via JS)
   ============================================================ */
.btn-magnetic { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }

/* ============================================================
   SECTION TRANSITIONS � smooth colour shifts
   ============================================================ */
.about-preview {
  background: linear-gradient(to bottom, var(--black-soft), rgba(81,0,95,0.06), var(--black-soft));
}
.services { background: rgba(15,15,15,0.98); }
.clients {
  background: linear-gradient(to bottom, var(--black-soft), rgba(107,0,128,0.05), var(--black-soft));
}
.press { background: var(--black-soft); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float i { font-size: 1.3rem; }
.whatsapp-float:hover {
  background: #1DAB57;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.whatsapp-label { white-space: nowrap; }
@media (max-width: 480px) {
  .whatsapp-float { bottom: 5rem; right: 1rem; padding: 0.7rem 1rem; }
  .whatsapp-label { display: none; }
  .whatsapp-float { border-radius: 50%; width: 52px; height: 52px; padding: 0; justify-content: center; }
}

/* ============================================================
   STICKY MOBILE BOOKING BAR
   ============================================================ */
.mobile-booking-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8999;
  background: #080808;
  border-top: 1px solid rgba(245,166,35,0.2);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .mobile-booking-bar { display: flex; }
  body { padding-bottom: 70px; }
}
.mobile-book-btn {
  flex: 1;
  background: linear-gradient(135deg, #F5A623, #F7C048);
  color: #000;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem;
  text-align: center;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.mobile-wa-btn {
  flex: 1;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem;
  text-align: center;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--black-card); }
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--black-border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--black-border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-warm); }
.faq-question[aria-expanded="true"] { color: var(--gold-warm); }
.faq-icon {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--gold-warm);
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding-bottom: 0;
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 1.4rem;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-answer strong { color: var(--text-light); }
