/* Revelation Tattoo – Dark-first site */
:root{
  --bg:#0b0f14;
  --bg2:#0f1722;
  --text:#eaf2ff;
  --muted:rgba(234,242,255,.72);
  --muted2:rgba(234,242,255,.60);
  --line:rgba(255,255,255,.10);
  --shadow: 0 16px 44px rgba(0,0,0,.55);
  --shadow2: 0 18px 48px rgba(0,0,0,.65);
  --teal:#0fb7b0;
  --radius2:22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
}
a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, 92vw); margin:0 auto; }

.skip{
  position:absolute; left:-999px; top:0;
  background:var(--teal); color:#001514;
  padding:.6rem .9rem; border-radius:999px;
  z-index:9999;
}
.skip:focus{ left:1rem; top:1rem; }

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(10,14,18,.90);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header__inner{ display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.9rem 0; }

.brand{ display:flex; align-items:center; gap:.85rem; min-width: 260px; }
.brand__name{ font-weight:900; letter-spacing:.2px; }
.brand__tag{ font-size:.88rem; color: rgba(255,255,255,.72); margin-top:2px; }

.brand__badge{
  width:48px; height:48px; border-radius:999px; position:relative; display:grid; place-items:center;
  background: radial-gradient(600px 300px at 30% 0%, rgba(15,183,176,.25), transparent 60%),
              linear-gradient(180deg, rgba(15,183,176,.18), rgba(15,183,176,.06));
  border:1px solid rgba(15,183,176,.45);
  box-shadow: 0 10px 26px rgba(15,183,176,.10);
  overflow:hidden;
}
.badge__ring{ position:absolute; inset:6px; border-radius:999px; border: 1px solid rgba(255,255,255,.16); }
.badge__text{ text-align:center; font-weight:900; font-size:.52rem; letter-spacing:.12em; line-height:1.05; color: rgba(255,255,255,.90); transform: translateY(1px); }
.badge__mid{ color: var(--teal); }

.nav{ display:flex; gap:1rem; align-items:center; }
.nav a{ color: rgba(255,255,255,.82); padding:.5rem .65rem; border-radius:999px; }
.nav a:hover{ background: rgba(255,255,255,.08); }

.navToggle{
  display:none; color:#fff; background: transparent;
  border:1px solid rgba(255,255,255,.18); border-radius:999px;
  padding:.55rem .75rem;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.9rem 1.05rem; border-radius:999px;
  border:1px solid rgba(15,183,176,.55);
  background: linear-gradient(180deg, rgba(15,183,176,.42), rgba(15,183,176,.12));
  color:#FFFFFF; font-weight:900;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.btn:hover{ border-color: rgba(15,183,176,.85); }
.btn--ghost{ background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.22); color:#fff; box-shadow:none; }
.btn--ghost:hover{ background: rgba(255,255,255,.10); }
.btn--ghostDark{ background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.92); box-shadow:none; }
.btn--ghostDark:hover{ background: rgba(255,255,255,.10); }
.btn--small{ padding:.6rem .85rem; font-weight:900; }
.btn--wide{ width:100%; }

.accent{ color: var(--teal); }
.muted{ color: var(--muted); }
.smallMuted{ color: var(--muted2); font-size:.9rem; }

.hero{ position:relative; min-height: 70vh; display:grid; place-items:center; overflow:hidden; }
.hero__bg{
  position:absolute; inset:0;
  background:#000000;
  background-size: cover; background-position: center;
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.02);
}
.hero__inner{ position:relative; width:100%; padding: 1.35rem 0 1.6rem; display:flex; justify-content:center;  position: relative; z-index: 2; }
.hero__copy{ max-width: 900px; text-align:center; }

.hero__kicker{ margin:0 0 .65rem; color: rgba(255,255,255,.78); font-weight:900; letter-spacing:.08em; font-size:.82rem; text-transform:uppercase; }
.hero__title{ margin:0 0 .75rem; font-weight: 900; letter-spacing:.6px; font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.02; }
.hero__subtitle{ margin:0 auto 1.25rem; color: rgba(255,255,255,.84); font-size: clamp(1rem, 1.6vw, 1.24rem); max-width: 70ch; }
.hero__cta{ display:flex; gap:.85rem; flex-wrap:wrap; justify-content:center; margin-bottom: 1.1rem; }
.hero__trust{ display:flex; gap:.55rem; flex-wrap:wrap; justify-content:center; }
.trustPill{
  padding:.5rem .75rem; border-radius:999px; border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18); color: rgba(255,255,255,.88); font-weight:800; font-size:.88rem;
}

.scrollOrb{
  position:absolute; left:50%; bottom: 18px; transform: translateX(-50%);
  display:inline-flex; align-items:center; gap:.6rem;
  padding:.65rem .85rem; border-radius:999px;
  border:1px solid rgba(15,183,176,.55);
  background: rgba(0,0,0,.22);
  box-shadow: var(--shadow);
}
.scrollOrb__dot{
  width:10px; height:10px; border-radius:999px; background: var(--teal);
  box-shadow: 0 0 0 6px rgba(15,183,176,.14);
  animation: pulse 1.6s ease-in-out infinite;
}
.scrollOrb__label{ color: rgba(255,255,255,.92); font-weight:900; font-size:.88rem; }
@keyframes pulse{
  0%{ transform: translateY(0); box-shadow: 0 0 0 6px rgba(15,183,176,.14); }
  50%{ transform: translateY(-2px); box-shadow: 0 0 0 10px rgba(15,183,176,.08); }
  100%{ transform: translateY(0); box-shadow: 0 0 0 6px rgba(15,183,176,.14); }
}

.section{ padding: 3.1rem 0; }
.section--dark{
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(15,183,176,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  border-top:1px solid rgba(255,255,255,.06);
}

.sectionHead{ text-align:center; margin-bottom: 1.6rem; }
.h2{ margin:0 0 .35rem; font-weight: 900; font-size: clamp(1.7rem, 2.6vw, 2.35rem); }
.h3{ margin:.7rem 0 .2rem; font-size: 1.15rem; font-weight: 900; }
.lead{ font-size: 1.05rem; color: rgba(255,255,255,.92); font-weight: 700; }

.aboutCentered{ display:flex; justify-content:center; }
.aboutCentered__inner{ width:min(860px, 100%); text-align:center; }
.stats{ display:flex; gap: 1.4rem; margin: 1.25rem 0 1.1rem; flex-wrap:wrap; }
.stats--center{ justify-content:center; }
.stat{ min-width: 130px; }
.stat__num{ font-size:2.2rem; font-weight:900; color: var(--teal); }
.stat__label{ color: var(--muted2); font-weight:800; }

.callout{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow);
  text-align:left;
}
.callout__title{ font-weight: 900; margin-bottom: .5rem; }
.bullets{ margin:.25rem 0 0; padding-left: 1.1rem; color: rgba(255,255,255,.86); }
.bullets li{ margin:.35rem 0; }

.cards{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card{
  border-radius: var(--radius2);
  padding: 1rem 1.05rem;
  display:flex;
  flex-direction:column;
  min-height: 420px;
}
.card--dark{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.card__top{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:.35rem; }
.avatar{
  width:68px; height:68px; border-radius:18px;
  border:1px solid rgba(15,183,176,.30);
  background: radial-gradient(500px 260px at 30% 0%, rgba(15,183,176,.22), rgba(15,183,176,.04));
}
.badge{
  padding:.35rem .6rem; border-radius:999px;
  background: rgba(15,183,176,.18);
  border: 1px solid rgba(15,183,176,.30);
  font-weight:900; color: rgba(235,255,255,.92); font-size:.86rem;
}
.role{ color: rgba(23,149,158,1.00); font-weight:800; font-size:.92rem; margin-bottom:.6rem; }
.tags{ display:flex; gap:.45rem; flex-wrap:wrap; margin:.85rem 0 1rem; }
.tag{
  padding:.35rem .55rem; border-radius:999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  font-weight:800; font-size:.82rem;
  color: rgba(255,255,255,.86);
}
.card__actions{ display:flex; gap:.6rem; flex-wrap:wrap; margin-top:auto; }

.locationGrid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 1rem; align-items:start; }
.mapCard{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
  min-height: 420px;
  background: rgba(255,255,255,.04);
}
.mapCard iframe{ width:100%; height:100%; border:0; min-height:420px; filter: saturate(.95) contrast(1.02); }

.infoStack{ display:grid; gap:.75rem; }
.infoItem{
  display:flex; gap:.85rem; align-items:flex-start;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding:.95rem 1rem;
  box-shadow: var(--shadow);
}
.infoIcon{
  width:44px; height:44px; border-radius:14px;
  background: rgba(15,183,176,.18);
  border: 1px solid rgba(15,183,176,.30);
  display:grid; place-items:center;
  font-size:1.1rem;
  flex: 0 0 auto;
}
.infoTitle{ font-weight:900; margin-bottom:.25rem; }
.link{ color: var(--teal); font-weight:900; }
.link:hover{ color: #35e3dc; }

.faq{ max-width: 860px; margin:0 auto; display:grid; gap:.65rem; text-align:left; }
.faq details{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding:.9rem 1rem;
}
.faq summary{ cursor:pointer; font-weight:900; }
.faq__body{ margin-top:.65rem; color: rgba(255,255,255,.86); }

.form{ max-width: 920px; margin:0 auto; border-radius: var(--radius2); padding: 1rem 1.05rem; }
.form--dark{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.formGrid{ display:grid; grid-template-columns: 1fr 1fr; gap:.95rem; }
label{ display:block; font-weight:900; color: rgba(255,255,255,.92); }
.req{ color: #ff6b6b; }
input, select, textarea{
  width:100%; margin-top:.45rem; padding:.85rem .9rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.90);
  font-weight:600;
}
input:focus, select:focus, textarea:focus{ outline:none; border-color: rgba(15,183,176,.75); box-shadow: 0 0 0 4px rgba(15,183,176,.18); }
textarea{ resize: vertical; }
.span2{ grid-column: 1 / -1; }
.charRow{ display:flex; justify-content:flex-end; margin-top:.25rem; }
.checkRow{ display:flex; gap:.65rem; align-items:flex-start; font-weight:800; color: rgba(255,255,255,.86); }
.checkRow input{ width:18px; height:18px; margin-top:.35rem; }
.formStatus{ margin-top:.9rem; font-weight:800; color: rgba(255,255,255,.92); }

/* Footer */
.siteFooter{ background:#06080b; border-top:1px solid rgba(255,255,255,.08); padding: 2.4rem 0 1.2rem; }
.footerGrid{ display:grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 2rem; align-items:start; }
.footerTitle{ font-weight:900; font-size:1.1rem; margin-bottom:.9rem; }
.footerTag{ max-width: 34ch; margin:.8rem 0 0; }
.footerLink{ display:block; color: rgba(255,255,255,.72); padding:.35rem 0; }
.footerLink:hover{ color: rgba(255,255,255,.92); }
.footerText{ margin:.35rem 0 .6rem; }
.socialRow{ display:flex; gap:.75rem; align-items:center; }
.socialBtn{
  width:46px; height:46px; border-radius:999px; display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  font-weight:900; color: rgba(255,255,255,.86);
}
.socialBtn:hover{ border-color: rgba(15,183,176,.55); color: rgba(255,255,255,.96); }

.footerBottom{
  margin-top:2rem; padding-top:1.2rem;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap;
}
.footerLogo__badge{
  width:56px; height:56px; border-radius:999px; position:relative; display:grid; place-items:center;
  background: radial-gradient(600px 300px at 30% 0%, rgba(15,183,176,.25), transparent 60%),
              linear-gradient(180deg, rgba(15,183,176,.18), rgba(15,183,176,.06));
  border:1px solid rgba(15,183,176,.45);
  box-shadow: 0 10px 26px rgba(15,183,176,.10);
  overflow:hidden;
}
.footerLogo__ring{ position:absolute; inset:7px; border-radius:999px; border: 1px solid rgba(255,255,255,.16); }
.footerLogo__text{ text-align:center; font-weight:900; font-size:.56rem; letter-spacing:.12em; line-height:1.05; color: rgba(255,255,255,.90); transform: translateY(1px); }
.footerLogo__mid{ color: var(--teal); }

/* Floating Q&A panel */
.fab{
  position: fixed; right: 18px; bottom: 18px;
  display:inline-flex; align-items:center; gap:.65rem;
  padding:.85rem 1rem; border-radius:999px;
  background:#070a0f; color: rgba(255,255,255,.92);
  border: 1px solid rgba(15,183,176,.55);
  box-shadow: var(--shadow2);
  cursor:pointer;
}
.fab__text{ font-weight:900; }
.chat{
  position: fixed; right: 18px; bottom: 84px;
  width: min(360px, calc(100vw - 36px));
  border-radius: 18px;
  background: rgba(10,14,18,.96);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow2);
  overflow:hidden;
  display:none;
}
.chat.isOpen{ display:block; }
.chat__head{ display:flex; justify-content:space-between; align-items:center; padding:.85rem .95rem; border-bottom:1px solid rgba(255,255,255,.10); }
.chat__title{ font-weight:900; }
.chat__close{
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: rgba(255,255,255,.90);
  width: 34px; height: 34px;
  cursor:pointer;
}
.chat__close:hover{ border-color: rgba(15,183,176,.55); }
.chat__body{ padding:.95rem; }
.chat__hint{ color: rgba(255,255,255,.70); font-weight:700; margin-bottom:.75rem; }
.chat__chips{ display:flex; gap:.55rem; flex-wrap:wrap; }
.qChip{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
  border-radius: 999px;
  padding: .55rem .75rem;
  font-weight: 800;
  cursor:pointer;
}
.qChip:hover{ border-color: rgba(15,183,176,.55); }
.chat__answer{
  margin-top:.85rem;
  padding:.75rem .8rem;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
  min-height: 72px;
  font-weight: 700;
}
.chat__divider{ height:1px; background: rgba(255,255,255,.10); margin:.9rem 0; }
.chat__cta{
  display:block; text-align:center;
  padding:.75rem .9rem;
  border-radius: 999px;
  border:1px solid rgba(15,183,176,.55);
  background: linear-gradient(180deg, rgba(15,183,176,.24), rgba(15,183,176,.10));
  color:#001514;
  font-weight:900;
}

/* Responsive */
@media (max-width: 980px){
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .locationGrid{ grid-template-columns: 1fr; }
  .mapCard iframe{ min-height: 360px; }
  .footerGrid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px){
  .navToggle{ display:inline-flex; }
  .nav{
    display:none; position:absolute; right: 4vw; top: 70px;
    flex-direction:column;
    background: rgba(10,14,18,.96);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    padding: .65rem;
    min-width: 220px;
  }
  .nav.isOpen{ display:flex; }
  .cards{ grid-template-columns: 1fr; }
  .formGrid{ grid-template-columns: 1fr; }
  .footerGrid{ grid-template-columns: 1fr; }
}


/* v2 tweaks */
.brand__badge--img{
  width:52px;
  height:52px;
  border-radius: 999px;
  overflow:hidden;
  border: 1px solid rgba(15,183,176,.45);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 26px rgba(15,183,176,.10);
  display:grid;
  place-items:center;
}
.brand__badge--img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.footerLogo__badge--img{
  width:64px;
  height:64px;
  border-radius: 999px;
  overflow:hidden;
  border: 1px solid rgba(15,183,176,.45);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 26px rgba(15,183,176,.10);
  display:grid;
  place-items:center;
}
.footerLogo__badge--img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.scrollOrb--inline{
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  margin: .9rem auto 0;
}


/* v3 artist cards with real photos */
.artistCard{ min-height: 520px; }
.artistMedia{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  box-shadow: 0 10px 26px rgba(0,0,0,.40);
}
.artistPhoto{
  width: 100%;
  height: auto;
  display:block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: brightness(.78) saturate(.88);
  transition: filter .22s ease, transform .22s ease;
}
.artistCard:hover .artistPhoto{
  filter: brightness(1) saturate(1);
  transform: scale(1.02);
}


/* v4 footer rebuild */
.siteFooter{
  background: #0e1114;
  padding: 3rem 1.5rem 1.5rem;
}
.footerGrid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
  align-items: start;
}
.footerBrand{
  display:flex;
  flex-direction:column;
  gap:.75rem;
}
.footerTagline{
  color:#b7c2c9;
  font-size:.9rem;
  line-height:1.4;
}
.siteFooter h4{
  margin-bottom:.6rem;
  font-size:.95rem;
  color:#ffffff;
}
.siteFooter a, .siteFooter p{
  color:#b7c2c9;
  font-size:.9rem;
  text-decoration:none;
}
.siteFooter a:hover{
  color:#19e6d2;
}
.socialRow{
  display:flex;
  gap:.75rem;
}
.socialRow a{
  padding:.4rem .65rem;
  border:1px solid rgba(255,255,255,.15);
  border-radius:999px;
  font-size:.8rem;
}
.footerBottom{
  max-width:1200px;
  margin:2rem auto 0;
  padding-top:1rem;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap:1rem;
  font-size:.8rem;
  color:#88939a;
}
@media(max-width:700px){
  .footerBottom{
    flex-direction:column;
    text-align:center;
  }
}


/* v5 artist image sizing + centered actions */
.artistCard{ min-height: 520px; }
.artistMedia{
  width: 62%;
  max-width: 260px;
  margin: 0 auto 1rem;
  border-radius: 18px;
}
.artistPhoto{
  aspect-ratio: 1 / 1;
  border-radius: 18px;
}

/* center action buttons and make Book Now pop */
.card__actions{
  display:flex;
  justify-content:center;
  gap:.75rem;
}
.card__actions .btn{
  min-width: 120px;
  justify-content:center;
}
.card__actions .btn[href="#contact"]{
  background: linear-gradient(135deg, rgba(25,230,210,.95), rgba(15,183,176,.95));
  color: #071113;
  border: 1px solid rgba(25,230,210,.35);
  box-shadow: 0 10px 22px rgba(15,183,176,.20);
}
.card__actions .btn[href="#contact"]:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* v6 photo side accents */
.artistMedia{
  position: relative;
}

.artistMedia::before,
.artistMedia::after{
  content:"";
  position:absolute;
  top: 12%;
  bottom: 12%;
  width: 14px;
  border-radius: 6px;
  opacity: .85;
  transition: opacity .25s ease, transform .25s ease;
}

.artistMedia::before{
  left: -22px;
  background: linear-gradient(
    to bottom,
    rgba(25,230,210,.55),
    rgba(25,230,210,.15),
    rgba(25,230,210,.55)
  );
}

.artistMedia::after{
  right: -22px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.45),
    rgba(255,255,255,.12),
    rgba(255,255,255,.45)
  );
}

.artistCard:hover .artistMedia::before,
.artistCard:hover .artistMedia::after{
  opacity: 1;
  transform: scaleY(1.05);
}

@media(max-width: 900px){
  .artistMedia::before,
  .artistMedia::after{
    display:none;
  }
}


/* v7 stronger photo side accents (segmented blocks) */
.artistMedia{
  position: relative;
}

.artistMedia::before,
.artistMedia::after{
  content:"";
  position:absolute;
  top: -6px;
  bottom: -6px;
  width: 18px;
  border-radius: 10px;
  opacity: .95;
  filter: drop-shadow(0 0 10px rgba(25,230,210,.25));
  transition: transform .22s ease, opacity .22s ease, filter .22s ease;
}

.artistMedia::before{
  left: -30px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(25,230,210,.95) 0px,
      rgba(25,230,210,.95) 10px,
      rgba(25,230,210,.10) 10px,
      rgba(25,230,210,.10) 20px
    );
}

.artistMedia::after{
  right: -30px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,.70) 0px,
      rgba(255,255,255,.70) 10px,
      rgba(255,255,255,.08) 10px,
      rgba(255,255,255,.08) 20px
    );
  filter: drop-shadow(0 0 10px rgba(255,255,255,.12));
}

.artistCard:hover .artistMedia::before{
  transform: scaleY(1.07) translateY(-1px);
  filter: drop-shadow(0 0 16px rgba(25,230,210,.40));
}
.artistCard:hover .artistMedia::after{
  transform: scaleY(1.07) translateY(-1px);
  filter: drop-shadow(0 0 16px rgba(255,255,255,.18));
}

@media(max-width: 900px){
  .artistMedia::before,
  .artistMedia::after{ display:none; }
}


/* v7 footer: heavier, richer, more "premium" */
.siteFooter{
  position: relative;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(25,230,210,.16), transparent 60%),
    radial-gradient(900px 450px at 90% 0%, rgba(255,255,255,.08), transparent 55%),
    linear-gradient(180deg, #0b0f12 0%, #070a0d 100%);
  padding: 3.6rem 1.5rem 1.8rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.siteFooter::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(25,230,210,.7) 45%, rgba(25,230,210,.25) 55%, transparent 100%);
  box-shadow: 0 0 22px rgba(25,230,210,.22);
}

.footerGrid{
  gap: 1.6rem;
}

.footerBrand, .footerLinks, .footerContact, .footerSocial{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 1.15rem 1.15rem 1.05rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}

.footerBrand{
  display:flex;
  flex-direction:column;
  gap: .9rem;
}

.footerTagline{
  font-size: 1rem;
  color: #d7e1e8;
}

.siteFooter h4{
  font-size: 1.02rem;
  letter-spacing: .2px;
}

.siteFooter a, .siteFooter p{
  font-size: .95rem;
}

.footerLinks a{
  display:block;
  padding: .15rem 0;
}

.socialRow a{
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
  padding: .55rem .85rem;
  font-weight: 700;
  letter-spacing: .4px;
}
.socialRow a:hover{
  border-color: rgba(25,230,210,.35);
  box-shadow: 0 10px 24px rgba(25,230,210,.10);
}

.footerBottom{
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.10);
  color: #9aa7af;
}

.footerLogo__badge--img{
  width: 78px;
  height: 78px;
  border: 1px solid rgba(25,230,210,.55);
  box-shadow: 0 18px 42px rgba(25,230,210,.10);
}



/* Motion pack: hero teal "space dust" bubbles */
.heroSection{ position: relative; overflow: hidden; }

/* Particle layer sits behind hero content */
.heroParticles{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.heroParticles .particle{
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 999px;
  background: rgba(24, 224, 213, .55);
  box-shadow:
    0 0 18px rgba(24, 224, 213, .22),
    0 0 42px rgba(24, 224, 213, .12);
  filter: blur(var(--b));
  opacity: var(--o);
  transform: translate3d(0,0,0) scale(var(--k));
  animation:
    dustFloat var(--t) ease-in-out infinite,
    dustDrift calc(var(--t) * 1.2) linear infinite;
}

@keyframes dustFloat{
  0%{ transform: translate3d(0, 14px, 0) scale(var(--k)); }
  50%{ transform: translate3d(0, -18px, 0) scale(calc(var(--k) * 1.08)); }
  100%{ transform: translate3d(0, 14px, 0) scale(var(--k)); }
}

@keyframes dustDrift{
  0%{ margin-left: 0px; }
  50%{ margin-left: var(--d); }
  100%{ margin-left: 0px; }
}

@media (prefers-reduced-motion: reduce){
  .heroParticles .particle{ animation: none; }
}

/* Scroll reveal */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.35s ease, transform 1.35s ease;
  will-change: opacity, transform;
}
.reveal.inView{
  opacity: 1;
  transform: translateY(0);
}
.reveal.revealLeft{ transform: translateX(-14px); }
.reveal.revealRight{ transform: translateX(14px); }
.reveal.revealLeft.inView,
.reveal.revealRight.inView{ transform: translateX(0); }

/* Artist grid subtle motion */
#artists .artistCard{
  transition: transform .35s ease, box-shadow .35s ease, opacity .55s ease;
}
#artists .artistCard.inView{
  transform: translateY(0);
}
#artists .artistCard:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}

/* Floating back-to-top */
.floatBtn{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  color: #eaf2f7;
  text-decoration: none;
  z-index: 120;
}
.floatBtn--top{ bottom: 78px; }
.floatBtn:hover{
  border-color: rgba(25,230,210,.35);
  box-shadow: 0 22px 52px rgba(25,230,210,.10);
  transform: translateY(-2px);
}
.floatBtn__icon{ font-weight: 900; font-size: 18px; }

