/* ============================================================
   COSMIC CLEANERS — SHARED STYLES
   All pages link to this file.
   Entry-screen CSS stays inline in index.html (home only).
============================================================ */

/* ---- VARIABLES ---- */
:root {
  --space-black:   #000008;
  --deep-purple:   #1a0533;
  --nebula-purple: #6B21A8;
  --cosmic-teal:   #0891B2;
  --star-white:    #F0F4FF;
  --warm-gold:     #F59E0B;
  --clean-white:   #FFFFFF;
  --soft-gray:     #94A3B8;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--space-black);
  color: var(--star-white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
img { display: block; max-width: 100%; }

/* ---- STAR CANVAS (fixed, all pages) ---- */
#main-stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,8,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,33,168,.28);
  transition: background .3s;
}
nav.scrolled { background: rgba(0,0,8,.97); }

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--star-white);
  letter-spacing: 1px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-logo-img { height: 48px; width: auto; display: block; }
.nav-star {
  color: var(--cosmic-teal);
  display: inline-block;
  animation: starSpin 12s linear infinite;
}
@keyframes starSpin { to { transform: rotate(360deg); } }

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--soft-gray);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cosmic-teal); }

.nav-cta {
  background: var(--cosmic-teal) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 20px;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--nebula-purple) !important; transform: scale(1.05); }

/* Top-bar actions: persistent Book Now + hamburger (shown on ALL widths) */
.nav-actions { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--star-white);
  border-radius: 2px;
  transition: all .3s;
}
@media (max-width: 440px) { .nav-cta { display: none; } } /* drawer still has Book Now */

/* ---- SLIDE-IN DRAWER MENU (mobile + desktop) ---- */
.nav-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,8,.62);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
body.drawer-open .nav-overlay { opacity: 1; pointer-events: auto; }

.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 300px; max-width: 84vw; z-index: 1001;
  background: linear-gradient(180deg, #0a0518 0%, #05030f 100%);
  border-left: 1px solid rgba(8,145,178,.28);
  box-shadow: -20px 0 60px rgba(0,0,0,.6);
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.4,0,.2,1);
  padding: 74px 0 34px; overflow-y: auto;
}
body.drawer-open .nav-drawer { transform: translateX(0); }

.drawer-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: var(--soft-gray); font-size: 30px; line-height: 1;
  transition: color .2s;
}
.drawer-close:hover { color: var(--cosmic-teal); }

.drawer-links { list-style: none; display: flex; flex-direction: column; }
.drawer-links a {
  display: block; padding: 11px 26px;
  color: var(--star-white); font-size: 15px; font-weight: 600;
  transition: background .15s, color .15s;
}
.drawer-links a:hover, .drawer-links a.active {
  color: var(--cosmic-teal); background: rgba(8,145,178,.08);
}
.drawer-label {
  padding: 16px 26px 5px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--nebula-purple);
}
.drawer-divider { height: 1px; background: rgba(107,33,168,.25); margin: 12px 22px; }
.drawer-cta {
  margin: 14px 22px 0; background: var(--cosmic-teal);
  color: #fff !important; text-align: center;
  border-radius: 22px; padding: 12px !important;
  transition: background .2s;
}
.drawer-cta:hover { background: var(--nebula-purple); }

/* ---- SHARED SECTION ---- */
section { position: relative; z-index: 1; }

.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 6vw, 40px);
  font-weight: 700;
  text-align: center;
  color: var(--star-white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-heading .hl { color: var(--cosmic-teal); }
/* Floating logo motif above every section heading — ties sections together */
.section-heading::before {
  content: "";
  display: block;
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  background: url("../logo.png") center/contain no-repeat;
  filter: drop-shadow(0 0 12px rgba(8,145,178,.55)) drop-shadow(0 0 24px rgba(107,33,168,.35));
  animation: headLogoBob 5s ease-in-out infinite;
}
@keyframes headLogoBob { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-9px) rotate(1.5deg); } }

.section-sub {
  text-align: center;
  color: var(--soft-gray);
  font-size: clamp(14px, 3.5vw, 17px);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--cosmic-teal), var(--nebula-purple));
  color: #fff;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 28px rgba(8,145,178,.45);
}
.btn-primary:hover, .btn-primary:active {
  transform: scale(1.05);
  box-shadow: 0 0 55px rgba(8,145,178,.7);
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--cosmic-teal);
  color: var(--cosmic-teal);
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  transition: all .25s;
}
.btn-outline:hover {
  background: var(--cosmic-teal);
  color: #fff;
  box-shadow: 0 0 30px rgba(8,145,178,.5);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .09s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .27s; }
.d4 { transition-delay: .36s; }
.d5 { transition-delay: .45s; }

/* ---- GLOW PULSE ---- */
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 22px rgba(8,145,178,.5); }
  50%      { box-shadow: 0 0 58px rgba(8,145,178,.85), 0 0 90px rgba(107,33,168,.4); }
}
.glow { animation: glowPulse 3s ease-in-out infinite; }

/* ---- COSMIC DIVIDER ---- */
.cosmic-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 0 24px;
}
.cosmic-divider .cline {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(107,33,168,.55), rgba(8,145,178,.4), transparent);
}
.cosmic-divider .cdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cosmic-teal);
  box-shadow: 0 0 10px var(--cosmic-teal), 0 0 20px rgba(8,145,178,.5);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 64px;
  text-align: center;
}
.page-hero.residential {
  background:
    radial-gradient(ellipse 65% 55% at 25% 55%, rgba(107,33,168,.24) 0%, transparent 100%),
    radial-gradient(ellipse 55% 45% at 80% 35%, rgba(8,145,178,.14) 0%, transparent 100%),
    var(--space-black);
}
.page-hero.commercial {
  background:
    radial-gradient(ellipse 65% 55% at 75% 50%, rgba(8,145,178,.22) 0%, transparent 100%),
    radial-gradient(ellipse 55% 45% at 20% 65%, rgba(107,33,168,.14) 0%, transparent 100%),
    var(--space-black);
}
.page-hero.book-hero {
  background:
    radial-gradient(ellipse 80% 70% at 50% 38%, rgba(8,145,178,.22) 0%, transparent 70%),
    radial-gradient(ellipse 70% 55% at 50% 105%, rgba(107,33,168,.14) 0%, transparent 72%),
    var(--space-black);
}
/* Soft continuous glow down the whole booking page so sections blend (no hard seam). */
body.book-page {
  background:
    radial-gradient(ellipse 90% 40% at 50% 0%, rgba(8,145,178,.10) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 50% 60%, rgba(8,145,178,.05) 0%, transparent 60%),
    var(--space-black);
  background-attachment: fixed;
}
.page-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--cosmic-teal);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 7vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--star-white);
  margin-bottom: 18px;
}
.page-hero h1 .hl { color: var(--cosmic-teal); }
.page-hero p {
  font-size: clamp(15px, 3.8vw, 18px);
  color: var(--soft-gray);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ---- BEFORE/AFTER ---- */
#results {
  padding: 88px 24px;
  background: linear-gradient(180deg, var(--space-black) 0%, rgba(26,5,51,.5) 50%, var(--space-black) 100%);
}
.ba-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.ba-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity .72s ease, transform .72s ease;
}
.ba-card.from-right { transform: translateX(52px); }
.ba-card.in         { opacity: 1; transform: translateX(0); }
.ba-panel {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
/* PHOTO PLACEHOLDERS — swap inner content with <img> when ready */
.ba-panel.before-panel { background: linear-gradient(145deg, #1a1a2a 0%, #2a2a40 55%, #1a1a28 100%); }
.ba-panel.after-panel  { background: linear-gradient(145deg, #061e28 0%, #0a3d4e 50%, #0891B2 100%); }
.ba-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
}
.before-tag { background: rgba(0,0,0,.55); color: var(--soft-gray); border: 1px solid rgba(148,163,184,.22); }
.after-tag  { background: rgba(8,145,178,.2); color: var(--cosmic-teal); border: 1px solid rgba(8,145,178,.55); }
.ba-ph-icon { font-size: 36px; opacity: .28; }
.ba-caption { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 20px 12px 8px; font-size: 10px; color: rgba(255,255,255,.92); line-height: 1.4; background: linear-gradient(to top, rgba(0,0,0,.74), transparent); }
.ba-label { grid-column: 1/-1; text-align: center; font-size: 13px; font-weight: 700; color: var(--soft-gray); padding: 10px 0 2px; border-top: 1px solid rgba(107,33,168,.2); letter-spacing: .5px; }

/* ---- REVIEWS ---- */
#reviews { padding: 88px 0; background: var(--space-black); }
#reviews .section-heading,
#reviews .section-sub { padding: 0 24px; }
.carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 24px 28px;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 min(83vw, 340px);
  scroll-snap-align: start;
  background: rgba(26,5,51,.55);
  border: 1px solid rgba(107,33,168,.38);
  border-radius: 18px;
  padding: 24px 20px;
  transition: box-shadow .3s, border-color .3s;
}
.review-card:hover {
  box-shadow: 0 0 40px rgba(8,145,178,.22);
  border-color: rgba(8,145,178,.48);
}
.review-stars { color: var(--warm-gold); font-size: 17px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text  { font-size: 14px; line-height: 1.75; color: var(--star-white); margin-bottom: 16px; }
.review-name  { font-size: 14px; font-weight: 800; color: var(--cosmic-teal); }
.review-loc   { font-size: 12px; color: var(--soft-gray); margin-top: 2px; }

/* ---- SERVICE SECTIONS ---- */
.svc-section {
  padding: 80px 24px;
}
.svc-section.bg-alt {
  background: linear-gradient(180deg, var(--space-black) 0%, rgba(26,5,51,.4) 50%, var(--space-black) 100%);
}

/* Category label bar */
.svc-cat-label {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto 24px;
}
.cat-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(16px, 4vw, 24px);
  font-weight: 700;
  color: var(--star-white);
  white-space: nowrap;
}
.cat-sub { font-size: 13px; color: var(--soft-gray); margin-top: 2px; }
.cat-line { flex: 1; height: 1px; background: linear-gradient(to right, rgba(107,33,168,.45), transparent); }

/* Divider between residential / commercial */
.svc-mid-divider {
  max-width: 920px;
  margin: 8px auto 52px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.svc-mid-divider .dl { flex: 1; height: 1px; background: linear-gradient(to right, rgba(107,33,168,.25), rgba(8,145,178,.25)); }
.svc-mid-divider .dt {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px; letter-spacing: 3px;
  color: rgba(148,163,184,.5);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Card grids */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto 48px;
}
@media (min-width: 520px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 840px) { .services-grid.g3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 840px) { .services-grid.g4 { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 700px) { .services-grid.g2 { grid-template-columns: repeat(2,1fr); } }

/* Service card */
.svc-card {
  background: rgba(26,5,51,.45);
  border: 1px solid rgba(107,33,168,.28);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .3s, border-color .3s;
}
.svc-card.in { opacity: 1; transform: translateY(0); }
.svc-card.in:hover {
  box-shadow: 0 0 42px rgba(8,145,178,.3);
  border-color: var(--cosmic-teal);
  transform: translateY(-3px);
}
.svc-card.featured { border-color: rgba(8,145,178,.48); background: rgba(8,145,178,.07); }

/* SVG icon wrap */
.svc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
}
.svc-icon-wrap.purple { background: rgba(107,33,168,.2); border: 1px solid rgba(107,33,168,.35); }
.svc-icon-wrap.teal   { background: rgba(8,145,178,.18); border: 1px solid rgba(8,145,178,.35); }
.svc-icon-wrap.gold   { background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.3); }

.svc-badge {
  display: inline-block;
  padding: 2px 10px; border-radius: 20px;
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 10px;
}
.svc-badge.purple { background: rgba(107,33,168,.28); border: 1px solid rgba(107,33,168,.45); color: #c084fc; }
.svc-badge.teal   { background: rgba(8,145,178,.18);  border: 1px solid rgba(8,145,178,.45);  color: var(--cosmic-teal); }
.svc-badge.gold   { background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.38); color: var(--warm-gold); }

.svc-name  { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; color: var(--star-white); margin-bottom: 10px; line-height: 1.45; }
.svc-price { font-size: 32px; font-weight: 800; color: var(--cosmic-teal); }
.svc-freq  { font-size: 12px; color: var(--soft-gray); margin: 3px 0 12px; }
.svc-desc  { font-size: 13px; color: var(--soft-gray); line-height: 1.55; }

/* ---- CATEGORY CARDS (home page services overview) ---- */
.cat-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}
@media (min-width: 580px) { .cat-cards-grid { grid-template-columns: repeat(2,1fr); } }

.cat-card {
  display: block;
  background: rgba(26,5,51,.5);
  border: 1px solid rgba(107,33,168,.32);
  border-radius: 22px;
  padding: 38px 28px 32px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 55px rgba(8,145,178,.28);
  border-color: var(--cosmic-teal);
}
.cat-card-icon { font-size: 48px; margin-bottom: 16px; }
.cat-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px,4vw,24px);
  font-weight: 700;
  color: var(--star-white);
  margin-bottom: 10px;
}
.cat-card-desc { font-size: 14px; color: var(--soft-gray); line-height: 1.65; margin-bottom: 20px; }
.cat-card-from { font-size: 13px; color: var(--soft-gray); margin-bottom: 24px; }
.cat-card-from strong { font-size: 28px; font-weight: 800; color: var(--cosmic-teal); display: block; line-height: 1.1; }
.cat-card-link { font-size: 14px; font-weight: 800; color: var(--cosmic-teal); }

/* ---- ABOUT ---- */
#about { padding: 88px 24px; background: var(--space-black); }
.about-inner {
  max-width: 660px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 28px; text-align: center;
}
/*
 * AVATAR PLACEHOLDER — swap with Chelsea's real photo:
 * <img src="chelsea.jpg" alt="Chelsea Byrd"
 *      style="width:140px;height:140px;border-radius:50%;object-fit:cover;
 *             border:3px solid rgba(8,145,178,.4);
 *             box-shadow:0 0 42px rgba(8,145,178,.4),0 0 80px rgba(107,33,168,.28);">
 */
.avatar-wrap {
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, var(--nebula-purple), var(--cosmic-teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
  border: 3px solid rgba(8,145,178,.4);
  box-shadow: 0 0 44px rgba(8,145,178,.42), 0 0 82px rgba(107,33,168,.28);
  flex-shrink: 0;
}
.about-name { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--star-white); }
.about-role { font-size: 14px; color: var(--cosmic-teal); margin: 4px 0 14px; }
.about-bio  { font-size: 16px; line-height: 1.8; color: var(--soft-gray); }

/* ---- FEATURE ROWS (commercial page) ---- */
.feat-row { max-width: 640px; margin: 0 auto 48px; display: flex; flex-direction: column; gap: 24px; }
.feat-item { display: flex; align-items: flex-start; gap: 16px; }
.feat-icon-box {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  background: rgba(8,145,178,.13); border: 1px solid rgba(8,145,178,.28);
  display: flex; align-items: center; justify-content: center;
}
.feat-icon-box svg { width: 24px; height: 24px; }
.feat-text h3 { font-size: 16px; font-weight: 700; color: var(--star-white); margin-bottom: 4px; }
.feat-text p  { font-size: 14px; color: var(--soft-gray); line-height: 1.55; }

/* ---- FAQ ---- */
#faq { padding: 88px 24px; background: var(--space-black); }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: rgba(26,5,51,.38);
  border: 1px solid rgba(107,33,168,.28);
  border-radius: 12px; overflow: hidden; transition: border-color .25s;
}
.faq-item.open { border-color: var(--cosmic-teal); }
.faq-q {
  width: 100%; background: none; border: none;
  color: var(--star-white); font-size: 15px; font-weight: 700;
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  text-align: left;
}
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--cosmic-teal); transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-body-inner { padding: 0 20px 18px; font-size: 14px; line-height: 1.75; color: var(--soft-gray); }

/* ---- BOOK NOW ---- */
#book {
  padding: 100px 24px; text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(8,145,178,.18) 0%, transparent 100%),
    linear-gradient(180deg, var(--space-black), var(--deep-purple), var(--space-black));
}
.book-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(24px,7vw,46px); font-weight: 900; color: var(--star-white); line-height: 1.2; margin-bottom: 14px; }
.book-title .hl { color: var(--cosmic-teal); }
.book-sub { font-size: clamp(14px,3.8vw,18px); color: var(--soft-gray); max-width: 480px; margin: 0 auto 48px; line-height: 1.65; }
.book-actions { display: flex; flex-direction: column; align-items: center; gap: 22px; }
/* CALENDLY BUTTON — update href when real link is ready */
.btn-book {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--cosmic-teal), #0e7490);
  color: #fff; padding: 18px 44px; border-radius: 50px;
  font-size: 17px; font-weight: 800;
  box-shadow: 0 0 40px rgba(8,145,178,.52);
  transition: transform .2s, box-shadow .2s;
}
.btn-book:hover, .btn-book:active { transform: scale(1.05); box-shadow: 0 0 65px rgba(8,145,178,.75); }
.or-divider { font-size: 13px; color: var(--soft-gray); font-weight: 600; }
.book-phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; }
/* PHONE — update href and text if number changes */
.book-phone { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; color: var(--warm-gold); letter-spacing: 1px; }
.book-phone:hover { color: #fbbf24; }
.book-phone-note { font-size: 13px; color: var(--soft-gray); }

/* ---- HERO (home page) ---- */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 110px 24px 64px; text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 28% 45%, rgba(107,33,168,.24) 0%, transparent 100%),
    radial-gradient(ellipse 60% 55% at 78% 68%, rgba(8,145,178,.17) 0%, transparent 100%),
    var(--space-black);
}
.hero-eyebrow { font-family: 'Space Grotesk', sans-serif; font-size: 11px; letter-spacing: 4px; color: var(--cosmic-teal); text-transform: uppercase; margin-bottom: 18px; }
.hero-h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px,9vw,68px); font-weight: 900; line-height: 1.08; color: var(--star-white); margin-bottom: 20px; }
.hero-h1 .hl { color: var(--cosmic-teal); }
.hero-sub { font-size: clamp(15px,4vw,19px); color: var(--soft-gray); max-width: 460px; line-height: 1.65; margin-bottom: 40px; }
.scroll-hint { margin-top: 56px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--soft-gray); font-size: 10px; letter-spacing: 2px; }
.chevron-down { width: 20px; height: 20px; border-right: 2px solid var(--cosmic-teal); border-bottom: 2px solid var(--cosmic-teal); transform: rotate(45deg); animation: chev 1.6s ease-in-out infinite; }
@keyframes chev { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(7px); } }

/* ---- FOOTER ---- */
footer { padding: 48px 24px; background: rgba(0,0,8,.97); border-top: 1px solid rgba(107,33,168,.25); position: relative; z-index: 1; }
.footer-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 600px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--star-white); display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.footer-logo .star { color: var(--cosmic-teal); }
.footer-tagline { font-size: 13px; color: var(--soft-gray); line-height: 1.65; margin-bottom: 12px; }
/* PHONE in footer — update if number changes */
.footer-tel { font-family: 'Space Grotesk', sans-serif; font-size: 14px; color: var(--warm-gold); }
.footer-hours { font-size: 12.5px; color: var(--soft-gray); margin-top: 10px; }
.footer-legal { margin-top: 4px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.footer-legal a { font-size: 11px; color: rgba(148,163,184,.55); transition: color .2s; }
.footer-legal a:hover { color: var(--cosmic-teal); }
.footer-col-head { font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--cosmic-teal); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--soft-gray); transition: color .2s; }
.footer-links a:hover { color: var(--cosmic-teal); }
.footer-bottom { max-width: 900px; margin: 28px auto 0; padding-top: 20px; border-top: 1px solid rgba(107,33,168,.16); display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.footer-copy     { font-size: 12px; color: var(--soft-gray); }
.footer-services { font-size: 11px; color: rgba(148,163,184,.45); }

/* ---- TRUST ROW (book page) ---- */
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 32px; max-width: 520px; margin: 0 auto 44px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--soft-gray); }
.trust-item svg { stroke: var(--cosmic-teal); width: 16px; height: 16px; flex-shrink: 0; }
