/* ============================================================
   Sunshine Scrub — neon yellow / purple on deep space purple
   ============================================================ */
:root {
  --bg: #0b0714;
  --bg-2: #120b21;
  --surface: rgba(255, 255, 255, 0.04);
  --stroke: rgba(255, 255, 255, 0.09);
  --text: #f2eefc;
  --muted: #a89fc4;
  --yellow: #ffd60a;
  --yellow-soft: #ffe566;
  --purple: #a26bff;
  --purple-deep: #6d3df0;
  --glow-y: 0 0 24px rgba(255, 214, 10, 0.45);
  --glow-p: 0 0 28px rgba(162, 107, 255, 0.5);
  --radius: 20px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

button.btn { background: none; border: 0; cursor: pointer; font-size: 0.95rem; }
button.btn.btn-ghost { border: 1px solid rgba(162, 107, 255, 0.55); }
button.btn.btn-solid { background: linear-gradient(135deg, var(--yellow) 0%, #ffca00 100%); }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: min(1160px, 92%); margin-inline: auto; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.015em; }

h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.9rem;
}

.neon-y {
  color: var(--yellow);
  text-shadow: 0 0 12px rgba(255, 214, 10, 0.55), 0 0 42px rgba(255, 214, 10, 0.35);
}
.neon-p {
  color: var(--purple);
  text-shadow: 0 0 12px rgba(162, 107, 255, 0.6), 0 0 42px rgba(162, 107, 255, 0.4);
}

.sec-head { text-align: center; max-width: 640px; margin: 0 auto 3.2rem; }

.section { padding: 6.5rem 0; position: relative; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

.btn-solid {
  background: linear-gradient(135deg, var(--yellow) 0%, #ffca00 100%);
  color: #1c1400;
  box-shadow: var(--glow-y);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 0 38px rgba(255, 214, 10, 0.65); }

.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(162, 107, 255, 0.55);
  box-shadow: inset 0 0 18px rgba(162, 107, 255, 0.12), 0 0 18px rgba(162, 107, 255, 0.18);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: inset 0 0 22px rgba(162, 107, 255, 0.22), var(--glow-p); }

.btn-dark {
  background: #17102b;
  color: var(--yellow);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  padding: 0.55rem 0;
  background: rgba(11, 7, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07), 0 12px 40px rgba(0, 0, 0, 0.35);
}
.nav-inner { display: flex; align-items: center; gap: 2rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand img { height: 46px; width: auto; filter: drop-shadow(0 0 10px rgba(162, 107, 255, 0.4)); }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.brand-word em { font-style: normal; color: var(--yellow); }

.nav-links { display: flex; gap: 1.8rem; margin-left: auto; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.nav-links a:hover { color: var(--yellow); text-shadow: 0 0 14px rgba(255, 214, 10, 0.5); }

.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; }
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(11, 7, 20, 0.94) 20%, rgba(11, 7, 20, 0.55) 60%, rgba(48, 22, 90, 0.45) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 40%);
}
.hero-fade {
  position: absolute; inset: auto 0 0 0; height: 120px;
  background: linear-gradient(0deg, var(--bg), transparent);
}

.orb { position: absolute; border-radius: 50%; filter: blur(90px); z-index: -1; pointer-events: none; }
.orb-yellow { width: 420px; height: 420px; background: rgba(255, 214, 10, 0.16); top: -120px; right: -80px; }
.orb-purple { width: 520px; height: 520px; background: rgba(109, 61, 240, 0.28); bottom: -180px; left: -140px; }

.hero-inner { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 560px; margin-bottom: 2.2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }

.hero-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; }
.hero-chips li { color: var(--muted); font-size: 0.92rem; }
.hero-chips li::first-letter { color: var(--yellow); }
.hero-chips a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255, 214, 10, 0.4); }
.hero-chips a:hover { color: var(--yellow); }

/* ---------- marquee ---------- */
.marquee {
  background: linear-gradient(90deg, var(--purple-deep), #8b5cf6 40%, var(--purple-deep));
  overflow: hidden;
  padding: 0.85rem 0;
  transform: rotate(-1deg) scale(1.02);
  box-shadow: 0 0 40px rgba(109, 61, 240, 0.45);
  position: relative;
  z-index: 2;
}
.marquee-track { display: flex; width: max-content; animation: scroll 28s linear infinite; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(400px circle at 50% 0%, rgba(162, 107, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: rgba(162, 107, 255, 0.5); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4), 0 0 30px rgba(162, 107, 255, 0.16); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  color: var(--yellow);
  background: rgba(255, 214, 10, 0.09);
  border: 1px solid rgba(255, 214, 10, 0.25);
  box-shadow: inset 0 0 16px rgba(255, 214, 10, 0.08), 0 0 18px rgba(255, 214, 10, 0.12);
  margin-bottom: 1.3rem;
}
.card-icon svg { width: 26px; height: 26px; }

.card h3 { font-size: 1.18rem; font-weight: 600; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- about ---------- */
.about { background: linear-gradient(180deg, transparent, rgba(109, 61, 240, 0.06) 50%, transparent); }
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 4rem;
  align-items: center;
}
.about-photo { position: relative; }
.photo-frame {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(162, 107, 255, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(109, 61, 240, 0.25);
  transform: rotate(-2deg);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.badge-float {
  position: absolute;
  right: -14px; bottom: 26px;
  background: linear-gradient(135deg, var(--yellow), #ffc400);
  color: #1c1400;
  border-radius: 18px;
  padding: 0.9rem 1.3rem;
  text-align: center;
  font-family: var(--font-display);
  box-shadow: var(--glow-y), 0 16px 34px rgba(0, 0, 0, 0.4);
  transform: rotate(3deg);
}
.badge-float strong { display: block; font-size: 1.4rem; line-height: 1.1; }
.badge-float span { font-size: 0.8rem; font-weight: 600; }

.about-text h2 { margin-bottom: 1.3rem; }
.about-text p:not(.eyebrow) { color: var(--muted); margin-bottom: 1.1rem; }

.about-points { list-style: none; margin: 1.4rem 0 2rem; display: grid; gap: 0.55rem; }
.about-points li { display: flex; gap: 0.7rem; align-items: baseline; }
.about-points span { color: var(--yellow); text-shadow: 0 0 10px rgba(255, 214, 10, 0.6); }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.g-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.2rem 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  background: linear-gradient(0deg, rgba(11, 7, 20, 0.9), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.g-item:hover img { transform: scale(1.05); filter: saturate(1.1); }
.g-item:hover figcaption { opacity: 1; transform: none; }
.g-item:hover { border-color: rgba(255, 214, 10, 0.45); box-shadow: 0 0 30px rgba(255, 214, 10, 0.12); }

/* ---------- cta band ---------- */
.cta-band {
  margin: 2rem 0;
  padding: 5.5rem 0;
  background:
    radial-gradient(700px circle at 15% 20%, rgba(255, 214, 10, 0.25), transparent 55%),
    radial-gradient(700px circle at 85% 80%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(120deg, var(--purple-deep), #8b5cf6);
  text-align: center;
  box-shadow: 0 0 80px rgba(109, 61, 240, 0.4);
}
.cta-inner h2 { color: #fff; margin-bottom: 0.7rem; }
.cta-inner h2 span { color: var(--yellow); text-shadow: 0 0 18px rgba(255, 214, 10, 0.55); }
.cta-inner p { color: rgba(255, 255, 255, 0.85); margin-bottom: 2rem; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}
.contact-cards { display: grid; gap: 1rem; align-content: start; }
.c-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.15rem 1.4rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.c-card .card-icon { width: 46px; height: 46px; margin: 0; flex: none; }
.c-card h3 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.c-card p { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; }
a.c-card:hover { transform: translateX(4px); border-color: rgba(255, 214, 10, 0.5); box-shadow: 0 0 26px rgba(255, 214, 10, 0.12); }

.c-social { display: flex; gap: 0.8rem; }
.c-social a {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--purple);
  border: 1px solid rgba(162, 107, 255, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}
.c-social svg { width: 20px; height: 20px; }
.c-social a:hover { transform: translateY(-3px); color: var(--yellow); box-shadow: var(--glow-p); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(162, 107, 255, 0.35);
  box-shadow: 0 0 40px rgba(109, 61, 240, 0.18);
  min-height: 380px;
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: invert(0.9) hue-rotate(220deg) saturate(0.85) contrast(0.92);
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--stroke);
  padding: 2.6rem 0;
  background: var(--bg-2);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer .brand img { height: 40px; }
.footer-links { display: flex; gap: 1.6rem; margin-left: auto; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.92rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-copy { color: var(--muted); font-size: 0.85rem; width: 100%; margin-top: 0.4rem; }

/* ---------- rating badge ---------- */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 10, 0.35);
  background: rgba(255, 214, 10, 0.07);
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.rating-badge:hover { box-shadow: var(--glow-y); transform: translateY(-2px); }
.stars { color: var(--yellow); letter-spacing: 0.15em; text-shadow: 0 0 10px rgba(255, 214, 10, 0.55); }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: auto;
}
.nav-phone svg { width: 1em; height: 1em; color: var(--yellow); }
.nav-phone:hover { color: var(--yellow); }
.nav-links { margin-left: auto; }
.nav-links + .nav-phone, .nav-phone { margin-left: 0; }

.sec-cta { text-align: center; margin-top: 3rem; }
.sec-sub { color: var(--muted); max-width: 520px; margin: 0.9rem auto 0; }

/* ---------- process ---------- */
.process { background: linear-gradient(180deg, transparent, rgba(109, 61, 240, 0.07) 50%, transparent); }
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem 1.8rem;
  overflow: hidden;
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.9rem;
  background: linear-gradient(135deg, var(--yellow), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.94rem; }
.step::after {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--purple));
  opacity: 0.5;
}

/* ---------- reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 1.4rem;
  align-items: start;
}
.review-summary {
  background: linear-gradient(160deg, rgba(255, 214, 10, 0.1), rgba(109, 61, 240, 0.14));
  border: 1px solid rgba(255, 214, 10, 0.3);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  text-align: center;
  position: sticky;
  top: 90px;
}
.review-summary .score {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--yellow);
  text-shadow: var(--glow-y);
}
.stars.big { font-size: 1.5rem; margin: 0.5rem 0 0.8rem; }
.review-summary p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.2rem; }
.mention-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1.5rem; }
.mention-chips span {
  font-size: 0.8rem;
  font-family: var(--font-display);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(162, 107, 255, 0.4);
  color: var(--muted);
}
.review-cards { display: grid; gap: 1.2rem; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.7rem 1.9rem;
}
.review-card .stars { font-size: 0.95rem; margin-bottom: 0.7rem; display: block; }
.review-card p { font-size: 1.02rem; line-height: 1.6; }
.review-card footer { margin-top: 0.9rem; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; }
.review-card footer span { color: var(--muted); font-weight: 400; font-family: var(--font-body); }

/* ---------- plans ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 2.3rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan:hover { transform: translateY(-6px); }
.plan.featured {
  border-color: rgba(255, 214, 10, 0.55);
  background: linear-gradient(170deg, rgba(255, 214, 10, 0.08), rgba(109, 61, 240, 0.12));
  box-shadow: 0 0 40px rgba(255, 214, 10, 0.12);
}
.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--yellow), #ffc400);
  color: #1c1400;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  box-shadow: var(--glow-y);
  white-space: nowrap;
}
.plan h3 { font-size: 1.35rem; margin-bottom: 0.3rem; }
.plan-tag { color: var(--purple); font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; margin-bottom: 1.3rem; }
.plan ul { list-style: none; display: grid; gap: 0.6rem; margin-bottom: 1.8rem; flex: 1; }
.plan li { color: var(--muted); font-size: 0.96rem; }
.plan li::first-letter { color: var(--yellow); }
.plan .btn { justify-content: center; }

/* ---------- areas ---------- */
.suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
.suburbs span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  color: var(--muted);
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.suburbs span:hover { border-color: rgba(255, 214, 10, 0.5); color: var(--yellow); box-shadow: 0 0 18px rgba(255, 214, 10, 0.15); }
.areas-note { text-align: center; color: var(--muted); margin-top: 2rem; }
.areas-note a { color: var(--yellow); text-decoration: none; border-bottom: 1px solid rgba(255, 214, 10, 0.4); }

/* ---------- faq ---------- */
.faq-wrap { max-width: 760px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: rgba(162, 107, 255, 0.5); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem; top: 50%;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 1.5rem 1.3rem; color: var(--muted); }
.faq-item a { color: var(--yellow); text-decoration: none; border-bottom: 1px solid rgba(255, 214, 10, 0.4); }

/* ---------- cta band buttons ---------- */
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-dark-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn-dark-ghost:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.1); }

/* ---------- footer grid ---------- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.2rem;
}
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin: 1rem 0 0.8rem; max-width: 280px; }
.footer-brand .stars { font-size: 0.9rem; }
.footer-brand .stars span { color: var(--muted); font-family: var(--font-body); }
.footer-col { display: grid; gap: 0.55rem; align-content: start; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.4rem;
}
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.94rem; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid var(--stroke);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--muted); font-size: 0.85rem; }
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a { color: var(--muted); text-decoration: none; font-size: 0.85rem; }
.footer-legal a:hover { color: var(--yellow); }

/* ---------- sticky mobile bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  padding: 0.7rem 4% calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(11, 7, 20, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--stroke);
  gap: 0.7rem;
}
.mobile-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 0.5rem;
  border-radius: 999px;
  text-decoration: none;
}
.mobile-bar svg { width: 1em; height: 1em; }
.mb-call { color: var(--text); border: 1px solid rgba(162, 107, 255, 0.55); }
.mb-quote { background: linear-gradient(135deg, var(--yellow), #ffca00); color: #1c1400; box-shadow: var(--glow-y); }

/* ---------- quote wizard ---------- */
.quote-page {
  min-height: 100svh;
  background:
    radial-gradient(900px circle at 85% -10%, rgba(109, 61, 240, 0.25), transparent 60%),
    radial-gradient(700px circle at 5% 110%, rgba(255, 214, 10, 0.08), transparent 55%),
    var(--bg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.quote-wrap {
  width: min(680px, 92%);
  padding: 2.5rem 0 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.quote-brand img { height: 84px; margin: 0 auto 1.8rem; filter: drop-shadow(0 0 18px rgba(162, 107, 255, 0.45)); }

.q-progress {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
}
.q-progress::before {
  content: "";
  position: absolute;
  top: 21px; left: 40px; right: 40px;
  height: 1px;
  background: var(--stroke);
}
.q-progress li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
}
.q-progress span {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: var(--bg-2);
  color: var(--muted);
  font-weight: 600;
  transition: all 0.3s ease;
}
.q-progress em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.q-progress li.active span {
  background: linear-gradient(135deg, var(--yellow), #ffca00);
  border-color: transparent;
  color: #1c1400;
  box-shadow: var(--glow-y);
}
.q-progress li.active em { color: var(--yellow); }
.q-progress li.done span { border-color: rgba(162, 107, 255, 0.6); color: var(--purple); }

.q-step { display: none; text-align: left; }
.q-step.active { display: block; animation: qIn 0.4s ease; }
@keyframes qIn { from { opacity: 0; transform: translateY(14px); } }

.q-step h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.2rem;
}

.q-fields { display: grid; gap: 1.2rem; }
.q-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.q-fields label {
  display: grid;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
}
.q-fields label em { font-style: normal; opacity: 0.6; text-transform: none; letter-spacing: 0; }
.q-fields input, .q-fields textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}
.q-fields input:focus, .q-fields textarea:focus {
  border-color: rgba(255, 214, 10, 0.6);
  box-shadow: 0 0 20px rgba(255, 214, 10, 0.12);
}
.q-fields input::placeholder, .q-fields textarea::placeholder { color: rgba(168, 159, 196, 0.55); }

.q-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}
.q-options { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.q-opt {
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.75rem 1.3rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.q-opt:hover { border-color: rgba(162, 107, 255, 0.6); }
.q-opt.picked {
  background: linear-gradient(135deg, var(--yellow), #ffca00);
  border-color: transparent;
  color: #1c1400;
  font-weight: 600;
  box-shadow: var(--glow-y);
}

.q-summary {
  margin-top: 1.6rem;
  background: rgba(109, 61, 240, 0.1);
  border: 1px solid rgba(162, 107, 255, 0.4);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  text-align: left;
}
.q-summary h3 { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--purple); margin-bottom: 0.7rem; }
.q-summary pre { font-family: var(--font-body); white-space: pre-wrap; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

.q-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.4rem; }
.q-nav .btn { min-width: 130px; justify-content: center; }
.q-nav #qNext { margin-left: auto; }
.q-error { color: #ff7a9c; margin-top: 1rem; font-size: 0.95rem; }

.q-done { text-align: center; padding-top: 1rem; }
.q-done-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 22px rgba(255, 214, 10, 0.7));
}
.q-done p { color: var(--muted); max-width: 460px; margin: 0 auto 2rem; }
.q-send-buttons { display: grid; gap: 0.9rem; max-width: 360px; margin: 0 auto 2rem; }
.q-send-buttons .btn { justify-content: center; }
.q-back-home { color: var(--muted); text-decoration: none; font-size: 0.92rem; }
.q-back-home:hover { color: var(--yellow); }
.q-trust { margin-top: 3rem; color: var(--muted); font-size: 0.88rem; }
.q-trust::first-line { color: var(--muted); }

/* ---------- legal pages ---------- */
.legal-hero {
  padding: 9rem 0 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--stroke);
}
.legal-hero .container { position: relative; z-index: 1; }
.legal-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.legal-hero p { color: var(--muted); font-size: 1rem; }
.legal-body { padding: 3.5rem 0 5rem; }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-toc {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 1.4rem 1.7rem;
  margin-bottom: 3rem;
}
.legal-toc h2 {
  font-size: 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.9rem;
}
.legal-toc ol { list-style: none; counter-reset: toc; display: grid; gap: 0.5rem; }
.legal-toc li { counter-increment: toc; }
.legal-toc a { color: var(--muted); text-decoration: none; font-size: 0.96rem; }
.legal-toc a::before { content: counter(toc) ". "; color: var(--purple); font-family: var(--font-display); }
.legal-toc a:hover { color: var(--yellow); }

.legal-section { margin-bottom: 2.6rem; scroll-margin-top: 90px; }
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
}
.legal-section h2 .num {
  color: var(--yellow);
  font-size: 1.05rem;
  text-shadow: 0 0 12px rgba(255, 214, 10, 0.4);
}
.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.3rem 0 0.5rem;
}
.legal-section p { color: var(--muted); margin-bottom: 0.9rem; }
.legal-section ul { list-style: none; display: grid; gap: 0.55rem; margin: 0 0 1rem; }
.legal-section ul li { color: var(--muted); padding-left: 1.4rem; position: relative; }
.legal-section ul li::before { content: "✦"; position: absolute; left: 0; color: var(--yellow); font-size: 0.8rem; }
.legal-section a { color: var(--yellow); text-decoration: none; border-bottom: 1px solid rgba(255, 214, 10, 0.4); }
.legal-section a:hover { color: var(--yellow-soft); }
.legal-section strong { color: var(--text); }
.legal-note {
  background: rgba(162, 107, 255, 0.08);
  border: 1px solid rgba(162, 107, 255, 0.35);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 2.5rem;
}
.legal-note strong { color: var(--purple); }

/* ---------- location landing pages ---------- */
.loc-hero .loc-sub { color: var(--muted); font-size: 1.08rem; max-width: 60ch; margin: 1rem 0 1.8rem; }
.loc-hero .rating-badge { margin-bottom: 1.2rem; }
.loc-hero .hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.loc-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 3rem; align-items: start; }
.loc-main h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 1.2rem; }
.loc-main p { color: var(--muted); margin-bottom: 1.1rem; }
.loc-main .about-points { margin: 1.5rem 0 2rem; }
.loc-main .btn { margin-top: 0.4rem; }

.loc-side { display: grid; gap: 1.2rem; position: sticky; top: 90px; }
.loc-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
}
.loc-card h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.svc-list { list-style: none; display: grid; gap: 0.5rem; }
.svc-list li { color: var(--muted); font-size: 0.95rem; padding-left: 1.4rem; position: relative; }
.svc-list li::before { content: "\2714"; position: absolute; left: 0; color: var(--yellow); font-size: 0.8rem; }
.loc-review {
  background: linear-gradient(160deg, rgba(255, 214, 10, 0.08), rgba(109, 61, 240, 0.12));
  border: 1px solid rgba(255, 214, 10, 0.3);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
}
.loc-review .stars { font-size: 0.95rem; margin-bottom: 0.6rem; display: block; }
.loc-review p { font-size: 0.98rem; line-height: 1.6; }
.loc-review footer { margin-top: 0.8rem; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; }
.loc-review footer span { color: var(--muted); font-weight: 400; font-family: var(--font-body); }

.suburbs a { text-decoration: none; }
.suburbs a span { cursor: pointer; }

/* locations hub page */
.loc-hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.4rem 3rem; }
.loc-hub-col h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 1rem; color: var(--yellow); }

/* ---------- footer: Locations Served ---------- */
.footer-locations {
  border-top: 1px solid var(--stroke);
  padding: 2.6rem 0 0.4rem;
  max-width: min(1160px, 92%);
  margin: 0 auto 2.4rem;
}
.footer-locations > h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.4rem;
}
.floc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
.floc-col h5 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.floc-col a, .floc-col span {
  display: block;
  color: var(--muted-2, #7d7499);
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 1.9;
  transition: color 0.15s ease;
}
.floc-col a { color: var(--muted); }
.floc-col a:hover { color: var(--yellow); }
.floc-col span[aria-current] { color: var(--yellow); font-weight: 600; }

@media (max-width: 960px) {
  .loc-grid { grid-template-columns: 1fr; gap: 2rem; }
  .loc-side { position: static; }
  .floc-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-hub-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .floc-grid { grid-template-columns: 1fr; }
}

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1120px) {
  .nav-phone { display: none; }
}

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { max-width: 440px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-summary { position: static; }
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan.featured { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta { margin-left: auto; }
  .nav-links {
    position: fixed;
    top: 64px; right: 4%;
    flex-direction: column;
    gap: 0.4rem;
    background: rgba(18, 11, 33, 0.97);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 1rem 1.6rem;
    margin: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links a { padding: 0.45rem 0; }
  .nav-burger { display: block; }
}

@media (max-width: 620px) {
  .section { padding: 4.5rem 0; }
  .services-grid, .gallery-grid, .process-grid { grid-template-columns: 1fr; }
  .nav-cta { padding: 0.7rem 1rem; font-size: 0.88rem; }
  .brand-word { display: none; }
  .hero { padding-top: 7rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .badge-float { right: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  .quote-page { padding-bottom: 0; }
  .quote-page .mobile-bar { display: none; }
  .q-row { grid-template-columns: 1fr; }
  .q-progress em { display: none; }
  .q-progress::before { top: 21px; }
  .q-nav { flex-direction: column-reverse; }
  .q-nav #qNext { margin-left: 0; width: 100%; }
  .q-nav #qBack { width: 100%; }
}
