:root {
  --black: #04070d;
  --black2: #070b13;
  --cream: #f3eee4;
  --white: #fbf7ef;
  --ink: #101010;
  --muted: #cbd0d7;
  --yellow: #f9b800;
  --teal: #17c7c5;
  --pink: #ff4eb5;
  --purple: #7750c9;
  --line: rgba(255, 255, 255, .18);
  --max: 1440px;
}

/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.page-shell {
  width: min(calc(100% - 72px), var(--max));
  margin: 0 auto;
}

/* Header / navigation */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: transparent;
  pointer-events: none;
}

.site-header .page-shell,
.site-header a {
  pointer-events: auto;
}

.site-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: auto;
  height: 72px;
  display: block;
  object-fit: contain;
  overflow: visible;
}

/* Kept for older inline-SVG logo support */
.brand-mark path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 5;
}

.brand-mark path:nth-child(1),
.brand-mark path:nth-child(5) {
  stroke: var(--pink);
}

.brand-mark path:nth-child(2),
.brand-mark path:nth-child(7) {
  stroke: var(--yellow);
}

.brand-mark path:nth-child(3),
.brand-mark path:nth-child(8) {
  stroke: var(--teal);
}

.brand-mark path:nth-child(4),
.brand-mark path:nth-child(6) {
  stroke: var(--purple);
}

.brand-text {
  font-family: Arial Black, Archivo Black, sans-serif;
  line-height: .86;
  letter-spacing: -.03em;
}

.brand-text strong {
  display: block;
  font-size: 32px;
}

.brand-text em {
  display: block;
  font-size: 18px;
  font-style: normal;
}

.brand-text small {
  display: block;
  margin-top: 6px;
  font: 700 8px Inter, sans-serif;
  letter-spacing: .08em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font: 800 18px Barlow Condensed, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--yellow);
}

/* Hero */
.site-hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding-top: 170px;
  background:
    radial-gradient(circle at 62% 18%, rgba(19, 68, 92, .34), transparent 29%),
    radial-gradient(circle at 20% 22%, rgba(27, 32, 58, .35), transparent 36%),
    #03060c;
}

.site-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(#fff 1px, transparent 1px),
    radial-gradient(var(--teal) 1px, transparent 1px),
    radial-gradient(var(--yellow) 1px, transparent 1px);
  background-size: 150px 150px, 210px 210px, 180px 180px;
  background-position: 0 0, 40px 80px, 100px 35px;
  opacity: .22;
  pointer-events: none;
}

.stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 40% 60%;
  column-gap: 48px;
  align-items: end;
  min-height: 640px;
}

/* Hero copy */
.hero-copy {
  position: relative;
  z-index: 6;
    max-width: 620px;
  padding-bottom: 92px;
}

.script-alert {
  position: relative;
  display: inline-block;
  margin: 0 0 34px;
  color: var(--pink);
  font: 700 45px/.92 Caveat, cursive;
  text-transform: uppercase;
  text-shadow: 0 0 1px var(--pink);
  transform: rotate(-3deg);
}

.script-alert::after {
  content: "";
  position: absolute;
  left: 5px;
  right: -8px;
  bottom: -10px;
  height: 8px;
  border-top: 3px solid var(--pink);
  border-radius: 50%;
  transform: rotate(-1deg);
}

h1 {
  margin: 0;
  font: 800 clamp(70px, 7vw, 112px)/.95 Barlow Condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.035em;
}

.hero-copy h1 span {
  color: var(--yellow);
}

.brush-line {
  display: block;
}

.brush-line path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 9;
  stroke-linecap: round;
  opacity: .94;
}

.hero-brush {
  width: 360px;
  max-width: 72%;
  height: 42px;
  margin: 18px 0 24px 10px;
}

.hero-intro {
  max-width: 450px;
  margin: 0;
  color: #fff;
  font-size: 23px;
  line-height: 1.36;
  font-weight: 600;
}

.note-card {
  display: flex;
  align-items: center;
  gap: 18px;
    width: min(430px, 100%);
  margin-top: 28px;
  padding: 20px 26px;
  border: 1.5px solid rgba(255, 255, 255, .72);
  border-radius: 12px;
  background: rgba(3, 6, 12, .28);
}

.note-card svg,
.note-card img {
  width: 42px;
  min-width: 42px;
  height: 42px;
  object-fit: contain;
}

.note-card path {
  fill: none;
  stroke: var(--pink);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.note-card p {
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

.note-card a {
  color: var(--pink);
  text-underline-offset: 5px;
}

/* Hero artwork */
.hero-art {
  position: relative;
  align-self: end;
  height: 640px;
  overflow: visible;
  background: transparent;
}

/*
  Removed the dark overlay rectangle.
  This only works properly if the therapist image is a transparent PNG/WebP.
*/
.hero-art::before,
.hero-art::after {
  display: none;
}

/* Therapist artwork group */

.therapist-group {
  position: absolute;
  right: -35px;
  width: 124%;
  bottom: -6px;
  max-width: none;
  z-index: 1;
}

.therapists {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

/* Optional: use only while positioning assets */

.placeholder-note {
  position: absolute;
  right: 230px;
  bottom: 245px;
  z-index: 3;
  color: rgba(255, 255, 255, .55);
  font: 700 24px Caveat, cursive;
  text-align: center;
  pointer-events: none;
}

/* Hero speech bubble */

.speech-bubble {
  position: absolute;
  top: 4%;
  right: 10%;
  width: 220px;
  z-index: 8;
}

.speech-bubble-art {
  display: block;
  width: 100%;
  height: auto;
}

.speech-bubble p {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 22px;

  text-align: center;
  color: #fff9e6;

  font: 700 25px/1.05 Caveat, cursive;
}

/* Hero label */

.hero-label {
  position: absolute;
  right: 5%;
  bottom: 12%;
  z-index: 7;

  width: 385px;
  padding: 18px 24px 22px;

  background: var(--teal);
  color: #fff;

  text-align: center;
  transform: rotate(3deg);

  clip-path: polygon(
    2% 12%, 10% 4%, 24% 8%, 44% 0,
    67% 8%, 92% 5%, 99% 16%, 96% 34%,
    100% 50%, 96% 70%, 99% 87%, 84% 92%,
    64% 89%, 43% 98%, 24% 89%, 5% 94%,
    8% 73%, 0 55%, 6% 39%
  );
}

.hero-label h2 {
  margin: 0 0 8px;
  font: 700 42px/1 Caveat, cursive;
}

.hero-label p {
  margin: 0;
  font: 700 24px/1.25 Caveat, cursive;
}

/* Services */
.services {
  background: var(--cream);
  color: var(--ink);
  padding: 40px 0 30px;
}

.section-script {
  position: relative;
  margin: 0;
  color: #118d91;
  text-align: center;
  font: 700 44px/1 Caveat, cursive;
  text-transform: uppercase;
}

.section-script::after {
  content: "";
  display: block;
  width: 160px;
  height: 7px;
  margin: 2px auto 0;
  border-top: 3px solid var(--teal);
  border-radius: 50%;
}

.services h2 {
  margin: 8px 0 44px;
  text-align: center;
  text-transform: uppercase;
  font: 800 43px/1 Barlow Condensed, sans-serif;
  letter-spacing: -.02em;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.service-card {
  position: relative;
  min-height: 265px;
  padding: 8px 22px 4px;
  border-right: 1px solid rgba(0, 0, 0, .16);
  text-align: center;
}

.service-card:last-child {
  border-right: 0;
}

.service-card svg,
.service-card img,
.service-icon {
  width: 88px;
  height: 72px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.service-card svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card::after {
  content: "";
  position: absolute;
  right: 30%;
  bottom: 0;
  left: 30%;
  height: 7px;
  border-top: 4px solid currentColor;
  border-radius: 50%;
}

.service-card h3 {
  margin: 0 0 18px;
  color: #090909;
  font: 800 27px/.92 Barlow Condensed, sans-serif;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: #090909;
  font-size: 15.5px;
  line-height: 1.55;
  font-weight: 600;
}

.purple {
  color: var(--purple);
}

.yellow {
  color: var(--yellow);
}

.teal {
  color: #109da0;
}

.pink {
  color: var(--pink);
}

.soon-line {
  margin: 34px 0 0;
  text-align: center;
  font: 700 20px/1.18 Inter, sans-serif;
}

.soon-line span {
  margin-right: 40px;
  vertical-align: middle;
  font-family: Caveat, cursive;
  font-size: 54px;
}

.soon-line img,
.soon-arrow {
  display: inline-block;
  width: 54px;
  height: 54px;
  margin-right: 40px;
  object-fit: contain;
  vertical-align: middle;
}

.soon-line a {
  color: #009ea1;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

/* Contact */
.contact-band {
  background: #05080f;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.contact-shell {
  display: grid;
  grid-template-columns: 250px 1fr 140px;
  gap: 56px;
  align-items: center;
}

.belong-bubble {
  position: relative;
  width: 205px;
  transform: rotate(-8deg);
}

.belong-bubble-art {
  display: block;
  width: 100%;
  height: auto;
}

.belong-bubble p {
  position: absolute;
  inset: 0;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--teal);
  text-align: center;
  font: 700 35px/.9 Caveat, cursive;
  text-transform: uppercase;
}

.belong-bubble span {
  position: absolute;
  right: 22px;
  bottom: -18px;
  color: var(--pink);
  font-size: 44px;
}

.contact-copy {
  padding-left: 70px;
  border-left: 1px solid rgba(255, 255, 255, .25);
}

.contact-copy h2 {
  margin: 0 0 16px;
  font: 800 45px/1 Barlow Condensed, sans-serif;
  text-transform: uppercase;
}

.contact-copy p {
  margin: 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.45;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1.5px solid #d8caa8;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.button-link.yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #090909;
}

.pink-star {
  width: 80px;
  height: 96px;
  object-fit: contain;
  fill: none;
  stroke: var(--pink);
  stroke-width: 4;
}

/* Proof strip */
.proof-strip {
  background: #09101a;
  padding: 46px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.proof-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  min-height: 170px;

  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,.15);
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-grid img,
.proof-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
  margin-bottom: 18px;
}

.proof-grid h3 {
  margin: 0 0 12px;
  text-transform: uppercase;
  font: 800 18px/1.05 Barlow Condensed, sans-serif;
  color: #fff;
}

.proof-grid p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: #04070d;
  padding: 46px 0 24px;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr) 130px;
  gap: 34px;
  align-items: start;
}

.footer-shell nav,
.footer-brand {
  min-height: 132px;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.footer-shell h2 {
  margin: 0 0 14px;
  font: 800 18px/1 Barlow Condensed, sans-serif;
  text-transform: uppercase;
}

.footer-shell nav a {
  display: block;
  margin: 0 0 8px;
  color: #e7e7e7;
  text-decoration: none;
  font-size: 14px;
}

.footer-shell nav a:hover {
  color: var(--teal);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.socials a {
  text-decoration: none;
  text-transform: uppercase;
  font: 800 14px Barlow Condensed, sans-serif;
}

.footer-stamp {
  position: relative;
  align-self: center;
  justify-self: center;
  width: 118px;
  transform: rotate(-10deg);
}

.footer-stamp-art {
  display: block;
  width: 100%;
  height: auto;
}

.footer-stamp p {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #05070d;
  text-align: center;
  font: 700 22px/.9 Caveat, cursive;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 58px;
  margin-top: 34px;
  color: #aaa;
  font-size: 13px;
}

.legal a {
  color: #c4c4c4;
  text-decoration: none;
}
/* Responsive: tablet */
@media (max-width: 1180px) {
  .site-header {
    position: relative;
  }

  .site-hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 48px;
  }

  .hero-art {
    height: 700px;
  }

  .therapist-group {
    right: auto;
    left: 50%;
    width: min(1080px, 118%);
    transform: translateX(-50%);
  }

  .service-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 0;
  }

  .service-card:nth-child(3n) {
    border-right: 0;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .proof-grid article {
    border-right: 0;
  }

  .footer-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-shell nav,
  .footer-brand {
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
}

/* Responsive: mobile */
@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 34px), var(--max));
  }

  .site-nav {
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 0;
  }

  .hero-layout {
    gap: 28px;
  }

  .hero-copy {
    max-width: none;
    padding: 20px 0 0;
  }

  .script-alert {
    font-size: 34px;
  }

  h1 {
    font-size: 58px;
  }

  .hero-brush {
    width: 260px;
    max-width: 82%;
  }

  .hero-intro {
    font-size: 18px;
  }

  .note-card {
    padding: 16px;
  }

  .note-card p {
    font-size: 16px;
  }

  .hero-art {
    height: auto;
    padding-bottom: 24px;
  }

  .therapist-group {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    transform: none;
  }

  .speech-bubble {
    position: absolute;
    top: -18px;
    right: -4px;
    width: 130px;
    margin: 0;
  }

  .speech-bubble p {
    padding: 16px;
    font-size: 16px;
    line-height: 1;
  }

  .hero-label {
    position: absolute;
    right: 4%;
    bottom: 8%;
    width: 68%;
    max-width: 280px;
    margin: 0;
  }

  .hero-label h2 {
    font-size: 28px;
  }

  .hero-label p {
    font-size: 15px;
  }

  .services h2 {
    font-size: 34px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.15);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .soon-line span,
  .soon-line img,
  .soon-arrow {
    display: block;
    margin: 0 auto 8px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .belong-bubble {
    margin: 0 auto;
  }

  .contact-copy {
    padding-left: 0;
    border-left: 0;
  }

  .contact-actions {
    justify-content: center;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .proof-grid article {
    min-height: auto;
    padding-bottom: 20px;
    border-right: 0;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-shell nav,
  .footer-brand {
    border-right: 0;
  }

  .footer-stamp {
    width: 118px;
    margin: 0 auto;
  }

  .legal {
    display: grid;
    gap: 18px;
  }

  .pink-star {
    display: none;
  }
}
@media (max-width: 760px) {
  .site-hero {
    padding-bottom: 28px;
  }

  .hero-copy {
    padding-top: 28px;
  }

  h1 {
    font-size: 52px;
    line-height: .92;
  }

  .hero-intro {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.35;
  }

  .note-card {
    max-width: 320px;
    margin-top: 20px;
  }

  .therapist-group {
    max-width: 360px;
    margin-top: 16px;
  }

  .speech-bubble {
    width: 108px;
    top: -12px;
    right: 4px;
  }

  .speech-bubble p {
    font-size: 13px;
    padding: 12px;
  }

  .hero-label {
    width: 70%;
    bottom: 10%;
  }

  .hero-label h2 {
    font-size: 24px;
  }

  .hero-label p {
    font-size: 12px;
  }

  .services {
    padding: 34px 0 42px;
  }

  .service-card {
    min-height: auto;
    padding: 30px 20px 34px;
  }

  .contact-band {
    padding: 58px 0;
  }

  .contact-copy h2 {
    font-size: 42px;
  }

  .contact-copy p {
    max-width: 300px;
    margin: 0 auto;
  }

  .contact-actions {
    gap: 12px;
  }

  .button-link {
    min-width: 140px;
    padding: 0 14px;
    font-size: 13px;
  }

  .proof-strip {
    padding: 44px 0;
  }

  .proof-grid article {
    align-items: center;
    text-align: center;
  }

  .proof-grid img,
  .proof-icon {
    margin-bottom: 10px;
  }

  .site-footer {
    padding-top: 42px;
  }
}

@media (max-width: 760px) {
  .site-hero {
    padding-bottom: 0;
  }

  .hero-layout {
    display: block;
  }

  .hero-copy {
    padding: 24px 0 18px;
  }

  .script-alert {
    margin-bottom: 22px;
    font-size: 31px;
  }

  h1 {
    max-width: 320px;
    font-size: 47px;
    line-height: .92;
  }

  .hero-brush {
    width: 160px;
    height: 24px;
    margin: 10px 0 14px 86px;
  }

  .hero-intro {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.35;
  }

  .note-card {
    display: none;
  }

  .hero-art {
    margin-top: 8px;
    padding-bottom: 0;
  }

  .therapist-group {
    max-width: 330px;
    margin: 0 auto;
  }

  .speech-bubble {
    width: 92px;
    top: -6px;
    right: 10px;
  }

  .speech-bubble p {
    padding: 10px;
    font-size: 11px;
  }

  .hero-label {
    width: 68%;
    right: 7%;
    bottom: 12%;
    padding: 8px 12px 10px;
  }

  .hero-label h2 {
    margin-bottom: 3px;
    font-size: 20px;
  }

  .hero-label p {
    font-size: 10px;
    line-height: 1.15;
  }
}
@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero-copy {
    padding: 26px 0 16px;
  }

  h1 {
    max-width: none;
    font-size: clamp(52px, 16vw, 66px);
    line-height: .9;
  }

  .hero-intro {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.38;
  }

  .hero-brush {
    width: 190px;
    margin: 12px 0 16px 86px;
  }

  .therapist-group {
    max-width: 355px;
    margin-top: 6px;
  }

  .speech-bubble {
    width: 118px;
    top: -10px;
    right: 2px;
  }

  .speech-bubble p {
    padding: 13px;
    font-size: 14px;
    line-height: .95;
  }

  .hero-label {
    width: 70%;
    right: 6%;
    bottom: 11%;
  }

  .hero-label h2 {
    font-size: 23px;
  }

  .hero-label p {
    font-size: 11.5px;
  }
}
@media (max-width: 760px) {
  main {
    text-align: center;
  }

  .hero-copy,
  .hero-intro,
  .note-card,
  .contact-copy,
  .proof-grid article {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-brush {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-actions {
    justify-content: center;
  }

  .site-footer {
    text-align: left;
  }
}
@media (max-width: 760px) {
  .service-card {
    border-bottom: 0;
  }
}