@import url("https://fonts.googleapis.com/css2?family=Oleo+Script:wght@400;700&display=swap");

:root{
  --ink:#0a0a0a;
  --paper:#f6efe7;
  --paper2:#eadfce;
  --pink:#ef5aa1;
  --orange:#f57632;
  --acid:#dfff32;
  --purple:#8d64f6;
  --blue:#7bbdf6;
  --white:#fffdf8;
  --max:1180px;
  --gutter:clamp(14px,3vw,34px);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  scroll-padding-top:90px;
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:Arial,Helvetica,sans-serif;
  overflow-x:hidden;
}

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

a{color:inherit}

.wrap{
  width:min(calc(100% - (var(--gutter) * 2)),var(--max));
  margin-inline:auto;
}

/* =========================================================
   TYPE + BUTTONS
   ========================================================= */

.eyebrow{
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.marker{
  display:inline-block;
  padding:.14em .34em;
  background:var(--pink);
  transform:rotate(-2deg);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 .9rem;
  border:2px solid currentColor;
  text-decoration:none;
  text-transform:uppercase;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.03em;
  transition:transform .16s ease,box-shadow .16s ease;
}

.btn:hover{
  transform:translate(-2px,-2px);
  box-shadow:5px 5px 0 var(--pink);
}

.btn-acid{
  background:var(--acid);
  border-color:var(--acid);
  color:var(--ink);
}

/* =========================================================
   HEADER
   About + Services always stay in the top row.
   Schedule stays fixed top-right as the page scrolls.
   ========================================================= */

.site-header{
  position:absolute;
  inset:0 0 auto;
  z-index:100;
  color:var(--white);
}

.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  gap:1rem;
  padding-right:170px;
}

.brand{
  display:inline-flex;
  align-items:baseline;
  gap:.45rem;
  flex:0 0 auto;
  color:var(--white);
  text-decoration:none;
  line-height:1;
}

.brand-name{
  font-family:"Oleo Script","Brush Script MT","Segoe Script",cursive;
  font-size:clamp(2.6rem,4vw,4.2rem);
  font-weight:700;
  letter-spacing:-.045em;
  color:var(--pink);
  white-space:nowrap;
}

.brand-credential{
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.1em;
  color:var(--acid);
  text-transform:uppercase;
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:1.35rem;
  margin-left:auto;
  padding:0;
}

.nav-links a:not(.btn){
  display:inline-flex;
  color:var(--white);
  text-decoration:none;
  text-transform:uppercase;
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.045em;
  white-space:nowrap;
}

.nav-links a:not(.btn):hover{color:var(--pink)}

.site-header .nav-links .btn-acid{
  position:fixed;
  z-index:120;
  top:18px;
  right:22px;
  min-height:46px;
  padding:0 1rem;
  box-shadow:5px 5px 0 var(--pink);
}

/* =========================================================
   LAYERED ICON SYSTEM
   ========================================================= */

.icon-stack,
.card-art{
  position:absolute;
  pointer-events:none;
}

.icon-stack .bg,
.icon-stack .fg,
.card-art .bg,
.card-art .fg{
  position:absolute;
  inset:0;
  margin:auto;
  object-fit:contain;
}

.icon-stack .bg,
.card-art .bg{
  width:100%;
  height:100%;
}

.icon-stack .fg,
.card-art .fg{
  width:63%;
  height:63%;
}

.icon-stack .fg-wide,
.card-art .fg-wide{
  width:72%;
  height:58%;
}

.icon-stack .fg-tall,
.card-art .fg-tall{
  width:55%;
  height:72%;
}

.icon-stack .bg-tall,
.card-art .bg-tall{
  width:82%;
  height:100%;
}

/* =========================================================
   HERO — DESKTOP
   Absolute composition prevents the responsive "slipping".
   ========================================================= */

.hero{
  position:relative;
  isolation:isolate;
  height:690px;
  min-height:690px;
  padding-top:78px;
  overflow:hidden;
  background:var(--ink);
  color:var(--white);
}

.hero-grid{
  position:relative;
  height:612px;
  min-height:612px;
}

.hero-copy{
  position:absolute;
  z-index:24;
  top:188px;
  left:0;
  width:52%;
  max-width:620px;
}

.hero-copy .eyebrow{
  position:relative;
  z-index:26;
  width:fit-content;
  padding:.1rem;
  background:rgba(10,10,10,.36);
}

.hero h1{
  position:relative;
  z-index:25;
  width:fit-content;
  max-width:620px;
  margin:.16rem 0 .45rem;
  padding:.06em .1em .1em;
  background:rgba(10,10,10,.58);
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px);
  font-size:clamp(3.5rem,5.8vw,6rem);
  line-height:.8;
  letter-spacing:-.06em;
  text-transform:uppercase;
  font-weight:1000;
}

.hero h1 em{
  color:var(--pink);
  font-family:Georgia,"Times New Roman",serif;
  font-weight:800;
  text-transform:none;
}

.hero-copy > p{
  position:relative;
  z-index:25;
  width:fit-content;
  max-width:445px;
  margin:0;
  padding:.27rem .4rem;
  background:rgba(10,10,10,.62);
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px);
  color:#eee8e0;
  font-size:clamp(.95rem,1.2vw,1.08rem);
  line-height:1.4;
}

.hero-actions{
  position:relative;
  z-index:25;
  display:flex;
  flex-wrap:wrap;
  gap:.68rem;
  width:fit-content;
  margin-top:.82rem;
  padding:.24rem;
  background:rgba(10,10,10,.38);
  -webkit-backdrop-filter:blur(2px);
  backdrop-filter:blur(2px);
}

.schedule-reminder{
  position:relative;
  z-index:25;
  width:fit-content;
  max-width:445px;
  margin:.48rem 0 0;
  padding:.3rem .42rem;
  background:rgba(10,10,10,.68);
  color:#f4efea;
  font-size:.76rem;
  line-height:1.26;
  font-weight:700;
}

.schedule-reminder strong{color:var(--acid)}

.hero-portrait{
  position:absolute;
  z-index:6;
  right:-12px;
  bottom:0;
  width:59%;
  height:612px;
  isolation:isolate;
  overflow:visible;
}

.hero-portrait img{
  position:absolute;
  z-index:4;
  right:-12px;
  bottom:0;
  width:auto;
  height:640px;
  max-width:none;
  max-height:650px;
  object-fit:contain;
  object-position:bottom right;
  filter:drop-shadow(12px 10px 0 rgba(239,90,161,.18));
}

/* orange / purple halo */
.hero-portrait::before{
  content:"";
  position:absolute;
  z-index:0;
  width:350px;
  height:350px;
  right:-10px;
  top:48px;
  border-radius:50%;
  background:var(--orange);
}

.hero-portrait::after{
  content:"";
  position:absolute;
  z-index:1;
  width:205px;
  height:205px;
  right:31%;
  top:26px;
  border-radius:50%;
  background:var(--purple);
}

/* no competing hero-level background shapes */
.hero::before,
.hero::after{
  display:none;
}

/* hero icons */
.hero-stack-left{
  width:82px;
  height:82px;
  left:12px;
  top:252px;
  z-index:18;
  transform:rotate(-8deg);
}

.hero-stack-right{
  width:94px;
  height:94px;
  right:12px;
  top:325px;
  z-index:18;
  transform:rotate(9deg);
}

.hero-stack-bottom{
  width:108px;
  height:108px;
  right:44%;
  bottom:30px;
  z-index:18;
  transform:rotate(7deg);
}

/* reassurance sticker: ALWAYS bottom-right */
.sticker-note{
  position:absolute;
  z-index:40;
  right:20px;
  bottom:22px;
  left:auto;
  top:auto;
  width:auto;
  max-width:165px;
  padding:.72rem .78rem;
  background:var(--pink);
  color:var(--ink);
  font-size:.8rem;
  font-weight:900;
  line-height:1.12;
  transform:rotate(-4deg);
  box-shadow:6px 6px 0 var(--acid);
}

/* =========================================================
   ABOUT
   ========================================================= */

.about,
.who,
.manifesto{
  position:relative;
  overflow:hidden;
  padding:clamp(3.2rem,4.5vw,4.6rem) 0;
}

.about-grid{
  display:grid;
  grid-template-columns:.76fr 1.14fr .62fr;
  gap:clamp(1.3rem,2.5vw,2.1rem);
  align-items:center;
}

.photo-card{
  padding:8px;
  background:white;
  transform:rotate(-2deg);
  box-shadow:8px 8px 0 var(--pink);
}

.photo-card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}

.about h2,
.section-title{
  margin:.32rem 0 .7rem;
  font-size:clamp(2rem,3.6vw,3.9rem);
  line-height:.92;
  letter-spacing:-.045em;
  text-transform:uppercase;
  font-weight:1000;
}

.about-copy p{
  margin:.55rem 0;
  font-size:.96rem;
  line-height:1.5;
}

.questioning{
  display:inline-block;
  margin-top:.3rem;
  color:var(--purple);
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.14rem;
  font-weight:800;
  transform:rotate(-2deg);
}

.truths{
  padding:1.35rem;
  background:var(--ink);
  color:var(--white);
  transform:rotate(1.5deg);
  box-shadow:7px 7px 0 var(--orange);
}

.truths h3{
  margin:0 0 .6rem;
  color:var(--pink);
  text-transform:uppercase;
}

.truths ul{
  padding:0;
  margin:0;
  list-style:none;
}

.truths li{
  position:relative;
  margin:.65rem 0;
  padding-left:1.25rem;
  font-size:.88rem;
  line-height:1.25;
}

.truths li::before{
  content:"♥";
  position:absolute;
  left:0;
  color:var(--acid);
}

.about-stack-left{
  width:142px;
  height:142px;
  left:8px;
  top:28px;
  z-index:5;
  transform:rotate(-10deg);
}

.about-stack-right{
  width:130px;
  height:170px;
  right:10px;
  bottom:8px;
  z-index:5;
  transform:rotate(9deg);
}

/* =========================================================
   SERVICES
   ========================================================= */

.who{background:var(--white)}

.who-head{
  position:relative;
  z-index:5;
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:2rem;
  margin-bottom:1.45rem;
}

.who-head p{
  max-width:410px;
  margin:0;
  font-size:.96rem;
  line-height:1.42;
}

.cards{
  position:relative;
  z-index:4;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.8rem;
}

.card{
  position:relative;
  min-height:215px;
  padding:1.05rem;
  overflow:hidden;
  border:2px solid var(--ink);
}

.card:nth-child(1){background:#ffc1dd}
.card:nth-child(2){background:#ffdcb8}
.card:nth-child(3){background:#f3ffb3}
.card:nth-child(4){background:#dcc7ff}
.card:nth-child(5){background:#d9eeff}
.card:nth-child(6){background:var(--paper2)}

.card h3{
  margin:0 0 .45rem;
  max-width:58%;
  font-size:1.08rem;
  line-height:1;
  text-transform:uppercase;
}

.card p{
  margin:0;
  max-width:58%;
  font-size:.88rem;
  line-height:1.32;
}

.card-art{
  width:116px;
  height:116px;
  right:10px;
  bottom:10px;
  z-index:2;
}

/* user requested removal of floating boneheart */
.services-float-left{
  display:none!important;
}

.services-float-right{
  width:112px;
  height:112px;
  right:-18px;
  bottom:-4px;
  z-index:1;
  transform:rotate(8deg);
}

/* =========================================================
   MANIFESTO
   ========================================================= */

.manifesto{background:var(--acid)}

.manifesto-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:2rem;
  align-items:center;
}

.manifesto h2{
  margin:.28rem 0 0;
  font-size:clamp(2.6rem,4.9vw,5.15rem);
  line-height:.82;
  letter-spacing:-.055em;
  text-transform:uppercase;
}

.manifesto h2 em{
  color:var(--pink);
  font-family:Georgia,"Times New Roman",serif;
  text-transform:none;
}

.permission-slip{
  max-width:440px;
  margin-top:1.15rem;
  padding:1rem 1.2rem;
  border:2px solid var(--ink);
  background:var(--white);
  box-shadow:7px 7px 0 var(--purple);
  font-family:Georgia,"Times New Roman",serif;
  font-size:.98rem;
  font-weight:700;
  line-height:1.45;
  transform:rotate(-1.5deg);
}

.manifesto-photo{
  border:8px solid var(--white);
  transform:rotate(1.5deg);
  box-shadow:8px 8px 0 var(--pink);
}

.manifesto-photo img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}

.manifesto-stack-left{
  width:130px;
  height:130px;
  left:12px;
  bottom:14px;
  z-index:5;
  transform:rotate(-12deg);
}

.manifesto-stack-right{
  width:128px;
  height:128px;
  right:10px;
  top:20px;
  z-index:5;
  transform:rotate(10deg);
}

/* =========================================================
   CTA + FOOTER
   ========================================================= */

.cta{
  padding:3rem 0;
  background:var(--purple);
  color:var(--white);
}

.cta-inner{
  display:grid;
  grid-template-columns:1fr auto;
  gap:1.2rem;
  align-items:center;
}

.cta h2{
  margin:.2rem 0 0;
  font-size:clamp(2.15rem,4vw,4.1rem);
  line-height:.9;
  text-transform:uppercase;
}

.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
}

.schedule-reminder-light{
  color:#f5efff;
}

footer{
  padding:18px 0;
  background:var(--ink);
  color:var(--white);
  font-size:.76rem;
}

.footer-grid{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:.7rem 1.1rem;
}

.footer-grid a{color:var(--acid)}

/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top{
  position:fixed;
  right:18px;
  bottom:20px;
  z-index:140;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:62px;
  min-height:42px;
  padding:0 .72rem;
  border:2px solid var(--ink);
  background:var(--pink);
  color:var(--ink);
  text-decoration:none;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.045em;
  text-transform:uppercase;
  box-shadow:4px 4px 0 var(--acid);
  transition:transform .16s ease,box-shadow .16s ease;
}

.back-to-top:hover{
  transform:translate(-2px,-2px);
  box-shadow:6px 6px 0 var(--acid);
}

/* =========================================================
   TABLET / SMALL DESKTOP — 641px to 975px
   One stable composition across the whole range.
   ========================================================= */

@media (min-width:641px) and (max-width:975px){

  .nav{
    min-height:74px;
    padding-right:158px;
  }

  .brand-name{
    font-size:clamp(2.15rem,4.6vw,3.15rem);
  }

  .brand-credential{font-size:.56rem}

  .nav-links{gap:1rem}

  .nav-links a:not(.btn){
    display:inline-flex;
    font-size:.76rem;
  }

  .site-header .nav-links .btn-acid{
    top:16px;
    right:18px;
    min-height:42px;
    padding:0 .86rem;
    font-size:.68rem;
  }

  .hero{
    height:690px;
    min-height:690px;
    padding-top:76px;
  }

  .hero-grid{
    height:614px;
    min-height:614px;
  }

  .hero-copy{
    top:116px;
    width:46%;
    max-width:430px;
  }

  .hero h1{
    max-width:100%;
    font-size:clamp(3rem,6.2vw,4.55rem);
    line-height:.79;
  }

  .hero-copy > p{
    max-width:315px;
    font-size:.86rem;
    line-height:1.34;
  }

  .hero-actions{
    margin-top:.62rem;
  }

  .schedule-reminder{
    max-width:300px;
    margin-top:.42rem;
    font-size:.68rem;
    line-height:1.22;
  }

  .hero-portrait{
    right:0;
    width:57%;
    height:614px;
  }

  .hero-portrait img{
    right:-22px;
    height:clamp(565px,62vw,635px);
    max-height:635px;
  }

  .hero-portrait::before{
    width:clamp(265px,31vw,320px);
    height:clamp(265px,31vw,320px);
    right:-18px;
    top:64px;
  }

  .hero-portrait::after{
    width:clamp(155px,18vw,185px);
    height:clamp(155px,18vw,185px);
    right:31%;
    top:34px;
  }

  .hero-stack-left{
    width:clamp(54px,6.5vw,70px);
    height:clamp(54px,6.5vw,70px);
    left:2px;
    top:245px;
  }

  .hero-stack-right{
    width:clamp(62px,7.5vw,78px);
    height:clamp(62px,7.5vw,78px);
    right:8px;
    top:325px;
  }

  .hero-stack-bottom{
    width:clamp(76px,8.5vw,92px);
    height:clamp(76px,8.5vw,92px);
    right:43%;
    bottom:30px;
  }

  .sticker-note{
    right:16px;
    bottom:18px;
    max-width:145px;
    font-size:.7rem;
  }

  .about-grid{
    grid-template-columns:1fr 1fr;
  }

  .truths{grid-column:1/-1}

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

  .manifesto-grid,
  .cta-inner{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   MOBILE — <=640px
   Same hero concept; compressed rather than re-stacked.
   ========================================================= */

@media (max-width:640px){

  :root{
    --gutter:14px;
  }

  .nav{
    min-height:70px;
    gap:.35rem;
    padding-right:96px;
  }

  .brand{
    gap:.28rem;
    min-width:0;
  }

  .brand-name{
    font-size:clamp(1.45rem,6.2vw,1.9rem);
  }

  .brand-credential{
    font-size:.42rem;
  }

  .nav-links{
    gap:.45rem;
  }

  .nav-links a:not(.btn){
    display:inline-flex;
    font-size:.58rem;
    letter-spacing:.025em;
  }

  .site-header .nav-links .btn-acid{
    top:14px;
    right:10px;
    min-height:38px;
    padding:0 .58rem;
    font-size:.58rem;
    box-shadow:4px 4px 0 var(--pink);
  }

  .hero{
    height:640px;
    min-height:640px;
    padding-top:72px;
  }

  .hero-grid{
    height:568px;
    min-height:568px;
  }

  .hero-copy{
    top:112px;
    width:47%;
    max-width:none;
  }

  .hero-copy .eyebrow{
    max-width:205px;
  }

  .hero h1{
    max-width:100%;
    margin:.12rem 0 .4rem;
    padding:.04em .08em .08em;
    font-size:clamp(2rem,10.7vw,3rem);
    line-height:.8;
  }

  .hero-copy > p{
    max-width:205px;
    padding:.23rem .31rem;
    font-size:.75rem;
    line-height:1.31;
  }

  .hero-actions{
    flex-direction:column;
    align-items:flex-start;
    gap:.38rem;
    margin-top:.58rem;
    padding:.2rem;
  }

  .hero-actions .btn{
    min-height:34px;
    padding:0 .55rem;
    font-size:.54rem;
  }

  .schedule-reminder{
    max-width:205px;
    margin-top:.38rem;
    padding:.25rem .31rem;
    font-size:.59rem;
    line-height:1.2;
  }

  .hero-portrait{
    right:-8px;
    width:58%;
    height:568px;
  }

  .hero-portrait img{
    right:-44px;
    height:min(510px,130vw);
    max-height:520px;
  }

  .hero-portrait::before{
    width:min(220px,56vw);
    height:min(220px,56vw);
    right:-48px;
    top:72px;
  }

  .hero-portrait::after{
    width:min(135px,34vw);
    height:min(135px,34vw);
    right:27%;
    top:46px;
  }

  .hero-stack-left{
    width:46px;
    height:46px;
    left:-4px;
    top:238px;
  }

  .hero-stack-right{
    width:50px;
    height:50px;
    right:2px;
    top:332px;
  }

  .hero-stack-bottom{
    width:62px;
    height:62px;
    right:31%;
    bottom:30px;
  }

  /* ALWAYS right */
  .sticker-note{
    display:block;
    right:10px;
    bottom:14px;
    left:auto;
    top:auto;
    max-width:118px;
    padding:.55rem .6rem;
    font-size:.6rem;
    z-index:40;
  }

  .about-grid,
  .cards,
  .manifesto-grid,
  .cta-inner{
    grid-template-columns:1fr;
  }

  .who-head{display:block}

  .truths{grid-column:auto}

  .card{
    min-height:200px;
  }

  .card h3,
  .card p{
    max-width:58%;
  }

  .card-art{
    width:104px;
    height:104px;
  }

  .about-stack-left{
    width:84px;
    height:84px;
    left:-8px;
    top:20px;
  }

  .about-stack-right,
  .services-float-right,
  .manifesto-stack-right{
    display:none;
  }

  .manifesto-stack-left{
    width:82px;
    height:82px;
    left:-6px;
    bottom:6px;
  }

  .cta-actions .btn{
    flex:1 1 auto;
  }

  .back-to-top{
    right:12px;
    bottom:14px;
    min-width:56px;
    min-height:38px;
    padding:0 .58rem;
    font-size:.61rem;
  }
}

/* =========================================================
   VERY NARROW PHONES
   ========================================================= */

@media (max-width:390px){

  .nav{
    padding-right:88px;
  }

  .brand-name{
    font-size:1.38rem;
  }

  .brand-credential{
    font-size:.38rem;
  }

  .nav-links{
    gap:.32rem;
  }

  .nav-links a:not(.btn){
    font-size:.53rem;
  }

  .site-header .nav-links .btn-acid{
    min-height:36px;
    padding:0 .5rem;
    font-size:.54rem;
  }

  .hero{
    height:620px;
    min-height:620px;
  }

  .hero-grid{
    height:548px;
    min-height:548px;
  }

  .hero-copy{
    top:105px;
    width:49%;
  }

  .hero h1{
    font-size:clamp(1.9rem,10.5vw,2.55rem);
  }

  .hero-copy > p,
  .schedule-reminder{
    max-width:180px;
  }

  .hero-portrait{
    width:57%;
    height:548px;
  }

  .hero-portrait img{
    right:-52px;
    height:min(480px,132vw);
  }

  .hero-portrait::before{
    width:min(198px,55vw);
    height:min(198px,55vw);
    right:-52px;
    top:78px;
  }

  .hero-portrait::after{
    width:min(118px,33vw);
    height:min(118px,33vw);
    right:24%;
    top:54px;
  }

  .hero-stack-left{
    width:42px;
    height:42px;
    top:228px;
  }

  .hero-stack-right{
    width:44px;
    height:44px;
    top:320px;
  }

  .hero-stack-bottom{
    width:56px;
    height:56px;
    right:28%;
    bottom:28px;
  }

  .sticker-note{
    right:8px;
    bottom:12px;
    max-width:108px;
    font-size:.56rem;
  }
}
