:root {
  --bg: #0a0710;            /* deep purple-black */
  --bg-2: #0f0a1a;         /* alt section */
  --surface: #ffffff;      /* white content cards */
  --fg: #f3eefb;           /* near-white text on dark */
  --fg-dark: #191228;      /* text on white cards */
  --muted: #a99fc6;        /* muted text on dark */
  --muted-dark: #6a6386;   /* muted text on white cards */
  --line: #271d3d;         /* borders on dark */
  --line-light: #ece7f6;   /* borders on white cards */
  --neon: #b23bff;         /* purple neon */
  --neon-2: #ff3db8;       /* magenta/pink neon */
  --neon-cyan: #38e1ff;    /* cyan sparkle */
  --glow: rgba(178, 59, 255, .5);
  --whatsapp: #25d366;
  --radius: 14px;
  --maxw: 1160px;
  --shadow: 0 14px 40px rgba(0, 0, 0, .5);
  --shadow-white: 0 18px 44px rgba(0, 0, 0, .45);
  --grad: linear-gradient(135deg, #b23bff, #ff3db8);
  --grad-bars: linear-gradient(180deg, #38e1ff, #b23bff 55%, #ff3db8);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --beat: 0;               /* live music energy 0–1, driven by music.js */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--neon); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 27px; border-radius: 11px; font-weight: 700; font-size: .98rem;
  background: var(--grad); color: #fff; border: 0; cursor: pointer;
  box-shadow: 0 8px 30px rgba(178, 59, 255, .45);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 12px 40px rgba(178, 59, 255, .6); }
.btn--ghost { background: transparent; color: var(--fg); border: 1.5px solid rgba(178, 59, 255, .5); box-shadow: none; }
.btn--ghost:hover { border-color: var(--neon); color: #fff; background: rgba(178, 59, 255, .1); box-shadow: 0 0 24px rgba(178, 59, 255, .3); }

/* Sections */
.section { padding: 92px 0; position: relative; }
.section--alt { background: var(--bg-2); }
.eyebrow { color: var(--neon); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .78rem; margin: 0 0 .8em; }
h1, h2, h3 { line-height: 1.14; margin: 0 0 .4em; color: #fff; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
h3 { font-size: 1.25rem; }
.muted { color: var(--muted); }
.section > .container > .reveal > h2, .section > .container > h2 { max-width: 16ch; }

/* ---------- Nav (light, keeps the colour logo crisp) ---------- */
.nav { position: sticky; top: 0; z-index: 900; background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-light); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 22px; max-width: var(--maxw); margin-inline: auto; }
.nav__brand img { height: 60px; width: auto; display: block; filter: drop-shadow(0 2px 10px rgba(178, 59, 255, .45));
  transition: filter .2s ease, transform .2s ease; }
.nav__brand:hover img { transform: scale(1.03); filter: drop-shadow(0 3px 16px rgba(178, 59, 255, .7)); }
.nav__menu { display: flex; align-items: center; gap: 22px; }
.menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.menu > li { position: relative; }
.menu > li > a { display: block; padding: 10px 12px; color: #241a38; font-weight: 600; font-size: .95rem; border-radius: 8px; }
.menu > li > a:hover, .menu > li > a.is-active { color: var(--neon); }
.menu .has-children > a::after { content: "▾"; margin-left: 5px; font-size: .7em; color: var(--muted-dark); }
.submenu { position: absolute; top: 100%; left: 0; min-width: 262px; background: #fff; border: 1px solid var(--line-light);
  border-radius: 12px; box-shadow: 0 20px 50px rgba(20, 8, 40, .18); padding: 8px; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .16s ease, transform .16s ease, visibility .16s; z-index: 50; }
.menu .has-children:hover .submenu { opacity: 1; visibility: visible; transform: translateY(4px); }
.submenu li a { display: block; padding: 9px 12px; border-radius: 8px; color: #241a38; font-size: .92rem; font-weight: 500; }
.submenu li a:hover, .submenu li a.is-active { background: #f5f0ff; color: var(--neon); }
.nav__phone { padding: 10px 18px; font-size: .9rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: #241a38; border-radius: 2px; }
@media (max-width: 880px) {
  .nav__burger { display: flex; }
  .nav__brand img { height: 48px; }
  .nav__menu { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line-light);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 18px 20px; box-shadow: 0 18px 40px rgba(20, 8, 40, .18); display: none; }
  .nav__toggle:checked ~ .nav__menu { display: flex; }
  .menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .menu > li > a { padding: 13px 8px; border-bottom: 1px solid var(--line-light); }
  .menu .has-children > a::after { display: none; }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 2px 0 8px 16px; min-width: 0; }
  .nav__phone { margin-top: 14px; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 100px 0 92px; overflow: hidden;
  background:
    radial-gradient(760px 420px at 82% 8%, rgba(255, 61, 184, .22), transparent 60%),
    radial-gradient(820px 520px at 6% 4%, rgba(178, 59, 255, .28), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
/* Ambient section glow that pulses with the music (--beat). */
.hero::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: calc(var(--beat, 0) * 1.35); transition: opacity .06s linear;
  background:
    radial-gradient(680px 400px at 82% 8%, rgba(255, 61, 184, .6), transparent 62%),
    radial-gradient(760px 480px at 6% 4%, rgba(178, 59, 255, .65), transparent 62%); }
.hero > * { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero h1 { white-space: pre-line;
  text-shadow: 0 0 calc(40px + var(--beat, 0) * 30px) rgba(178, 59, 255, calc(.35 + var(--beat, 0) * .95)); }
.hero__lead { max-width: 560px; font-size: 1.18rem; color: var(--muted); }
.hero__cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero__media { position: relative; }
/* Neon halo behind the photo — its intensity tracks the music (--beat). */
.hero__media::before { content: ""; position: absolute; inset: -18%; z-index: 0; filter: blur(58px);
  opacity: calc(.42 + var(--beat, 0) * 1.05); transform: scale(calc(1 + var(--beat, 0) * .2));
  transition: opacity .06s linear, transform .08s ease-out;
  background: radial-gradient(circle at 66% 30%, rgba(178, 59, 255, .62), transparent 60%),
              radial-gradient(circle at 30% 78%, rgba(255, 61, 184, .52), transparent 62%); }
.hero__media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); border: 1px solid rgba(178, 59, 255, calc(.28 + var(--beat, 0) * .5));
  box-shadow: 0 30px 70px rgba(0, 0, 0, .55), 0 0 calc(40px + var(--beat, 0) * 60px) rgba(178, 59, 255, calc(.12 + var(--beat, 0) * .7)); }
@media (max-width: 900px) {
  .hero { padding: 66px 0 62px; }
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero__media { order: 2; }
  .hero__lead { max-width: none; }
}

/* ---------- Cards (white, they pop on dark) ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 42px; }
.card { background: var(--surface); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-white); color: var(--fg-dark); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(178, 59, 255, .28); }
.card h3 { color: var(--fg-dark); }
.card .muted { color: var(--muted-dark); }
.card--photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card__img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .45s ease; }
.card--photo:hover .card__img { transform: scale(1.06); }
.card__body { padding: 24px 26px 28px; }
.card--photo .card__body h3 { margin-bottom: .35em; }
/* Clickable service cards (link to their category page) */
.card--link { text-decoration: none; color: var(--fg-dark); display: flex; flex-direction: column; }
.card--link .card__body { display: flex; flex-direction: column; height: 100%; }
.card__more { margin-top: auto; padding-top: 14px; font-weight: 700; color: var(--neon);
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Category cards (Packages grid + image link cards) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin: 28px 0 10px; }
.cat-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line-light);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-white); text-decoration: none;
  color: var(--fg-dark); transition: transform .18s ease, box-shadow .18s ease; }
.cat-card:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(178, 59, 255, .28); }
.cat-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .45s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card__label { padding: 16px 18px; font-weight: 700; line-height: 1.3; }
@media (prefers-reduced-motion: reduce) { .cat-card:hover img { transform: none; } }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-top: 42px; }
.gallery figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  background: var(--bg-2); border: 1px solid var(--line); box-shadow: var(--shadow); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover { border-color: rgba(178, 59, 255, .6); box-shadow: 0 0 30px rgba(178, 59, 255, .35); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; padding: 14px 14px 12px; font-size: .88rem; color: #fff; font-weight: 600;
  background: linear-gradient(transparent, rgba(10, 7, 16, .9)); }

/* ---------- Reviews / testimonials ---------- */
.stars { color: #ffc63d; letter-spacing: 2px; white-space: nowrap; }
.reviews__summary { margin-top: 12px; font-size: 1.05rem; color: var(--fg); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.reviews__summary strong { color: #ffc63d; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; margin-top: 34px; }
.rev { margin: 0; background: var(--surface); border: 1px solid var(--line-light); border-radius: var(--radius);
  box-shadow: var(--shadow-white); padding: 24px 24px 22px; color: var(--fg-dark); display: flex; flex-direction: column; gap: 14px; }
.rev__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rev blockquote { margin: 0; color: var(--fg-dark); line-height: 1.55; }
.rev blockquote::before { content: "\201C"; }
.rev blockquote::after { content: "\201D"; }
.rev figcaption { margin-top: auto; display: flex; flex-direction: column; }
.rev__author { font-weight: 700; color: var(--fg-dark); }
.rev__role { font-size: .85rem; color: var(--muted-dark); }
.rev__src { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; padding: 4px 9px; border-radius: 999px; }
.rev__src--google { background: #e8f0fe; color: #1a73e8; }
.rev__src--facebook { background: #e7f0ff; color: #1877f2; }
.rev__src--direct { background: rgba(178, 59, 255, .12); color: #7a2fb0; }
.reviews__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* ---------- FAQ (accordion) ---------- */
.faq { max-width: 820px; margin-top: 34px; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--line-light); border-radius: var(--radius);
  box-shadow: var(--shadow-white); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--fg-dark);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.4rem; font-weight: 700; color: var(--neon); line-height: 1;
  transition: transform .2s ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 22px 20px; color: var(--muted-dark); }
.faq__a p { margin: 0; }

/* ---------- Portfolio (categorised) ---------- */
.portfolio-cat { margin-top: 48px; }
.portfolio-cat:first-child { margin-top: 8px; }
.portfolio-cat__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.portfolio-cat__head h2 { margin: 0; background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; }
.portfolio-cat__link { color: var(--neon); font-weight: 700; text-decoration: none; white-space: nowrap; }
.portfolio-cat__link:hover { color: var(--neon-2); }
.portfolio-cat .gallery { margin-top: 22px; }

/* ---------- Contact ---------- */
.contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 28px; max-width: 820px; }
.contact-methods .cm { background: var(--surface); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-white); }
.contact-methods .cm span { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--neon); font-weight: 700; margin-bottom: 4px; }
.contact-methods .cm a, .contact-methods .cm strong { color: var(--fg-dark); font-weight: 600; font-size: .98rem; overflow-wrap: anywhere; }

/* ---------- Footer ---------- */
.footer { background: #070510; color: #b7aecf; padding: 66px 0 30px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__brand-name { font-weight: 800; font-size: 1.35rem; color: #fff; letter-spacing: .02em; }
.footer__brand-name span { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer p { margin: 8px 0; color: #8f86ab; }
.footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 14px; }
.footer a { color: #b7aecf; }
.footer a:hover { color: var(--neon); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 9px; }
.footer__socials { display: flex; gap: 12px; margin-top: 4px; flex-wrap: wrap; }
.footer__socials .social { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; color: #fff; background: rgba(255, 255, 255, .07); border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.footer__socials .social:hover { transform: translateY(-3px); border-color: transparent;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .45), 0 0 16px rgba(178, 59, 255, .5); }
.footer__socials .social--facebook:hover  { background: #1877f2; }
.footer__socials .social--instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.footer__socials .social--tiktok:hover    { background: #000; box-shadow: 0 8px 22px rgba(0,0,0,.5), 0 0 16px rgba(56,225,255,.6); }
.footer__socials .social--youtube:hover   { background: #ff0000; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); margin-top: 44px; padding-top: 22px; font-size: .88rem; color: #6a6386; }
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Pulse rings (signature audio-reactive element) ---------- */
/* A glowing core that emits neon rings; the rings ripple while music plays,
   and the whole thing swells with the beat via --beat. */
.pulse { position: absolute; left: 48px; bottom: 48px; width: 20px; height: 20px; z-index: 2;
  transform: scale(calc(1 + var(--beat, 0) * .6)); transition: transform .07s ease-out; }
.pulse__core { position: absolute; inset: 0; border-radius: 50%; background: var(--grad);
  box-shadow: 0 0 calc(12px + var(--beat, 0) * 40px) rgba(178, 59, 255, calc(.55 + var(--beat, 0) * .45)),
              0 0 6px rgba(255, 255, 255, .7);
  animation: pulseCore 2.8s ease-in-out infinite; }
@keyframes pulseCore { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.16); } }
.pulse__ring { position: absolute; left: 50%; top: 50%; width: 20px; height: 20px; margin: -10px 0 0 -10px;
  border-radius: 50%; border: 2px solid var(--neon); opacity: 0;
  animation: pulseRing 2.6s cubic-bezier(.15, .6, .3, 1) infinite; animation-play-state: paused; }
.pulse__ring:nth-child(2) { border-color: var(--neon-2); animation-delay: .87s; }
.pulse__ring:nth-child(3) { border-color: var(--neon-cyan); animation-delay: 1.74s; }
.pulse.is-playing .pulse__ring { animation-play-state: running; }
@keyframes pulseRing {
  0%   { opacity: .9; transform: scale(1); border-width: 2px; }
  70%  { opacity: .25; }
  100% { opacity: 0; transform: scale(9); border-width: 1px; }
}
@media (prefers-reduced-motion: reduce) { .pulse__ring, .pulse__core { animation: none; } }

/* Centred pulse for interior page heroes */
.pulse--center { position: static; margin: 30px auto 6px; }
/* Pulse used inside a section divider */
.pulse--divider { position: static; }

/* Section divider with a glowing equalizer */
.divider { display: flex; align-items: center; gap: 22px; max-width: 760px; margin: 0 auto; padding: 4px 22px; }
.divider .line { flex: 1; height: 1px; }
.divider .line--l { background: linear-gradient(90deg, transparent, rgba(178, 59, 255, .5)); }
.divider .line--r { background: linear-gradient(90deg, rgba(178, 59, 255, .5), transparent); }
.divider-wrap { padding: 44px 0; }

/* ---------- Interior page hero + body ---------- */
.page-hero { position: relative; overflow: hidden; padding: 66px 0 50px; border-bottom: 1px solid var(--line);
  background: radial-gradient(760px 380px at 88% 0%, rgba(255, 61, 184, .2), transparent 58%),
              radial-gradient(780px 420px at 4% 10%, rgba(178, 59, 255, .26), transparent 58%), var(--bg); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin: 0; text-shadow: 0 0 34px rgba(178, 59, 255, .3); }
.page-body { max-width: 940px; color: var(--fg); }
.page-body > h2 { margin-top: 1.7em; }
.page-body > h2:first-child, .page-body > h3:first-child, .page-body > p:first-child { margin-top: 0; }
.page-body h2, .page-body h3 { color: #fff; }
.page-body h3 { margin-top: 1.3em; }
.page-body p { color: var(--fg); margin: 0 0 1.05em; }
.page-body ul, .page-body ol { color: var(--fg); padding-left: 1.25em; margin: 0 0 1.2em; }
.page-body li { margin-bottom: .4em; }
.page-body .lead { font-size: 1.16rem; color: var(--muted); }
.page-body a { color: var(--neon); font-weight: 600; }

/* Package cards (white, on the dark page) */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin: 26px 0 8px; }
.pkg { background: var(--surface); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-white); color: var(--fg-dark); transition: transform .15s ease, box-shadow .15s ease; }
.pkg:hover { transform: translateY(-3px); box-shadow: 0 22px 54px rgba(178, 59, 255, .3); }
.pkg h3 { margin: 0 0 .3em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.pkg p, .pkg li { color: var(--fg-dark); }
.pkg .price { font-weight: 800; color: var(--neon); display: inline-block; margin-bottom: .4em; }
.pkg .best { font-size: .82rem; color: var(--muted-dark); margin-top: .6em; }
.pkg ul { margin: .5em 0 0; }
.js .pkg { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.js .pkg.is-visible { opacity: 1; transform: none; }
.js .pkg.is-visible:hover { transform: translateY(-3px); }
.pkg-grid .pkg:nth-child(2) { transition-delay: .06s; }
.pkg-grid .pkg:nth-child(3) { transition-delay: .12s; }
.pkg-grid .pkg:nth-child(4) { transition-delay: .18s; }
.pkg-grid .pkg:nth-child(5) { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .js .pkg { opacity: 1; transform: none; transition: none; } }

/* Notices */
.notice { padding: 14px 18px; border-radius: 10px; margin-bottom: 22px; font-weight: 500; }
.notice--success { background: rgba(56, 225, 170, .12); color: #55e6b0; border: 1px solid rgba(56, 225, 170, .4); }
.notice--error { background: rgba(255, 61, 120, .12); color: #ff8098; border: 1px solid rgba(255, 61, 120, .4); }

/* Contact page */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; margin-top: 26px; }
.contact-form-card, .contact-info-card { background: var(--surface); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-white); color: var(--fg-dark); }
.contact-form-card h2, .contact-info-card h2 { color: var(--fg-dark); margin-top: 0; }
.cform .field { margin-bottom: 16px; }
.cform label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; color: var(--fg-dark); }
.cform input, .cform textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--line-light); border-radius: 8px; font: inherit; background: #fff; color: var(--fg-dark); }
.cform input:focus, .cform textarea:focus { outline: 2px solid rgba(178, 59, 255, .35); border-color: var(--neon); }
.contact-list { list-style: none; padding: 0; margin: 0 0 18px; }
.contact-list li { padding: 11px 0; border-bottom: 1px solid var(--line-light); color: var(--fg-dark); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list li span { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--neon); font-weight: 700; margin-bottom: 2px; }
.contact-info-card a, .contact-form-card a { color: var(--neon); }
@media (max-width: 720px) { .contact-layout { grid-template-columns: 1fr; } }

/* Scroll-reveal */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.grid .reveal:nth-child(2), .gallery .reveal:nth-child(2) { transition-delay: .07s; }
.grid .reveal:nth-child(3), .gallery .reveal:nth-child(3) { transition-delay: .14s; }
.grid .reveal:nth-child(4), .gallery .reveal:nth-child(4) { transition-delay: .21s; }
.grid .reveal:nth-child(5), .gallery .reveal:nth-child(5) { transition-delay: .28s; }
.grid .reveal:nth-child(6), .gallery .reveal:nth-child(6) { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* WhatsApp float button */
.wa { position: fixed; bottom: 22px; right: 22px; z-index: 1000; width: 58px; height: 58px;
  border-radius: 50%; background: var(--whatsapp); color: #fff; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 8px 30px rgba(37, 211, 102, .5); transition: transform .15s ease; }
.wa:hover { transform: scale(1.08); }
@media (max-width: 480px) { .wa { bottom: 16px; right: 16px; width: 52px; height: 52px; } }

/* Music player pill */
.mp { position: fixed; bottom: 22px; left: 22px; z-index: 1000; }
.mp__btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px;
  border: 1px solid rgba(178, 59, 255, .45); background: rgba(15, 10, 26, .82); backdrop-filter: blur(8px); color: var(--fg);
  font: inherit; font-size: .85rem; font-weight: 600; cursor: pointer; box-shadow: 0 0 22px rgba(178, 59, 255, .3);
  transition: transform .15s ease, border-color .15s ease, color .15s ease; }
.mp__btn:hover { transform: translateY(-2px); border-color: var(--neon); color: #fff; }
.mp__btn[aria-pressed="true"] { border-color: var(--neon); color: var(--neon); box-shadow: 0 0 28px rgba(178, 59, 255, .5); }
@media (max-width: 480px) { .mp { bottom: 16px; left: 16px; } .mp__label { display: none; } }
