
.sitebar {
  background:white;
  width: fit-content;
}

.fs-layout-aside {
  grid-template-columns: minmax(0, 1fr) minmax(100px, 220px);
  gap: 0px;
}

.fs-layout-aside__aside {
  align-self: start;
  position: sticky;
  top: 110px;
  margin-left: 20px;
  width: 300px;
}


.fs-layout-aside__main > section:first-of-type { 
    padding-top:0px !important;
}

.fs-layout-aside__main > section:nth-of-type(odd){
  background:#eadfca;
}

.fs-layout-aside__main > section:nth-of-type(even){
  background:#dfd0bd;
}

/* =========================================================
   TEAM SECTION
========================================================= */

.therapist-section{}

.therapist-header{
  max-width:1260px;
  margin:0 auto 3rem;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:2.5rem;
  align-items:center
}

.therapist-avatar-wrap{position:relative;flex-shrink:0}

.therapist-avatar{
  width:220px;
  height:220px;
  border-radius:50%;
  object-fit:cover;
  object-position:top center;
  border:3px solid #fff;
  box-shadow:0 4px 20px rgba(40,32,26,.12);
  display:block
}

.therapist-badge{
  position:absolute;
  bottom:-4px;
  right:-4px;
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--red);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.85rem;
  border:2px solid #fff
}

.therapist-info{}

.therapist-name{
  font-family:var(--serif);
  font-size:30px;
  font-weight:300;
  color:var(--main-red-color);
  line-height:1.1;
  margin-bottom:.3rem
}

.therapist-title{
  font-size:.72rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:.8rem
}


.therapist-bio{
  font-size:16pxm;
  color:var(--muted);
  line-height:1.85;
  max-width:680px
}

.therapist-contact{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:1rem
}

.therapist-contact a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:.75rem;
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red);
  border:1px solid rgba(109,26,52,.2);
  padding:.4rem .9rem;
  border-radius:2px;
  transition:all .15s
}

.therapist-contact a:hover{
  background:var(--main-blue-color);
  color:#fff;
  border-color:var(--main-blue-color)
}

.therapist-notice {
	padding: 10px;
  border: 1px solid red;
  margin-top: 30px;
  background: white;
  border-radius: 10px;
  font-size: 14px;
}

.method-tag {
	display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: var(--main-red-color);
  padding: .5rem .9rem;
  background: var(--cream);
  border: 1px solid var(--bdr);
  border-radius: 2px;
	margin: 0.2rem;
  margin-top: 10px;
}


/* =========================================================
   TREATMENTS GRID
========================================================= */

.treatments-grid {
  max-width:1260px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px
}

.treatments-grid.treatments-grid--single {
    grid-template-columns: 1fr;
}

.treatment-card{
  background:#fff;
  border:1px solid var(--bdr);
  border-radius:2px;
  overflow:hidden;
  transition:transform .25s,box-shadow .25s;
  display:flex;
  flex-direction:column
}

.treatment-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 28px rgba(109,26,52,.09)
}

.treatment-card-header{
  padding:1.2rem 1.4rem;
  border-bottom:1px solid var(--bdr)
}

.treatment-cat{
  font-size:.58rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--red);
  display:flex;
  align-items:center;
  gap:6px;
  margin-bottom:.5rem
}

.treatment-cat::before{content:"";width:10px;height:1px;background:var(--red)}

.treatment-title{
  font-family:var(--serif);
  font-size:28px;
  font-weight:400;
  color:var(--main-red-color);
  line-height:1.3
}


.treatment-card-body{
  padding:1.2rem 1.4rem;
  padding-top: 0px;
  flex:1;
  display:flex;
  flex-direction:column;
}



.treatment-desc{
  color:var(--muted);
  line-height:1.8;
  flex:1;
  font-size: 15px;
}

.treatment-prices{
  margin-top:1.1rem;
  padding-top:.9rem;
  border-top:1px solid var(--bdr);
  display:flex;
  flex-direction:column;
  gap:6px
}


.price-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:.5rem;
  margin-top:15px;
}


.price-duration{
  font-size:14px;
  color:var(--muted);
  flex-shrink:0
}


.price-amount{
  font-family:var(--serif);
  font-size:30px;
  font-weight:400;
  color:black;
  line-height:1 !important;
  white-space:nowrap
}

.price-note{
  font-size:.65rem;
  color:var(--muted);
  margin-top:2px
}


/* =========================================================
   ADDONS
========================================================= */

.addon-list{
  max-width:1260px;
  margin:2rem auto 0;
  background:#fff;
  border:1px solid var(--bdr);
  border-radius:2px;
  padding:1.4rem 1.6rem
}

.addon-title{
  font-size:.6rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:1rem
}

.addon-items{
  display:flex;
  flex-wrap:wrap;
  gap:8px
}

.addon-chip{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:.8rem;
  color:var(--main-red-color);
  padding:.5rem .9rem;
  background:var(--cream);
  border:1px solid var(--bdr);
  border-radius:2px
}

.addon-chip-icon{
  font-size:.85rem;
  flex-shrink:0
}

.addon-disclaimer{
  font-size:.72rem;
  color:var(--muted);
  margin-top:.9rem;
  padding-top:.8rem;
  border-top:1px solid var(--bdr);
  font-style:italic
}


/* =========================================================
   ???
========================================================= */


.sb-header{
  padding:1.2rem 1.4rem .8rem;
  border-bottom:1px solid var(--bdr);
  position:sticky;
  top:0;
  background:#fff;
  z-index:2
}

.sb-header-title{
  font-size:.58rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--muted);
  display:flex;
  align-items:center;
  gap:7px
}

.sb-header-title::before{content:"";width:12px;height:1px;background:var(--red)}

.sb-therapist{border-bottom:1px solid var(--bdr)}
.sb-therapist:last-child{border-bottom:none}

.sb-therapist-header{
  display:flex;
  align-items:center;
  gap:10px;
  padding:.45rem 1.2rem;
  cursor:pointer;
  transition:background .15s;
  text-decoration:none
}


.sb-av{
  width:36px;
  height:36px;
  border-radius:50%;
  object-fit:cover;
  object-position:top center;
  border:2px solid var(--bdr);
  flex-shrink:0;
  transition:border-color .15s
}


.sb-therapist-name{
  font-family:var(--serif);
  font-size:.92rem;
  font-weight:400;
  color:var(--main-red-color);
  line-height:1.2;
  display:block
}

.sb-therapist-role{
  font-size:.64rem;
  color:var(--muted);
  letter-spacing:.04em
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1024px){
  .fs-layout-aside{grid-template-columns:1fr}
  .sitebar{display:none}
}

@media(max-width:900px){
  .treatments-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:700px){
  .therapist-header{grid-template-columns:1fr;gap:1.5rem}
}

@media(max-width:580px){
  .treatments-grid{grid-template-columns:1fr}
}


/* =========================================================
   MOBILE NAV
========================================================= */

@media(max-width:1024px){
  .nav-links,.nav-cta{display:none}
  .nav-hbg{display:flex}
  .nav-inner{padding:0 20px}
  .nav-logo{margin-right:0}

  #mob-p{display:none;background:#fff;border-top:1px solid var(--bdr);box-shadow:0 8px 24px rgba(0,0,0,.1)}
  #mob-p.open{display:block}

  .mob-it{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:13px 20px;
    font-size:14px;
    color:var(--main-red-color);
    border-bottom:1px solid var(--bdr);
    cursor:pointer;
    background:none;
    border-left:none;
    border-right:none;
    border-top:none;
    width:100%;
    text-align:left;
    font-family:var(--sans);
    transition:background .12s
  }

  .mob-it:hover{background:var(--cream)}

  .mob-sub{display:none;background:var(--cream);border-bottom:1px solid var(--bdr)}
  .mob-sub.open{display:block}

  .mob-sub a{
    display:block;
    padding:9px 20px 9px 36px;
    font-size:13px;
    color:var(--muted)
  }

  .mob-cta{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    padding:14px 20px;
    background:var(--cream)
  }

  .mob-cta a{
    justify-content:center;
    text-align:center;
    padding:10px;
    font-size:12px;
    font-weight:500;
    border-radius:2px
  }

  .mob-cb{background:var(--red);color:#fff}
  .mob-cg{color:var(--red);border:1px solid rgba(109,26,52,.3)}

  .mob-arr{
    width:8px;
    height:8px;
    border-right:1.5px solid var(--muted);
    border-bottom:1.5px solid var(--muted);
    transform:rotate(45deg);
    flex-shrink:0
  }

  .mob-it.open .mob-arr{
    transform:rotate(225deg);
    border-color:var(--acc)
  }
}

@media(max-width:768px){
  .banner{height:100vh;background-attachment:scroll}
  .banner-logo{top:16px;right:20px}
  .banner-logo img{height:50px}
}