/* Lumina Mind Studio — base styles & tokens */
:root {
  --cream: #FBF6EE;
  --cream-2: #FFFBF3;
  --ink: #1B1340;
  --ink-soft: #4A4366;
  --ink-mute: rgba(27, 19, 64, .58);
  --line: rgba(27, 19, 64, .08);

  --purple: #7E5BEF;
  --purple-2: #A88BFF;
  --purple-deep: #5B3FD6;
  --purple-50: #F1ECFF;

  --teal: #2DAFA0;
  --teal-2: #66D1C2;
  --teal-50: #E6F7F3;

  --coral: #FF8B7E;
  --coral-2: #FFB5A8;
  --coral-50: #FFEEEA;

  --yellow: #FFD25E;
  --yellow-50: #FFF5DA;

  --shadow-card: 0 1px 2px rgba(27,19,64,.04), 0 12px 32px -8px rgba(91,63,214,.14);
  --shadow-floating: 0 2px 4px rgba(27,19,64,.04), 0 30px 60px -20px rgba(91,63,214,.28);
  --shadow-glow: 0 12px 28px -8px rgba(126,91,239,.55), 0 0 0 6px rgba(126,91,239,.08);

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;

  --ff-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --ff-script: "Caveat", "Brush Script MT", cursive;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: clip;
}
body {
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  width: 100%;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ─────────── Layout ─────────── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1380px; margin: 0 auto; padding: 0 32px; }

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px 16px 22px;
  border-radius: 999px;
  font-weight: 700; font-size: 14px; letter-spacing: .04em;
  text-transform: uppercase;
  border: 0;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .25s;
  position: relative;
  white-space: nowrap;
}
.btn .btn-icon-l { display:inline-flex; }
.btn .btn-icon-r {
  display:inline-flex; align-items:center; justify-content:center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  transition: transform .3s;
}
.btn:hover .btn-icon-r { transform: translateX(3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(126,91,239,.7), 0 0 0 8px rgba(126,91,239,.1); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(27,19,64,.16);
  padding: 14.5px 24px;
}
.btn-secondary:hover { background: #fff; border-color: var(--purple); color: var(--purple); }
.btn-ghost-light {
  background: rgba(255,255,255,.18);
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.24);
}
.btn-white { background: #fff; color: var(--purple-deep); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(255,255,255,.4); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #259285; transform: translateY(-1px); }

/* ─────────── Typography ─────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--purple-deep);
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--purple); border-radius: 2px;
}
.eyebrow-c::before, .eyebrow-c::after {
  content: ""; width: 28px; height: 2px; background: var(--purple); border-radius: 2px;
}
.script { font-family: var(--ff-script); font-weight: 500; letter-spacing: -.01em; }
.h-hero {
  font-weight: 800; line-height: 1.02; letter-spacing: -.035em;
  font-size: clamp(40px, 5.6vw, 78px);
  margin: 0;
}
.h-hero .script { font-weight: 600; font-size: 1.1em; line-height: .9; color: var(--purple-deep); position: relative; display: inline-block; }
.h-hero .script::after {
  content: ""; position: absolute; left: -2px; right: 4px; bottom: -.05em; height: 12px;
  background: var(--yellow);
  border-radius: 999px;
  z-index: -1;
  transform: skewX(-8deg) translateY(2px);
  opacity: .85;
}
.h-section {
  font-weight: 800; line-height: 1.05; letter-spacing: -.025em;
  font-size: clamp(32px, 3.8vw, 54px); margin: 0;
}
.h-section .script { color: var(--purple-deep); }
.lede { font-size: 17px; line-height: 1.6; color: var(--ink-soft); max-width: 56ch; }

/* ─────────── Cards ─────────── */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-floating); }
.glass {
  background: rgba(255,255,255,.6);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,.7);
}

/* ─────────── Decorative blobs ─────────── */
.blob {
  position: absolute; border-radius: 50%; filter: blur(40px); pointer-events: none;
  z-index: 0;
}
.blob-purple { background: radial-gradient(circle, rgba(126,91,239,.4), transparent 70%); }
.blob-coral { background: radial-gradient(circle, rgba(255,139,126,.45), transparent 70%); }
.blob-teal { background: radial-gradient(circle, rgba(45,175,160,.35), transparent 70%); }
.blob-yellow { background: radial-gradient(circle, rgba(255,210,94,.55), transparent 70%); }

/* ─────────── Section spacing ─────────── */
section { position: relative; overflow-x: clip; }
.s-pad { padding: 96px 0; }
.s-pad-sm { padding: 64px 0; }

/* ─────────── Animations ─────────── */
@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--rot, 0deg)); }
}
@keyframes float-y-2 {
  0%, 100% { transform: translateY(-6px) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(8px) rotate(var(--rot, 0deg)); }
}
@keyframes pulse-soft {
  0%, 100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.15); opacity: 1; }
}
@keyframes sparkle {
  0%, 100% { transform: scale(.8) rotate(0deg); opacity: .4; }
  50% { transform: scale(1.1) rotate(180deg); opacity: 1; }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.float { animation: float-y 6s ease-in-out infinite; }
.float-2 { animation: float-y-2 7.5s ease-in-out infinite; }
.in-view { animation: rise-in .8s cubic-bezier(.2,.7,.2,1) both; }

/* ─────────── Doodles ─────────── */
.doodle { position: absolute; pointer-events: none; }
.heart-d { color: var(--coral); }
.sparkle-d { color: var(--yellow); }

/* ─────────── image-slot styling ─────────── */
image-slot {
  display: block;
  --is-bg: linear-gradient(135deg, #EFE6FF 0%, #FFE8E1 100%);
  --is-fg: rgba(27,19,64,.5);
  --is-border: 1.5px dashed rgba(126,91,239,.35);
  box-shadow: var(--shadow-card);
}

/* ─────────── Utility ─────────── */
.row { display: flex; gap: 16px; align-items: center; }
.col { display: flex; flex-direction: column; gap: 16px; }
.grow { flex: 1; }
/* ─────────── Mobile responsive overrides ─────────── */
.hide-mobile { }
@media (max-width: 860px) {
  .hide-mobile { display: none !important; }
  .s-pad { padding: 56px 0; }

  /* Hide drag-and-drop based floating decorative cards that sit outside their parents */
  .hero-mini-card,
  .hero-yellow-tag,
  .hero-badge,
  .about-media > .about-tag,
  .about-media > .card.float {
    display: none !important;
  }

  /* Hero typography */
  .h-hero { font-size: clamp(34px, 9.4vw, 52px); }
  .h-section { font-size: clamp(28px, 7.4vw, 40px); }
  .hero { padding: 36px 0 110px; }

  /* Hero stats — keep inside */
  .hero-stats { width: calc(100% - 24px); padding: 14px 4px; }
  .hero-stat b { font-size: 19px; }
  .hero-stat span { font-size: 10px; }

  /* Trust strip — remove side margin so it fits */
  .trust-strip {
    margin: 0 16px;
    padding: 20px 22px;
    border-radius: 24px;
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .trust-strip > div { width: 100%; }
  .trust-script { font-size: 22px; }

  /* Booking section — remove side margin */
  .booking {
    margin: 0 16px;
    padding: 40px 22px;
    border-radius: 28px;
  }
  .booking-grid { gap: 28px; }

  /* Calendar inside booking */
  .cal { padding: 16px; }
  .cal-day { font-size: 12.5px; }
  .slot { padding: 8px 12px; font-size: 12.5px; }
  .cal-foot { flex-wrap: wrap; gap: 8px; font-size: 12px; }

  /* Sections inner */
  .wrap, .wrap-wide { padding: 0 18px; }

  /* Service cards */
  .svc-card { padding: 26px 22px 24px; }
  .svc-grid { gap: 16px; }

  /* About */
  .about-grid { gap: 32px; }
  .about-photo image-slot { height: 380px; }

  /* Process */
  .step-card { padding: 0 4px; }

  /* Testimonials — kill rotation that causes overflow */
  .test-card { transform: none !important; padding: 26px 22px; }
  .test-card:hover { transform: translateY(-4px) !important; }

  /* FAQ */
  .faq-q { padding: 18px 20px; font-size: 15.5px; gap: 12px; }
  .faq-a { padding: 0 20px; }
  .faq-item.open .faq-a { padding-bottom: 18px; }

  /* Fees + insurance */
  .fee-grid { grid-template-columns: 1fr !important; }

  /* Footer */
  footer {
    padding: 56px 0 24px;
    border-radius: 28px 28px 0 0;
    margin-top: 48px;
  }
  .f-grid { gap: 28px; }
  .f-quote { font-size: 22px; padding-top: 24px; margin-top: 40px; }

  /* Nav */
  .nav-wrap { padding: 10px 0; }
  .logo-mark { width: 38px; height: 38px; }
  .logo-mark svg { width: 38px; height: 38px; }
  .logo-text b { font-size: 20px; }
  .logo-text span { font-size: 8.5px; letter-spacing: .18em; }

  /* Decorative blobs — keep contained */
  .blob { max-width: 60vw; max-height: 60vw; filter: blur(50px); }

  /* Buttons — full width on really small */
  .hero .btn, .booking .btn { width: auto; }

  /* Scribble underline can overhang */
  .scribble svg { left: 0; right: 0; width: 100%; }

  /* Doodles — hide ones placed at percentage edges */
  .doodle[style*="right:"][style*="%"],
  .doodle[style*="left:"][style*="%"] {
    /* keep — but limit z to behind */
  }
}

@media (max-width: 480px) {
  .h-hero { font-size: 34px; line-height: 1.06; }
  .h-section { font-size: 26px; }
  .wrap, .wrap-wide { padding: 0 16px; }
  .trust-strip { margin: 0 12px; padding: 18px 18px; }
  .booking { margin: 0 12px; padding: 32px 18px; }
  .lede { font-size: 15.5px; }
  .btn { padding: 13px 18px 13px 16px; font-size: 13px; }
  .btn .btn-icon-r { width: 24px; height: 24px; }

  /* Eyebrow shrink */
  .eyebrow { font-size: 11px; letter-spacing: .14em; }

  /* Hero stats compact */
  .hero-stats { padding: 12px 0; }
  .hero-stat { padding: 4px 4px; }
  .hero-stat b { font-size: 17px; }
  .hero-stat span { font-size: 9px; letter-spacing: .02em; }

  /* About image */
  .about-photo image-slot { height: 320px; }

  /* Insurance chips */
  .ti-ico { width: 32px !important; height: 32px !important; }
}

@media (max-width: 380px) {
  .hero-photo-frame image-slot { height: 320px; }
  .h-hero { font-size: 30px; }
  .h-section { font-size: 23px; }
}

/* ─────────── Nav ─────────── */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 14px 0;
}
.nav-wrap.scrolled {
  background: rgba(251,246,238,.85);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 1px 0 var(--line), 0 8px 24px -16px rgba(27,19,64,.18);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-link {
  position: relative; padding: 10px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  letter-spacing: .04em;
  transition: color .2s;
}
.nav-link:hover { color: var(--purple-deep); }
.nav-link.active { color: var(--purple-deep); }
.nav-link.active::after {
  content: ""; position: absolute; left: 50%; bottom: 2px;
  width: 18px; height: 2px; background: var(--purple); border-radius: 2px;
  transform: translateX(-50%);
}

/* ─────────── Hero ─────────── */
.hero {
  position: relative;
  padding: 56px 0 140px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--purple-50) 100%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 60px;
  background: var(--cream);
  -webkit-mask: radial-gradient(60px 60px at 50% 0, transparent 99%, #000 100%);
  mask: radial-gradient(60px 60px at 50% 0, transparent 99%, #000 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.hero-media { position: relative; }
.hero-photo-frame {
  position: relative; border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-photo-frame image-slot {
  width: 100%; height: 540px;
  border-radius: var(--radius-xl);
}
@media (max-width: 980px) {
  .hero-photo-frame image-slot { height: 420px; }
}
.hero-badge {
  position: absolute; left: -28px; bottom: 36px;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-family: var(--ff-script); font-size: 22px; line-height: 1.05;
  padding: 10px;
  box-shadow: 0 18px 40px -10px rgba(45,175,160,.6);
  transform: rotate(-8deg);
}
.hero-badge::before {
  content: ""; position: absolute; inset: 4px;
  border: 1.5px dashed rgba(255,255,255,.55); border-radius: 50%;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff; border-radius: var(--radius);
  padding: 18px 8px;
  box-shadow: var(--shadow-card);
  position: absolute; left: 50%; bottom: -36px; transform: translateX(-50%);
  width: 84%;
}
.hero-stat { text-align: center; padding: 6px 8px; position: relative; }
.hero-stat + .hero-stat::before {
  content: ""; position: absolute; left: 0; top: 14%; bottom: 14%;
  width: 1px; background: var(--line);
}
.hero-stat b { display: block; font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.hero-stat span { font-size: 11px; color: var(--ink-mute); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.hero-stat .accent-teal { color: var(--teal); }
.hero-stat .accent-coral { color: var(--coral); }
.hero-stat .accent-purple { color: var(--purple); }

/* ─────────── Trust strip ─────────── */
.trust-strip {
  background: linear-gradient(95deg, var(--purple) 0%, var(--purple-deep) 60%, #6D3FB8 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 36px;
  margin: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-floating);
}
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; }
.trust-item .ti-ico {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.14);
  color: var(--yellow);
}
.trust-script { font-family: var(--ff-script); font-size: 26px; line-height: 1.05; color: var(--cream); opacity: .95; }

/* ─────────── Services ─────────── */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  position: relative; padding: 32px 28px 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  cursor: default;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-floating); }
.svc-card::before {
  content: ""; position: absolute; inset: -2px -2px auto -2px; height: 8px;
  background: var(--svc-color, var(--purple));
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover::before { opacity: 1; }
.svc-ico {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--svc-bg, var(--purple-50));
  color: var(--svc-color, var(--purple));
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: transform .35s;
}
.svc-card:hover .svc-ico { transform: rotate(-6deg) scale(1.05); }
.svc-card h3 { margin: 0 0 8px; font-size: 19px; font-weight: 800; letter-spacing: -.01em; }
.svc-card p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-mute); }
.svc-card .svc-more {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--svc-color, var(--purple));
}

/* ─────────── About ─────────── */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-media { position: relative; }
.about-photo image-slot {
  width: 100%; height: 620px;
  border-radius: var(--radius-xl);
}
@media (max-width: 980px) {
  .about-photo image-slot { height: 480px; }
}
.about-tag {
  position: absolute; padding: 10px 16px; border-radius: 999px;
  background: #fff; box-shadow: var(--shadow-card);
  font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 8px;
}
.about-tag .dot { width: 8px; height: 8px; border-radius: 50%; }
.about-creds { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 28px; }
.about-cred {
  padding: 8px 14px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
}
.about-cred svg { color: var(--teal); }

/* ─────────── Process ─────────── */
.process {
  background: var(--cream-2);
  position: relative;
}
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  position: relative;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: 1fr; } }
.process-line {
  position: absolute; top: 88px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--purple) 0 6px, transparent 6px 14px);
  z-index: 0;
}
@media (max-width: 980px) { .process-line { display: none; } }
.step-card { position: relative; text-align: center; padding: 0 8px; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  background: #fff; border: 2px solid var(--step-color, var(--purple));
  color: var(--step-color, var(--purple));
  font-weight: 800; font-size: 22px;
  box-shadow: 0 8px 24px -8px rgba(27,19,64,.18);
  position: relative; z-index: 1;
}
.step-ico {
  width: 64px; height: 64px; border-radius: 20px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  background: var(--step-bg, var(--purple-50));
  color: var(--step-color, var(--purple));
}
.step-card h4 { margin: 0 0 8px; font-size: 20px; font-weight: 800; letter-spacing: -.01em; }
.step-card p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-mute); }

/* ─────────── Testimonials ─────────── */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .test-grid { grid-template-columns: 1fr; } }
.test-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--tc-bg, linear-gradient(160deg, #F1ECFF, #FFE8E1));
  box-shadow: var(--shadow-card);
  transition: transform .3s;
}
.test-card:hover { transform: translateY(-6px) rotate(var(--tc-rot, 0deg)); }
.test-card .quote-mark {
  position: absolute; top: 18px; right: 22px; font-size: 64px; line-height: 1;
  color: rgba(255,255,255,.7); font-family: serif; font-weight: 700;
}
.test-card p { font-size: 16px; line-height: 1.55; color: var(--ink); margin: 0 0 24px; }
.test-meta { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: rgba(255,255,255,.6); flex-shrink: 0; }
.test-avatar image-slot { width: 48px; height: 48px; }
.test-name { font-weight: 700; font-size: 15px; }
.test-role { font-size: 12.5px; color: var(--ink-mute); font-weight: 600; }
.test-stars { color: var(--yellow); margin-bottom: 12px; display: flex; gap: 2px; }

/* ─────────── FAQ ─────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq-item.open { box-shadow: var(--shadow-floating); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  font-size: 16.5px; font-weight: 700;
  width: 100%; background: transparent; border: 0; text-align: left; color: var(--ink);
}
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%; background: var(--purple-50);
  color: var(--purple); display: grid; place-items: center; flex-shrink: 0;
  transition: transform .3s, background .3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--purple); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
  padding: 0 26px;
}
.faq-item.open .faq-a { max-height: 280px; padding-bottom: 22px; }
.faq-a p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* ─────────── Booking ─────────── */
.booking {
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(255,210,94,.18) 0%, transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(255,139,126,.18) 0%, transparent 60%),
    linear-gradient(160deg, #6D49E0 0%, #5B3FD6 60%, #4B30B5 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  margin: 0 32px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 980px) { .booking { padding: 48px 28px; margin: 0 16px; } }
.booking-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
@media (max-width: 980px) { .booking-grid { grid-template-columns: 1fr; gap: 36px; } }
.booking h2 { color: #fff; }
.booking h2 .script { color: var(--yellow); }
.booking p { color: rgba(255,255,255,.82); }

.cal {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-head b { font-size: 15px; font-weight: 800; letter-spacing: -.01em; }
.cal-nav { display: flex; gap: 6px; }
.cal-nav button {
  width: 30px; height: 30px; border-radius: 50%; border: 0;
  background: var(--purple-50); color: var(--purple); display: grid; place-items: center;
}
.cal-nav button:hover { background: var(--purple); color: #fff; }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 8px; }
.cal-dow span { text-align: center; font-size: 10.5px; font-weight: 700; color: var(--ink-mute); letter-spacing: .06em; text-transform: uppercase; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  aspect-ratio: 1; border-radius: 12px; border: 0;
  background: transparent; color: var(--ink);
  font-size: 13.5px; font-weight: 600;
  position: relative;
  transition: background .2s, color .2s, transform .2s;
}
.cal-day.muted { color: rgba(27,19,64,.22); }
.cal-day.avail { color: var(--purple-deep); }
.cal-day.avail:hover { background: var(--purple-50); transform: scale(1.05); }
.cal-day.avail::after {
  content: ""; position: absolute; left: 50%; bottom: 5px; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--teal);
}
.cal-day.unavail { color: rgba(27,19,64,.3); cursor: not-allowed; }
.cal-day.sel { background: var(--purple); color: #fff; }
.cal-day.sel::after { background: var(--yellow); }
.cal-day.today { box-shadow: inset 0 0 0 1.5px var(--coral); }

.slots {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.slot {
  padding: 9px 14px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); font-size: 13px; font-weight: 600;
  transition: all .2s;
}
.slot:hover { border-color: var(--purple); color: var(--purple-deep); }
.slot.sel { background: var(--purple); color: #fff; border-color: var(--purple); }
.slot.taken { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.cal-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px; font-size: 13px; color: var(--ink-mute);
}

/* ─────────── Footer ─────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  overflow-x: clip;
}
.f-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 860px) { .f-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.f-col h5 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 16px; }
.f-col a, .f-col p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.65); margin: 0; }
.f-col a:hover { color: var(--yellow); }
.f-social { display: flex; gap: 10px; margin-top: 16px; }
.f-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: rgba(255,255,255,.8);
  transition: background .2s, color .2s, transform .2s;
}
.f-social a:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }
.f-quote {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-family: var(--ff-script); font-size: 28px; color: var(--cream); line-height: 1.2;
}
.f-quote::before, .f-quote::after { content: "✦"; color: var(--yellow); margin: 0 12px; font-size: 16px; vertical-align: middle; }
.f-legal { text-align: center; margin-top: 24px; font-size: 12.5px; color: rgba(255,255,255,.4); }

/* Calendly inline embed wrapper */
.cal-embed { min-height: 700px; }
.calendly-inline-widget { width: 100% !important; min-width: 0 !important; }
@media (max-width: 860px) {
  .cal-embed { min-height: 620px; }
  .calendly-inline-widget { height: 600px !important; }
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 800;
}
.logo-mark {
  width: 44px; height: 44px; position: relative; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text b { font-family: var(--ff-script); font-weight: 600; font-size: 24px; letter-spacing: -.005em; color: var(--ink); }
.logo-text span { font-size: 9.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--teal); margin-top: 2px; }

/* Hand-drawn line underline */
.scribble {
  position: relative; display: inline-block;
}
.scribble svg { position: absolute; left: -4px; right: -4px; bottom: -14px; width: calc(100% + 8px); }
