/* ============================================================
   SO Music — brand redesign
   Colors derived from the client's real brand: logo gradient
   (pink -> purple), WhatsApp green accent, Assistant font.
   ============================================================ */

:root{
  --pink: #ee2a7b;
  --purple: #52116b;
  --purple-deep: #2c0a3a;
  --green: #25D366;
  --green-dark: #1aa64f;
  --ink: #201029;
  --body: #33373D;
  --muted: #69727D;
  --bg: #ffffff;
  --bg-soft: #faf6fb;
  --bg-soft-2: #f4eef8;
  --border: #ece3f0;
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(44, 10, 58, .08);
  --shadow-md: 0 12px 30px rgba(44, 10, 58, .14);
  --gradient-brand: linear-gradient(135deg, var(--pink), var(--purple));
  --font: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

.container{
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link{
  position: absolute;
  right: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 8px 8px;
}
.skip-link:focus{ right: 0; }

h1, h2, h3{ color: var(--ink); margin: 0 0 .4em; line-height: 1.2; }
h2{ font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; }
h3{ font-size: 1.35rem; font-weight: 800; }
.lead{ font-size: 1.08rem; color: var(--muted); max-width: 60ch; }
.lead-light{ font-size: 1.1rem; color: rgba(255,255,255,.88); max-width: 55ch; margin-inline: auto; }

.kicker{
  display: inline-block;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: .02em;
  margin-bottom: .5em;
}
.kicker-light{ color: #ffd7ea; }

.section{ padding: 88px 0; }
.section-head{ text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .lead{ margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .98rem;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-2px); }

.btn-primary{
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ box-shadow: var(--shadow-md); }

.btn-whatsapp{
  background: var(--green);
  color: #08331a;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover{ background: var(--green-dark); color: #fff; }

.btn-outline{
  background: transparent;
  border-color: var(--pink);
  color: var(--pink);
}
.btn-outline:hover{ background: var(--pink); color: #fff; }

.btn-outline-light{
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-outline-light:hover{ background: rgba(255,255,255,.15); }

.btn-lg{ padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
}
.brand{ display: flex; align-items: center; gap: 10px; }
.brand-logo{ border-radius: 50%; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong{ font-size: 1.15rem; color: var(--ink); font-weight: 800; }
.brand-text small{ color: var(--muted); font-size: .72rem; letter-spacing: .06em; }

.main-nav{ display: flex; gap: 26px; align-items: center; }
.main-nav a{
  font-weight: 600;
  font-size: .96rem;
  color: var(--body);
  position: relative;
  padding: 6px 2px;
}
.main-nav a::after{
  content: '';
  position: absolute;
  right: 0; left: 0; bottom: 0;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:hover::after{ transform: scaleX(1); }

.header-actions{ display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.phone-pill{
  display: flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--purple);
  font-size: .92rem;
  white-space: nowrap;
}
.phone-pill svg{ color: var(--pink); flex-shrink: 0; }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span{ width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding-top: 20px;
}
.hero-bg{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
}
.hero-overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(44,10,58,.55) 0%, rgba(44,10,58,.75) 55%, rgba(20,6,26,.92) 100%),
    linear-gradient(120deg, rgba(238,42,123,.35), rgba(82,17,107,.45));
}
.hero-content{ position: relative; z-index: 2; text-align: center; padding-block: 60px; }
.hero .eyebrow{
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.35);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 18px;
}
.hero-title{
  font-family: 'Suez One', var(--font);
  font-size: clamp(3rem, 9vw, 6rem);
  background: linear-gradient(120deg, #fff, #ffd7ea 60%, #ffb8dd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .1em;
}
.hero-tagline{ font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 700; margin-bottom: .3em; }
.hero-sub{ max-width: 640px; margin: 0 auto 32px; color: rgba(255,255,255,.85); font-size: 1.05rem; }
.hero-ctas{ display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 46px; }

.hero-stats{
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 46px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.hero-stats li{ display: flex; flex-direction: column; align-items: center; }
.hero-stats strong{ font-size: 1.9rem; font-weight: 800; }
.hero-stats span{ font-size: .85rem; color: rgba(255,255,255,.75); }

.scroll-cue{
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-cue span{
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 14px;
  position: relative;
}
.scroll-cue span::before{
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 3px;
  animation: scrollcue 1.6s infinite;
}
@keyframes scrollcue{
  0%{ opacity: 1; top: 6px; }
  70%{ opacity: 0; top: 20px; }
  100%{ opacity: 0; top: 6px; }
}

/* ---------- About ---------- */
.about{ background: var(--bg-soft); }
.about-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.check-list{
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 10px;
}
.check-list li{
  position: relative;
  padding-inline-start: 30px;
  font-weight: 600;
  color: var(--ink);
}
.check-list li::before{
  content: '✓';
  position: absolute;
  right: 0;
  top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-size: .75rem;
  display: flex; align-items: center; justify-content: center;
}
.about-media{ position: relative; }
.about-media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-media-caption{
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
}

/* ---------- Services cards ---------- */
.cards-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-icon{
  font-size: 1.8rem;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: var(--bg-soft-2);
  margin-bottom: 16px;
}
.card p{ color: var(--muted); margin: 0; }

/* ---------- Artists ---------- */
.artist-row{
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}
.artist-row:last-child{ margin-bottom: 0; }
.artist-row-reverse{ direction: ltr; }
.artist-row-reverse .artist-copy{ direction: rtl; }
.artist-media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.artist-media-solo{
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.karaoke-emoji{ font-size: 3rem; filter: drop-shadow(0 6px 14px rgba(0,0,0,.25)); }
.artist-copy p{ color: var(--muted); }

/* ---------- Stats band ---------- */
.stats-band{
  background: radial-gradient(1200px 500px at 20% -10%, rgba(238,42,123,.35), transparent),
              linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: #fff;
  text-align: center;
}
.stats-title{ color: #fff; max-width: 760px; margin-inline: auto 48px; margin-block: 0 48px; font-weight: 700; font-size: 1.3rem; }
.stats-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 760px;
  margin-inline: auto;
}
.stat{ padding: 20px; }
.stat-num{ font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; }
.stat-plus{ font-size: 1.6rem; font-weight: 800; color: #ffb8dd; }
.stat p{ margin: 6px 0 0; color: rgba(255,255,255,.8); font-weight: 600; }

/* ---------- Reviews ---------- */
.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.review-head{ display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-head img{ width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.review-head strong{ display: block; color: var(--ink); }
.stars{ color: #ffb400; font-size: .85rem; letter-spacing: 1px; }
.review-tag{ font-size: .75rem; color: var(--muted); }
.review-card p{ margin: 0; color: var(--body); font-size: .95rem; }
.reviews-more{ text-align: center; margin-top: 30px; }
.reviews-more a{ font-weight: 700; color: var(--pink); }

/* ---------- Gallery ---------- */
.gallery{ background: var(--bg-soft); }
.gallery .section-head a{ color: var(--pink); font-weight: 700; }
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img{
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.gallery-grid img:hover{ transform: scale(1.03); }
.gallery-cta{
  aspect-ratio: 1/1;
  border-radius: 14px;
  background: var(--gradient-brand);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  text-align: center;
}

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  text-align: center;
}
.cta-inner h2{ color: #fff; max-width: 760px; margin-inline: auto; }
.cta-inner .lead-light{ margin-bottom: 34px; }
.cta-actions{ display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--purple-deep); color: rgba(255,255,255,.85); padding-top: 60px; }
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand{ display: flex; align-items: center; gap: 12px; }
.footer-brand img{ border-radius: 50%; }
.footer-brand strong{ color: #fff; font-size: 1.1rem; }
.footer-brand p{ margin: 2px 0 0; font-size: .82rem; color: rgba(255,255,255,.6); }
.footer-col h4{ color: #fff; margin: 0 0 14px; font-size: 1rem; }
.footer-col{ display: flex; flex-direction: column; gap: 10px; font-size: .92rem; }
.footer-col a:hover{ color: var(--pink); }
.footer-social{ display: flex; gap: 10px; margin-top: 6px; }
.footer-social a{
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800;
}
.footer-social a:hover{ background: var(--gradient-brand); }
.footer-bottom{ text-align: center; padding: 20px 0; font-size: .82rem; color: rgba(255,255,255,.55); }

/* ---------- Floating buttons ---------- */
.float-whatsapp{
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom));
  left: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #08331a;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  z-index: 90;
  animation: pulse 2.4s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.back-to-top{
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
}
.back-to-top.visible{ opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Scroll reveal ---------- */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 980px){
  .main-nav{ display: none; }
  .nav-toggle{ display: flex; }
  .phone-pill{ display: none; }

  .main-nav.open{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; right: 0; left: 0;
    background: #fff;
    padding: 20px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .about-grid{ grid-template-columns: 1fr; }
  .artist-row, .artist-row-reverse{ grid-template-columns: 1fr; direction: rtl; }
  .cards-grid{ grid-template-columns: repeat(2, 1fr); }
  .reviews-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px){
  .header-inner{ padding-block: 10px; gap: 8px; }
  .brand-text small{ display: none; }
  .btn-whatsapp .btn-label{ display: none; }
  .header-actions .btn-whatsapp{
    width: 42px; height: 42px; padding: 0;
    border-radius: 50%;
  }
  .hero-ctas{ flex-direction: column; align-items: stretch; }
  .hero-ctas .btn{ width: 100%; }
  .artist-media, .artist-media img, .artist-media-solo{ max-height: 340px; }
}

@media (max-width: 560px){
  .section{ padding: 60px 0; }
  .cards-grid{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; text-align: center; }
  .footer-brand{ flex-direction: column; }
  .footer-col{ align-items: center; }
  .footer-social{ justify-content: center; }
  .hero-stats{ gap: 26px; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cta-actions{ flex-direction: column; align-items: stretch; }
  .cta-actions .btn{ width: 100%; }
  .float-whatsapp{ width: 50px; height: 50px; left: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); }
  .back-to-top{ width: 42px; height: 42px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); }
}
