/* ============== Tokens ============== */
:root {
  /* Brand palette derived from existing site */
  --lavender-50: #F6F3FB;
  --lavender-100: #ECE5F8;
  --lavender-200: #DCD2F2;
  --lavender-300: #B7B0E8;
  --purple-500: #7B5DD6;
  --purple-600: #6A4ECB;
  --purple-700: #5A41B5;

  --pink-300: #F1A4C4;
  --pink-500: #E879A6;
  --pink-600: #DE5F92;
  --pink-700: #C84A7E;

  --teal-400: #4FC3D0;

  --ink-900: #1A1530;
  --ink-700: #3A3358;
  --ink-500: #6B6485;
  --ink-300: #B4AFC4;

  --bg: #FFFFFF;
  --bg-soft: #FAF8FE;
  --surface: #FFFFFF;
  --border: #EDE7F7;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(26,21,48,.04), 0 1px 4px rgba(26,21,48,.04);
  --shadow-md: 0 10px 30px -10px rgba(123,93,214,.15), 0 4px 12px rgba(26,21,48,.05);
  --shadow-lg: 0 30px 60px -20px rgba(123,93,214,.25);

  --container: 1180px;
  --pad: clamp(20px, 4vw, 40px);

  /* Type */
  --font-display: 'Cabinet Grotesk', 'General Sans', system-ui, sans-serif;
  --font-body: 'General Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--purple-600); text-decoration: none; }
a:hover { color: var(--purple-700); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1; letter-spacing: -.03em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; letter-spacing: -.01em; }
h4 { font-size: 1.05rem; letter-spacing: -.005em; margin-top: 1.4em; }
p  { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============== Header ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px var(--pad);
}
.logo { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 4px; color: var(--purple-600); text-decoration: none; line-height: 1; }
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
/* PARRAMATTA tag is positioned underneath the wordmark, indented to start
   roughly under the 'M' of MASSAGE (past the flower icon) */
.logo-tag {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .35em;
  color: var(--pink-500);
  font-weight: 700;
  align-self: flex-start;
  padding-left: 50px;
}
@media (max-width: 640px) {
  .logo-img { height: 36px; }
  .logo-tag { font-size: 9px; letter-spacing: .28em; padding-left: 42px; }
}
/* Legacy fallback classes (kept harmless) */
.logo-mark { width: 48px; height: 48px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }

.nav-desktop {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-desktop a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-desktop a:hover { color: var(--purple-600); }
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-500), var(--purple-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  border-radius: 2px;
}
.nav-desktop a:hover::after { transform: scaleX(1); }

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  box-shadow: 0 6px 20px -8px rgba(232,121,166,.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.phone-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px -8px rgba(232,121,166,.8);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-900);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px var(--pad) 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.nav-mobile a {
  padding: 14px 4px;
  color: var(--ink-900);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile .mobile-phone {
  margin-top: 12px;
  color: var(--pink-600);
  font-weight: 700;
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(123,93,214,.6);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(123,93,214,.7);
}
.btn-ghost {
  background: transparent;
  color: var(--purple-700);
  border: 1.5px solid var(--lavender-300);
}
.btn-ghost:hover {
  background: var(--lavender-100);
  color: var(--purple-700);
  border-color: var(--purple-500);
}
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ============== Eyebrows & section heads ============== */
.eyebrow, .section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--purple-600);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--lavender-200); }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-sub { color: var(--ink-500); font-size: 1.05rem; }

/* ============== Hero ============== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #F4EEFB 0%, #ECE5F8 100%);
  overflow: hidden;
  padding: clamp(60px, 9vw, 110px) 0 clamp(80px, 10vw, 130px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(232,121,166,.18), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(123,93,214,.12), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
}
.hero h1 { color: var(--ink-900); }
.lede {
  font-size: 1.15rem;
  color: var(--ink-700);
  max-width: 520px;
  margin-bottom: 32px;
}
.lede em { font-style: italic; color: var(--purple-600); font-weight: 500; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-note {
  font-size: .92rem;
  color: var(--ink-500);
  background: rgba(255,255,255,.6);
  padding: 12px 18px;
  border-radius: var(--radius);
  display: inline-block;
  border: 1px solid var(--lavender-200);
}
.hero-note strong { color: var(--pink-600); }
.hero-note em { color: var(--purple-600); font-style: normal; font-weight: 600; }

.hero-art { position: relative; }
.hero-art img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(123,93,214,.15));
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  z-index: 1;
}
.blob-1 { width: 320px; height: 320px; background: var(--pink-300); top: 10%; left: -10%; }
.blob-2 { width: 280px; height: 280px; background: var(--lavender-300); bottom: 0%; right: -10%; }

/* ============== Sections ============== */
.section { padding: clamp(60px, 9vw, 110px) 0; }
.section-about { background: #fff; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.about-copy p { font-size: 1.05rem; }
.about-copy p:first-child { color: var(--ink-700); font-weight: 500; }

/* ============== Why ============== */
.section-why { background: var(--bg-soft); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--lavender-300);
}
.why-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  line-height: 1;
}
.why-card h3 { margin-bottom: 10px; }
.why-card p { color: var(--ink-500); font-size: .98rem; margin: 0; }

/* ============== Services ============== */
.section-services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.service:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.service-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lavender-200), var(--pink-300));
  padding: 4px;
  box-shadow: 0 8px 20px -8px rgba(123,93,214,.3);
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.service h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service p { color: var(--ink-500); font-size: .92rem; margin: 0; }

/* ============== Team ============== */
.section-team { background: var(--bg-soft); }
.therapist {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.therapist-avatar {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender-200), var(--pink-300));
  padding: 6px;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 18px 40px -16px rgba(123,93,214,.35);
}
.therapist-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.therapist h3 { font-size: 1.75rem; margin-bottom: 4px; }
.therapist-title {
  color: var(--purple-600);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 20px;
  letter-spacing: .01em;
}
.therapist h4 {
  font-size: .95rem;
  color: var(--pink-600);
  margin-top: 22px;
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.therapist p { color: var(--ink-700); }

/* ============== Booking CTA ============== */
.section-booking {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700) 60%, var(--pink-700));
  position: relative;
  overflow: hidden;
}
.section-booking::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
  top: -200px; right: -100px;
}
.booking-card {
  text-align: center;
  color: #fff;
  position: relative;
  max-width: 760px;
}
.booking-card h2 { color: #fff; margin-bottom: 18px; }
.booking-card p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 32px; }
.booking-card .btn-primary {
  background: #fff;
  color: var(--purple-700);
  box-shadow: 0 16px 40px -10px rgba(0,0,0,.3);
}
.booking-card .btn-primary:hover {
  background: var(--lavender-50);
  color: var(--purple-700);
}
.fine-print {
  margin-top: 24px;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.fine-print em { color: #fff; font-style: normal; font-weight: 600; }

/* ============== Contact ============== */
.section-contact { background: #fff; }
.section-contact h2 { margin-bottom: 12px; }
.contact-line { font-size: 1.02rem; }
.contact-line.muted { color: var(--ink-500); margin-top: 24px; }
.section-contact address {
  font-style: normal;
  font-size: 1.05rem;
  color: var(--ink-700);
  margin-bottom: 24px;
  line-height: 1.7;
}
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  min-height: 360px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============== Footer ============== */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.75);
  padding: 60px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,.75); font-weight: 500; }
.footer-links a:hover { color: #fff; }
.footer-meta p { margin: 0 0 8px; font-size: .92rem; }
.footer-meta a { color: var(--pink-300); }
.copyright { margin-top: 18px !important; color: rgba(255,255,255,.5); font-size: .82rem; }

/* ============== Responsive ============== */
@media (max-width: 900px) {
  .nav-desktop, .phone-btn { display: none; }
  .menu-toggle { display: block; }
  .nav-mobile[data-open="true"] { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; max-width: 380px; margin: 0 auto; }

  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .therapist { grid-template-columns: 1fr; padding: 32px; text-align: center; }
  .therapist-avatar { margin: 0 auto; width: 180px; height: 180px; }
  .therapist-avatar span { font-size: 4.5rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-ctas { width: 100%; }
  .btn { width: 100%; }
  .booking-card .btn { width: auto; }
  .contact-actions .btn { width: auto; flex: 1; }
}

/* ============== Hero qualifying points ============== */
.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 18px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--ink-700);
  font-weight: 500;
}
.hero-points li svg {
  color: var(--purple-500);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .hero-points { grid-template-columns: 1fr; }
}

/* ============== HICAPS / Fund strip ============== */
.fund-strip {
  background: var(--lavender-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.fund-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}
.hicaps-logo {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
}
.fund-label {
  margin: 0;
  max-width: 700px;
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.55;
}
@media (max-width: 640px) {
  .fund-inner { flex-direction: column; text-align: center; gap: 16px; }
  .hicaps-logo { height: 48px; }
}

/* ============== FAQ ============== */
.section-faq {
  background: var(--bg-soft);
}
.faq-list {
  max-width: 820px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-list details[open] {
  border-color: var(--lavender-300);
  box-shadow: var(--shadow-sm);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 22px;
  color: var(--purple-500);
  font-weight: 700;
  transition: transform .2s ease;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq-list details p a { color: var(--purple-600); font-weight: 600; }

/* ============== Sticky mobile CTA ============== */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: var(--purple-500);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(123,93,214,.4), 0 2px 6px rgba(26,21,48,.15);
  text-align: center;
}
.sticky-cta:hover { background: var(--purple-600); }
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  /* Add bottom padding so footer isn't blocked */
  .site-footer { padding-bottom: 88px; }
}
