/* ==========================================================
   AJ AESTHETICS — SHARED STYLESHEET
   Black + Hot Pink Glam Aesthetic
   ========================================================== */

:root {
  --bg: #0a0a0a;
  --bg-soft: #141014;
  --card: #1a1418;
  --card-hover: #221820;
  --pink: #ff2e8b;
  --pink-soft: #ff5fa8;
  --pink-glow: rgba(255, 46, 139, 0.45);
  --text: #ffffff;
  --text-dim: #c9c0c5;
  --text-muted: #8a8087;
  --border: rgba(255, 46, 139, 0.18);
  --gold: #d4af7a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* room for mobile sticky bar */
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo-row { display: contents; }
.header-bottom-row { display: contents; }
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.logo img {
  height: 54px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(255, 46, 139, 0.18));
  transition: filter 0.25s ease;
}
.logo:hover img {
  filter: drop-shadow(0 0 22px rgba(255, 46, 139, 0.35));
}
.footer .logo img { height: 64px; }
@media (max-width: 600px) {
  .logo img { height: 44px; }
  .footer .logo img { height: 54px; }
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-main a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-main a:hover, .nav-main a.active { color: var(--pink); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.phone-link:hover { color: var(--pink); }
.phone-link svg { width: 16px; height: 16px; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0 24px var(--pink-glow);
}
.btn:hover { background: var(--pink-soft); transform: translateY(-2px); box-shadow: 0 0 32px var(--pink-glow); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--pink);
  box-shadow: none;
}
.btn-outline:hover { background: var(--pink); color: #fff; }
.btn-small { padding: 9px 18px; font-size: 12px; }
.btn-large { padding: 16px 32px; font-size: 15px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 90px 24px;
}
.hero-default { background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.15) 100%), url('images/hero.jpg') center/cover no-repeat; }
.hero-inner { max-width: 1300px; margin: 0 auto; width: 100%; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6.2vw, 68px);
  font-weight: 700;
  line-height: 1.04;
  margin-bottom: 22px;
  max-width: 640px;
  letter-spacing: -0.5px;
}
.hero h1 em { color: var(--pink); font-style: italic; }
.hero p {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page header (smaller hero for inner pages) */
.page-header {
  background: linear-gradient(180deg, rgba(10,10,10,0.6), rgba(10,10,10,0.9)), url('images/hero.jpg') center/cover no-repeat;
  padding: 90px 24px 70px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.page-header h1 em { color: var(--pink); font-style: italic; }
.page-header p {
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
}
.page-header .eyebrow {
  color: var(--pink);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

/* ===== INFO BAR ===== */
.info-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 24px;
}
.info-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
}
.info-item { display: flex; flex-direction: column; gap: 4px; }
.info-item .label { font-size: 11px; letter-spacing: 2px; color: var(--pink); text-transform: uppercase; }
.info-item .value { font-size: 15px; color: var(--text); font-weight: 500; }
.info-item a { color: var(--text); text-decoration: none; }
.info-item a:hover { color: var(--pink); }

/* ===== SECTIONS ===== */
.section {
  padding: 90px 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.section-narrow { max-width: 900px; }
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .eyebrow {
  color: var(--pink);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.section-header h2 em { color: var(--pink); font-style: italic; }
.section-header p {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

/* ===== SERVICE TEASER CARDS (homepage) ===== */
.service-teasers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.teaser-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.teaser-card:hover { transform: translateY(-6px); border-color: var(--pink); box-shadow: 0 20px 50px rgba(255, 46, 139, 0.2); }
.teaser-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.teaser-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.teaser-card:hover .teaser-image img { transform: scale(1.05); }
.teaser-body { padding: 24px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.teaser-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--text);
}
.teaser-body .starting {
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.teaser-body p {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 18px;
  flex: 1;
}
.teaser-link {
  color: var(--pink);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.teaser-link:hover { gap: 10px; }

/* ===== WHY-CHOOSE-US ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.feature {
  text-align: center;
  padding: 20px;
}
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 46, 139, 0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--pink);
}
.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text);
}
.feature p { color: var(--text-dim); font-size: 14px; }

/* ===== ABOUT SNIPPET (split layout) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(255, 46, 139, 0.18);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-content .eyebrow {
  color: var(--pink);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.split-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}
.split-content h2 em { color: var(--pink); font-style: italic; }
.split-content p {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 16px;
}

/* ===== TESTIMONIALS ===== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--pink);
  line-height: 1;
}
.review-stars { color: var(--pink); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
}
.review-author { color: var(--text); font-weight: 600; font-size: 14px; }
.review-author span { color: var(--text-muted); font-weight: 400; font-size: 13px; display: block; margin-top: 2px; }

/* Google Reviews enhancements */
.reviews-header { position: relative; }
.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 10px 18px;
  background: rgba(255,46,139,0.06);
  border: 1px solid rgba(255,46,139,0.18);
  border-radius: 999px;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-summary-stars {
  color: #ffc107;
  font-size: 16px;
  letter-spacing: 2px;
}
.reviews-summary-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dim);
  flex-wrap: wrap;
}
.reviews-summary-meta strong {
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
}
.reviews-summary-meta > span:not(.reviews-google-link) {
  color: var(--text-muted);
  opacity: 0.7;
}
.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pink);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: color 0.2s ease;
}
.reviews-google-link:hover { color: var(--pink-soft); }
.reviews-google-link svg { flex-shrink: 0; }

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255,46,139,0.15);
}
.review-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-weight: 700;
  font-size: 16px;
  font-family: 'Playfair Display', serif;
  background: rgba(255,46,139,0.12);
  border: 1px solid rgba(255,46,139,0.2);
}
.review-meta-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review-when {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
}
.review-skeleton {
  opacity: 0.5;
  animation: skeletonPulse 1.6s ease-in-out infinite;
}
@keyframes skeletonPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.65; }
}
.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media (max-width: 640px) {
  .reviews-summary { padding: 8px 14px; gap: 10px; }
  .reviews-summary-meta { font-size: 13px; }
  .reviews-summary-meta strong { font-size: 14px; }
}

.review-grid { transition: opacity 0.22s ease; }
.review-grid.is-fading { opacity: 0; }

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.reviews-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,46,139,0.35);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.reviews-dot:hover { border-color: var(--pink); }
.reviews-dot.is-active {
  background: var(--pink);
  border-color: var(--pink);
  width: 28px;
  border-radius: 5px;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, rgba(255,46,139,0.18), rgba(255,46,139,0.05));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 24px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}
.cta-band h2 em { color: var(--pink); font-style: italic; }
.cta-band p { color: var(--text-dim); margin-bottom: 28px; font-size: 16px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-band .hero-cta { justify-content: center; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col .logo { margin-bottom: 14px; display: inline-block; }
.footer-col p, .footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.9;
  display: block;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  max-width: 1300px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; margin: 0 8px; }
.footer-bottom a:hover { color: var(--pink); }

/* ===== MOBILE STICKY BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  z-index: 90;
  gap: 10px;
}
.mobile-bar .btn { flex: 1; padding: 12px 16px; font-size: 13px; }

/* ===== NAV DROPDOWN ===== */
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-item > a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 4px;
  margin-top: -3px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(15, 12, 14, 0.98);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 220px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 46, 139, 0.08);
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-item:hover > a::after,
.nav-item:focus-within > a::after { transform: rotate(225deg); margin-top: 3px; }
.nav-dropdown a {
  padding: 10px 14px !important;
  border-radius: 8px;
  font-size: 13px !important;
  letter-spacing: 0.6px !important;
  text-transform: none !important;
  font-weight: 500 !important;
  color: var(--text-dim) !important;
  transition: background 0.15s ease, color 0.15s ease !important;
}
.nav-dropdown a:hover {
  background: rgba(255, 46, 139, 0.12);
  color: #fff !important;
}
.nav-dropdown a strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
}
.nav-dropdown a span.sub {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ===== MOBILE ===== */
@media (max-width: 880px) {
  .nav-main { display: none; }
  .nav-main.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .nav-item > a::after { display: none; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    margin-top: 6px;
    border-left: 2px solid rgba(255, 46, 139, 0.3);
    border-radius: 0;
    min-width: 0;
  }
  .nav-dropdown a { padding: 6px 0 !important; font-size: 13px !important; }
  .nav-dropdown a strong { font-size: 13px; }
  .nav-dropdown a span.sub { display: none; }
  .menu-toggle { display: inline-flex; }
  .phone-link span { display: none; }
  .hero { padding: 60px 16px; min-height: 420px; }
  .page-header { padding: 60px 20px 50px; }
  .section { padding: 60px 16px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .mobile-bar { display: flex; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
  .header-inner { padding: 12px 16px; }
}

/* ===== CATEGORY NAV (services page) ===== */
.cat-nav {
  background: rgba(10,10,10,0.92);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
  overflow-x: auto;
  position: sticky;
  top: 64px;
  z-index: 50;
  backdrop-filter: blur(12px);
}
.cat-nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: nowrap;
}
.cat-nav a {
  color: var(--text-dim);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.cat-nav a:hover { color: var(--pink); border-color: var(--border); }

/* ===== CATEGORY HERO IMAGE ===== */
.cat-image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(255, 46, 139, 0.12);
}
.cat-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== SERVICE GRID ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  background: var(--card-hover);
  border-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 46, 139, 0.15);
}
.service-card:hover::before { opacity: 1; }
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.service-price {
  color: var(--pink);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.service-price .from { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; margin-right: 4px; }
.service-duration {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.service-desc {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
  flex: 1;
}
.service-card .btn { align-self: flex-start; width: 100%; }

@media (max-width: 768px) {
  .service-grid { grid-template-columns: 1fr; }
  .cat-nav { top: 60px; }
}

/* ==========================================================
   AFTERPAY ANNOUNCEMENT BANNER
   ========================================================== */
.afterpay-bar {
  background: linear-gradient(90deg, #ff2e8b 0%, #ff5fa8 100%);
  color: #fff;
  text-align: center;
  padding: 9px 18px;
  font-size: 13px;
  letter-spacing: 0.4px;
  font-weight: 500;
  position: relative;
  z-index: 110;
}
.afterpay-bar strong { font-weight: 700; letter-spacing: 0.6px; }
.afterpay-bar .sep { display: inline-block; margin: 0 12px; opacity: 0.7; }

.afterpay-callout {
  background: linear-gradient(135deg, #1a1418 0%, #221820 100%);
  border: 1px solid var(--pink);
  border-radius: 10px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.afterpay-callout-text {
  flex: 1;
  min-width: 260px;
}
.afterpay-callout h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}
.afterpay-callout h4 .accent { color: var(--pink-soft); font-style: italic; }
.afterpay-callout p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 540px) {
  .afterpay-bar { font-size: 12px; padding: 8px 14px; }
  .afterpay-bar .sep { display: none; }
  .afterpay-bar .item { display: block; }
}

/* ==========================================================
   MEMBERSHIP LAUNCH BAR (global, dismissible)
   ========================================================== */
.launch-bar {
  position: relative;
  z-index: 110;
  background: linear-gradient(90deg, #ff2e8b 0%, #ff5fa8 60%, #ffb3d1 100%);
  color: #fff;
  padding: 10px 44px 10px 18px;
  text-align: center;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 14px rgba(255, 46, 139, 0.25);
}
.launch-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  flex-wrap: wrap;
  justify-content: center;
}
.launch-bar-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.launch-bar-msg { font-weight: 500; }
.launch-bar-msg strong { font-weight: 700; }
.launch-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}
.launch-bar-link:hover .launch-bar-cta {
  background: rgba(0, 0, 0, 0.4);
}
.launch-bar-close {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  padding: 4px 8px;
}
.launch-bar-close:hover { opacity: 1; }

@media (max-width: 600px) {
  .launch-bar {
    font-size: 12px;
    padding: 9px 38px 9px 14px;
  }
  .launch-bar-link { gap: 8px; }
  .launch-bar-pill { font-size: 10px; padding: 1px 8px; }
  .launch-bar-cta { font-size: 11px; padding: 2px 10px; }
}

/* ==========================================================
   HERO LAUNCH RIBBON (index.html hero only)
   ========================================================== */
.hero-launch-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 46, 139, 0.12);
  border: 1px solid rgba(255, 46, 139, 0.45);
  border-radius: 999px;
  padding: 7px 16px 7px 7px;
  margin-bottom: 22px;
  text-decoration: none;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.hero-launch-ribbon:hover {
  background: rgba(255, 46, 139, 0.22);
  border-color: var(--pink);
  transform: translateY(-1px);
}
.hero-launch-pill {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  box-shadow: 0 0 14px rgba(255, 46, 139, 0.5);
}
.hero-launch-text { color: #fff; }
.hero-launch-arrow {
  display: inline-block;
  color: var(--pink-soft);
  font-size: 16px;
  transition: transform 0.25s ease;
}
.hero-launch-ribbon:hover .hero-launch-arrow { transform: translateX(3px); }

@media (max-width: 540px) {
  .hero-launch-ribbon { font-size: 12px; padding: 6px 14px 6px 6px; }
  .hero-launch-pill { font-size: 9.5px; padding: 2px 8px; }
}

/* ==========================================================
   INLINE AFTERPAY CALLOUT (pricing pages, near footer)
   ========================================================== */
.afterpay-inline-wrap {
  max-width: 1100px;
  margin: 50px auto 10px;
  padding: 0 24px;
}
.afterpay-inline {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, rgba(255, 46, 139, 0.08) 0%, rgba(20, 16, 20, 0.6) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
}
.afterpay-inline-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 46, 139, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-soft);
}
.afterpay-inline-icon svg { width: 24px; height: 24px; }
.afterpay-inline-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}
.afterpay-inline-text strong { color: #fff; font-weight: 600; }

@media (max-width: 540px) {
  .afterpay-inline { padding: 16px 18px; gap: 14px; }
  .afterpay-inline-icon { width: 38px; height: 38px; }
  .afterpay-inline-icon svg { width: 20px; height: 20px; }
  .afterpay-inline-text { font-size: 13px; }
}

