/* Nerva front-only visual layer — matched to the supplied Five City Spa reference screenshot.
   Backend-safe: CSS + small public navigation behavior only. */
:root{
  --fc-slate:#5e6675;
  --fc-slate-dark:#2f3747;
  --fc-coral:#c31d18;
  --fc-coral-hover:#a71714;
  --fc-text:#4d5968;
  --fc-muted:#69717b;
  --fc-soft:#f3f3f3;
  --fc-panel:#e8e8e8;
  --fc-border:#dddddd;
  --fc-white:#ffffff;
  --fc-star:#d4af37;
  --fc-max:1880px;
}
*{box-sizing:border-box}
html{background:#fff;scroll-behavior:smooth;}
body{
  margin:0!important;
  background:#fff!important;
  color:var(--fc-text)!important;
  font-family:Georgia,'Times New Roman',serif!important;
  font-size:18px!important;
  line-height:1.55!important;
  letter-spacing:0!important;
  overflow-x:hidden!important;
}
a{color:inherit;transition:color .2s ease,background .2s ease,border-color .2s ease,opacity .2s ease;text-decoration:none;}
img{max-width:100%;display:block;}

/* Header like the reference: white desktop bar, large square logo, coral booking button */
.site-nav, nav{
  position:sticky!important;
  top:0!important;
  z-index:1000!important;
  height:88px!important;
  min-height:88px!important;
  padding:0 32px 0 286px!important;
  display:flex!important;
  align-items:flex-end!important;
  justify-content:space-between!important;
  gap:24px!important;
  background:#fff!important;
  border-top:4px solid var(--fc-slate-dark)!important;
  border-bottom:1px solid #d8d8d8!important;
  box-shadow:none!important;
}
.site-nav::after, nav::after{
  content:'';
  position:absolute;
  left:0;right:0;bottom:-1px;height:1px;
  background:#cfcfcf;
  pointer-events:none;
}
.logo{
  position:absolute!important;
  left:18px!important;
  top:20px!important;
  z-index:4!important;
  width:228px!important;
  height:228px!important;
  min-width:228px!important;
  display:block!important;
  background:#fff!important;
  text-decoration:none!important;
  box-shadow:none!important;
}
.logo-img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
}
.logo-fallback{display:none!important;}
.logo-name,.logo-sub{color:var(--fc-slate)!important;}
.nav-menu{
  flex:1 1 auto!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:34px!important;
  padding:0 0 17px 0!important;
  margin:0!important;
  overflow:visible!important;
}
.nav-menu a{
  padding:0!important;
  color:#606060!important;
  font-family:Georgia,'Times New Roman',serif!important;
  font-size:18px!important;
  font-weight:400!important;
  line-height:1!important;
  text-transform:uppercase!important;
  letter-spacing:0!important;
  white-space:nowrap!important;
  position:relative!important;
}
.nav-menu a::after{
  content:'';
  position:absolute;
  left:0;right:0;bottom:-9px;height:1px;
  background:var(--fc-coral);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .2s ease;
}
.nav-menu a:hover,
.nav-menu a.active{color:var(--fc-slate-dark)!important;}
.nav-menu a:hover::after,
.nav-menu a.active::after{transform:scaleX(1);}
.nav-right{
  display:flex!important;
  align-items:center!important;
  gap:14px!important;
  align-self:flex-start!important;
  padding-top:16px!important;
  margin:0!important;
  flex:0 0 auto!important;
}
.btn-reserve,
.btn-solid,
.btn-outline,
.card-btn,
.btn-book,
.footer-cta,
.submit-booking,
.choose-treatment{
  border-radius:0!important;
  font-family:Georgia,'Times New Roman',serif!important;
  font-weight:700!important;
  text-transform:uppercase!important;
  letter-spacing:0!important;
  box-shadow:none!important;
  text-align:center!important;
  text-decoration:none!important;
}
.btn-reserve,
.btn-solid,
.card-btn,
.btn-book,
.submit-booking,
.choose-treatment{
  background:var(--fc-coral)!important;
  border:1px solid var(--fc-coral)!important;
  color:#fff!important;
}
.btn-reserve{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:42px!important;
  padding:0 20px!important;
  font-size:18px!important;
  line-height:1!important;
}
.btn-reserve:hover,
.btn-solid:hover,
.card-btn:hover,
.btn-book:hover,
.submit-booking:hover,
.choose-treatment:hover{
  background:var(--fc-coral-hover)!important;
  border-color:var(--fc-coral-hover)!important;
  transform:none!important;
}
.btn-outline{
  background:#fff!important;
  border:1px solid var(--fc-coral)!important;
  color:var(--fc-coral)!important;
}
.btn-outline:hover{background:var(--fc-coral)!important;color:#fff!important;}
.mobile-menu-toggle{display:none;}
.mobile-menu-toggle:hover{background:var(--fc-coral-hover)!important;border-color:var(--fc-coral-hover)!important;}

/* Review bar placed under the header, matching the right-aligned stars area */
.stars-bar{
  position:sticky!important;
  top:88px!important;
  z-index:999!important;
  height:38px!important;
  padding:0 34px 0 250px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:8px!important;
  background:#fff!important;
  color:var(--fc-text)!important;
  border:0!important;
  border-bottom:1px solid #d7d7d7!important;
  font-family:Georgia,'Times New Roman',serif!important;
  font-size:18px!important;
  letter-spacing:0!important;
}
.stars-bar .stars{color:var(--fc-star)!important;letter-spacing:2px!important;font-size:22px!important;line-height:1!important;}

/* Home hero: clean full-width image with no text overlay, like the screenshot */
.page-home .hero,
.home-hero{
  height:clamp(380px,43vw,570px)!important;
  min-height:380px!important;
  max-height:570px!important;
  background:#ddd!important;
  overflow:hidden!important;
  position:relative!important;
}
.page-home .hero-img,
.page-home .hero img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  opacity:1!important;
  filter:none!important;
  transform:none!important;
  animation:none!important;
}
.page-home .hero-overlay,
.page-home .hero-content{display:none!important;}

/* Main content under hero: white two-column area with a grey contact panel */
.section,
.gift-section{
  max-width:none!important;
  width:100%!important;
  margin:0!important;
  padding:50px 20px!important;
  background:#fff!important;
  border:0!important;
  border-bottom:1px solid #ededed!important;
  box-shadow:none!important;
}
.section > *, .gift-section > *{
  max-width:var(--fc-max);
  margin-left:auto;
  margin-right:auto;
}
.intro-card,
.hero + .section:first-of-type{
  max-width:none!important;
  margin:0!important;
  padding:48px 20px 44px!important;
  display:grid!important;
  grid-template-columns:minmax(0,1.45fr) minmax(360px,.75fr)!important;
  gap:64px!important;
  align-items:start!important;
  background:#fff!important;
  border:0!important;
  box-shadow:none!important;
}
.intro-card > *{max-width:none!important;}
.home-intro-main{min-width:0;}
.home-contact-panel{
  background:var(--fc-panel)!important;
  color:var(--fc-text)!important;
  padding:28px 28px 26px!important;
  min-height:150px!important;
  font-family:Georgia,'Times New Roman',serif!important;
  font-size:18px!important;
  line-height:1.55!important;
  display:flex!important;
  flex-direction:column!important;
  gap:4px!important;
  border:0!important;
}
.home-contact-panel strong{
  display:block!important;
  margin-bottom:2px!important;
  color:var(--fc-text)!important;
  font-size:18px!important;
  font-weight:400!important;
}
.home-contact-panel a{color:var(--fc-coral)!important;text-decoration:none!important;}
.home-contact-panel a:hover{text-decoration:underline!important;}
.section-title,
.page-header h1,
.booking-hero h1,
.booking-panel h3,
.footer-col h3{
  font-family:Georgia,'Times New Roman',serif!important;
  color:var(--fc-text)!important;
  font-weight:400!important;
  letter-spacing:0!important;
  text-transform:none!important;
}
.section-title{
  max-width:none!important;
  margin:0 0 8px!important;
  font-size:30px!important;
  line-height:1.25!important;
}
.section-title em{font-style:normal!important;color:inherit!important;}
.section-body{
  max-width:none!important;
  color:var(--fc-text)!important;
  font-family:Georgia,'Times New Roman',serif!important;
  font-size:18px!important;
  line-height:1.55!important;
}
.section-body p{margin:0!important;}
.section-body p + p{margin-top:14px!important;}
.section-kicker,
.eyebrow{
  display:block!important;
  margin:0 0 10px!important;
  color:var(--fc-slate)!important;
  font-family:Georgia,'Times New Roman',serif!important;
  font-size:18px!important;
  font-weight:400!important;
  letter-spacing:0!important;
  text-transform:none!important;
}
.btn-row{display:flex!important;flex-wrap:wrap!important;gap:12px!important;margin-top:22px!important;}
.btn-row a,
.btn-solid,
.btn-outline{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:42px!important;
  padding:0 18px!important;
  font-size:16px!important;
  line-height:1!important;
}

/* No image cards. Clean grey/white list cards inspired by the reference booking look. */
.services-section{background:#fff!important;}
.service-showcase{
  max-width:var(--fc-max)!important;
  margin:24px auto 0!important;
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:18px!important;
}
.service-card,
.location-card,
.massage-card,
.reserve-card{
  position:relative!important;
  display:block!important;
  grid-template-columns:none!important;
  background:#f5f6f7!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  overflow:hidden!important;
  transform:none!important;
  transition:background .2s ease!important;
  min-height:0!important;
}
.service-card:hover,
.location-card:hover,
.massage-card:hover,
.reserve-card:hover{background:#eef0f2!important;transform:none!important;box-shadow:none!important;}
.service-card::before,
.massage-card::before,
.reserve-card::before,
.location-card::before{
  content:''!important;
  position:absolute!important;
  left:22px!important;
  top:31px!important;
  width:25px!important;
  height:25px!important;
  border:4px solid var(--fc-coral)!important;
  border-radius:50%!important;
  background:#fff!important;
  box-sizing:border-box!important;
}
.service-card::after,
.massage-card::after,
.reserve-card::after,
.location-card::after{display:none!important;content:none!important;}
.service-image,
.reserve-card-img,
.card-img-wrap{display:none!important;}
.service-content,
.card-body,
.reserve-card-body,
.location-card{
  padding:28px 28px 28px 72px!important;
  display:block!important;
}
.service-content span,
.reserve-category,
.location-card span{
  display:none!important;
}
.service-content h3,
.card-body h2,
.reserve-card h2,
.location-card h3{
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:30px!important;
  line-height:1.25!important;
  color:var(--fc-slate-dark)!important;
  font-weight:700!important;
  margin:0 0 8px!important;
  letter-spacing:0!important;
}
.service-content p,
.card-body p,
.reserve-card p,
.location-card p{
  color:#222!important;
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:21px!important;
  line-height:1.45!important;
  margin:0!important;
  display:block!important;
  -webkit-line-clamp:unset!important;
  -webkit-box-orient:unset!important;
  overflow:visible!important;
}
.service-meta,
.reserve-meta{
  margin:18px 0 0!important;
  padding:0!important;
  border:0!important;
  display:flex!important;
  flex-wrap:wrap!important;
  align-items:baseline!important;
  justify-content:flex-start!important;
  gap:10px!important;
  color:var(--fc-slate-dark)!important;
  text-align:left!important;
}
.service-meta strong,
.reserve-meta{
  color:var(--fc-slate-dark)!important;
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:25px!important;
  font-weight:400!important;
}
.service-meta small,
.reserve-meta span{
  color:#a1a4aa!important;
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:17px!important;
  font-weight:400!important;
}
.service-actions{display:flex!important;gap:10px!important;margin-top:18px!important;}
.service-actions a,
.card-btn,
.choose-treatment{
  flex:0 1 auto!important;
  min-width:120px!important;
  border:1px solid var(--fc-coral)!important;
  background:var(--fc-coral)!important;
  color:#fff!important;
  padding:11px 16px!important;
  font-family:Georgia,'Times New Roman',serif!important;
  font-size:15px!important;
  font-weight:700!important;
  text-transform:uppercase!important;
  letter-spacing:0!important;
  text-align:center!important;
}
.service-actions a:first-child{background:#fff!important;color:var(--fc-coral)!important;}
.service-actions a:hover,
.card-btn:hover,
.choose-treatment:hover{background:var(--fc-coral-hover)!important;border-color:var(--fc-coral-hover)!important;color:#fff!important;}
.location-grid,
.highlight-list{
  max-width:var(--fc-max)!important;
  margin:24px auto 0!important;
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:16px!important;
  list-style:none!important;
  padding:0!important;
}
.location-card{min-height:120px!important;}
.location-card h3{font-size:24px!important;margin:0!important;}
.highlight-list li{
  background:#f5f6f7!important;
  padding:18px 18px 18px 46px!important;
  min-height:62px!important;
  color:var(--fc-text)!important;
  font-size:17px!important;
  line-height:1.35!important;
  position:relative!important;
}
.highlight-list li::before{
  content:''!important;
  position:absolute!important;
  left:18px!important;
  top:22px!important;
  width:13px!important;
  height:13px!important;
  border:3px solid var(--fc-coral)!important;
  border-radius:50%!important;
  background:#fff!important;
}

/* Inner page headers and booking page */
.page-header,
.booking-hero{
  background:#fff!important;
  color:var(--fc-text)!important;
  padding:54px 20px 42px!important;
  border-bottom:1px solid #e5e5e5!important;
  text-align:left!important;
}
.page-header h1,
.booking-hero h1{
  max-width:var(--fc-max)!important;
  margin:0 auto!important;
  font-size:34px!important;
  line-height:1.25!important;
}
.massage-list,
.reserve-shell,
.booking-layout{
  max-width:var(--fc-max)!important;
  margin:0 auto!important;
}
.massage-list{padding:26px 20px 50px!important;display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:18px!important;}
.massage-card{animation:none!important;}
.card-img-label{display:none!important;}
.card-body{border:0!important;}
.card-body p{font-size:18px!important;font-family:Georgia,'Times New Roman',serif!important;color:var(--fc-text)!important;}
.card-btn{display:inline-flex!important;margin-top:18px!important;}
.booking-tabs{
  position:static!important;
  top:auto!important;
  background:#fff!important;
  border:0!important;
  box-shadow:none!important;
  display:flex!important;
  gap:22px!important;
  justify-content:center!important;
  padding:24px 0!important;
}
.booking-tabs button{
  border:0!important;
  background:#fff!important;
  color:var(--fc-slate-dark)!important;
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:19px!important;
  padding:12px 24px!important;
  border-radius:16px!important;
  cursor:pointer!important;
}
.booking-tabs button.active{
  background:#9acaea!important;
  color:#fff!important;
}
.booking-layout{display:grid!important;grid-template-columns:minmax(0,1fr) 420px!important;gap:24px!important;padding:0 20px 60px!important;}
.reserve-card{margin-bottom:16px!important;}
.booking-panel{
  position:sticky!important;
  top:142px!important;
  background:var(--fc-panel)!important;
  border:0!important;
  box-shadow:none!important;
  padding:28px!important;
  align-self:start!important;
}
.booking-panel h3{font-size:30px!important;margin:0 0 10px!important;}
.booking-panel .panel-note,
.selected-box,
.booking-form input,
.booking-form select,
.booking-form textarea{
  font-family:Georgia,'Times New Roman',serif!important;
  font-size:16px!important;
}
.booking-form input,
.booking-form select,
.booking-form textarea{
  border:1px solid #d0d0d0!important;
  background:#fff!important;
  border-radius:0!important;
  color:var(--fc-text)!important;
  min-height:44px!important;
  padding:11px 12px!important;
  outline:none!important;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{border-color:var(--fc-coral)!important;box-shadow:none!important;}

/* Footer kept clean, dark slate like the reference buttons */
.site-footer{
  margin-top:0!important;
  background:var(--fc-slate-dark)!important;
  color:rgba(255,255,255,.78)!important;
  border:0!important;
}
.footer-inner{
  max-width:var(--fc-max)!important;
  margin:0 auto!important;
  padding:44px 20px!important;
  display:grid!important;
  grid-template-columns:1.2fr .8fr .8fr 1fr!important;
  gap:32px!important;
}
.footer-logo{display:inline-flex!important;flex-direction:column!important;color:#fff!important;text-decoration:none!important;margin:0 0 14px!important;}
.footer-logo span{font-family:Georgia,'Times New Roman',serif!important;font-size:32px!important;letter-spacing:5px!important;text-transform:uppercase!important;font-weight:400!important;}
.footer-logo small{font-size:12px!important;letter-spacing:4px!important;color:rgba(255,255,255,.6)!important;text-transform:uppercase!important;}
.footer-brand p,
.footer-col a,
.footer-col span{font-family:Georgia,'Times New Roman',serif!important;font-size:16px!important;line-height:1.6!important;color:rgba(255,255,255,.75)!important;}
.footer-col h3{font-size:24px!important;color:#fff!important;margin:0 0 10px!important;}
.footer-col{display:flex!important;flex-direction:column!important;gap:8px!important;}
.footer-bottom{
  max-width:var(--fc-max)!important;
  margin:0 auto!important;
  padding:16px 20px 22px!important;
  border-top:1px solid rgba(255,255,255,.12)!important;
  display:flex!important;
  justify-content:space-between!important;
  gap:18px!important;
  flex-wrap:wrap!important;
  color:rgba(255,255,255,.55)!important;
  font-size:13px!important;
}
.footer-bottom a{color:rgba(255,255,255,.75)!important;}
.footer-nav,.footer-copy{display:none!important;}

/* Motion kept subtle, no surprise animations */
.motion-ready .reveal,
.motion-ready .section,
.motion-ready .massage-card,
.motion-ready .reserve-card,
.motion-ready .service-card,
.motion-ready .location-card,
.motion-ready .footer-col,
.motion-ready .footer-brand{
  opacity:1!important;
  transform:none!important;
  transition:none!important;
}

@media (max-width:1180px){
  .site-nav, nav{padding-left:252px!important;gap:16px!important;}
  .logo{width:196px!important;height:196px!important;}
  .nav-menu{gap:20px!important;}
  .nav-menu a{font-size:16px!important;}
  .btn-reserve{font-size:16px!important;padding:0 16px!important;}
  .stars-bar{padding-left:252px!important;}
  .intro-card,.hero + .section:first-of-type{grid-template-columns:1fr 380px!important;gap:34px!important;}
}

@media (max-width:900px){
  body{font-size:17px!important;}
  .site-nav, nav{
    height:82px!important;
    min-height:82px!important;
    padding:0 16px 0 150px!important;
    align-items:center!important;
  }
  .logo{left:14px!important;top:12px!important;width:118px!important;height:118px!important;min-width:118px!important;}
  .mobile-menu-toggle{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    margin-left:auto!important;
    min-height:40px!important;
    padding:0 18px!important;
    background:var(--fc-coral)!important;
    border:1px solid var(--fc-coral)!important;
    color:#fff!important;
    font-family:Georgia,'Times New Roman',serif!important;
    font-size:16px!important;
    font-weight:700!important;
    text-transform:uppercase!important;
    cursor:pointer!important;
  }
  .nav-right{display:none!important;}
  .nav-menu{
    position:absolute!important;
    top:82px!important;
    left:0!important;
    right:0!important;
    z-index:999!important;
    display:none!important;
    flex-direction:column!important;
    align-items:stretch!important;
    gap:0!important;
    padding:0!important;
    background:#fff!important;
    border-top:1px solid #ddd!important;
    border-bottom:1px solid #ddd!important;
    box-shadow:0 12px 25px rgba(0,0,0,.08)!important;
  }
  nav.menu-open .nav-menu,
  .site-nav.menu-open .nav-menu{display:flex!important;}
  .nav-menu a{
    display:block!important;
    padding:17px 20px!important;
    font-size:16px!important;
    border-bottom:1px solid #eee!important;
  }
  .nav-menu a::after{display:none!important;}
  .stars-bar{
    top:82px!important;
    height:34px!important;
    padding:0 16px 0 150px!important;
    font-size:15px!important;
  }
  .stars-bar .stars{font-size:18px!important;}
  .page-home .hero,
  .home-hero{display:block!important;height:auto!important;min-height:auto!important;max-height:none!important;overflow:visible!important;background:transparent!important;}
  .page-home .hero-img,.page-home .hero img{width:100%!important;height:auto!important;max-height:none!important;object-fit:unset!important;object-position:center top!important;display:block!important;}
  .intro-card,.hero + .section:first-of-type{
    display:block!important;
    padding:34px 18px!important;
  }
  .home-contact-panel{margin-top:26px!important;font-size:16px!important;padding:22px!important;}
  .section,.gift-section{padding:38px 18px!important;}
  .section-title{font-size:28px!important;}
  .section-body{font-size:17px!important;}
  .service-showcase,.massage-list{grid-template-columns:1fr!important;}
  .location-grid,.highlight-list{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .booking-layout{grid-template-columns:1fr!important;}
  .booking-panel{position:relative!important;top:auto!important;order:-1!important;}
  .footer-inner{grid-template-columns:1fr 1fr!important;}
}

@media (max-width:560px){
  body{font-size:16px!important;}
  .site-nav, nav{height:74px!important;min-height:74px!important;padding-left:126px!important;}
  .logo{width:100px!important;height:100px!important;min-width:100px!important;left:12px!important;top:6px!important;}
  .mobile-menu-toggle{font-size:14px!important;min-height:36px!important;padding:0 14px!important;}
  .nav-menu{top:74px!important;}
  .stars-bar{top:74px!important;height:32px!important;padding-left:126px!important;justify-content:flex-end!important;font-size:13px!important;}
  .stars-bar .stars{font-size:16px!important;letter-spacing:1px!important;}
  .page-home .hero,.home-hero{display:block!important;height:auto!important;min-height:auto!important;max-height:none!important;overflow:visible!important;background:transparent!important;}
  .page-home .hero-img,.page-home .hero img{width:100%!important;height:auto!important;min-height:auto!important;max-height:none!important;object-fit:unset!important;object-position:center top!important;display:block!important;}
  .intro-card,.hero + .section:first-of-type{padding:14px 16px 26px!important;gap:0!important;}
  .section,.gift-section{padding:32px 16px!important;}
  .section-title{font-size:25px!important;line-height:1.25!important;}
  .section-body{font-size:16px!important;line-height:1.6!important;}
  .home-contact-panel{font-size:15px!important;}
  .service-card::before,.massage-card::before,.reserve-card::before,.location-card::before{left:18px!important;top:27px!important;width:23px!important;height:23px!important;}
  .service-content,.card-body,.reserve-card-body,.location-card{padding:24px 18px 24px 58px!important;}
  .service-content h3,.reserve-card h2,.location-card h3{font-size:24px!important;}
  .service-content p,.reserve-card p{font-size:17px!important;}
  .service-actions{flex-direction:column!important;}
  .service-actions a,.card-btn,.choose-treatment{width:100%!important;}
  .location-grid,.highlight-list{grid-template-columns:1fr!important;}
  .booking-tabs{display:grid!important;grid-template-columns:1fr 1fr!important;gap:8px!important;}
  .booking-tabs button{font-size:15px!important;padding:10px!important;border-radius:12px!important;}
  .reserve-shell,.booking-layout,.massage-list{padding-left:14px!important;padding-right:14px!important;}
  .footer-inner{grid-template-columns:1fr!important;}
  .footer-bottom{display:block!important;}
}

/* Current booking template compatibility: no image cards, list style close to the reference mobile flow */
.five-reservation{
  background:#fff!important;
  color:var(--fc-text)!important;
  font-family:Georgia,'Times New Roman',serif!important;
}
.reservation-head{
  max-width:var(--fc-max)!important;
  margin:0 auto!important;
  padding:42px 20px 24px!important;
  background:#fff!important;
  border:0!important;
  box-shadow:none!important;
}
.reservation-head h1{
  font-family:Georgia,'Times New Roman',serif!important;
  color:var(--fc-text)!important;
  font-size:34px!important;
  font-weight:400!important;
  margin:0 0 8px!important;
}
.reservation-head p{
  max-width:900px!important;
  color:var(--fc-text)!important;
  font-size:18px!important;
  line-height:1.55!important;
  margin:0!important;
}
.reservation-workspace{
  max-width:var(--fc-max)!important;
  margin:0 auto!important;
  padding:0 20px 56px!important;
  display:grid!important;
  grid-template-columns:minmax(0,1fr) 520px!important;
  gap:24px!important;
}
.treatment-list{display:block!important;}
.treatment-card{
  background:#f5f6f7!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  margin:0 0 14px!important;
  overflow:hidden!important;
}
.treatment-card.selected{background:#eef0f2!important;box-shadow:none!important;border:0!important;}
.treatment-collapsed{
  width:100%!important;
  display:grid!important;
  grid-template-columns:42px minmax(0,1fr) auto!important;
  gap:18px!important;
  align-items:start!important;
  padding:26px 26px!important;
  background:transparent!important;
  border:0!important;
  cursor:pointer!important;
  text-align:left!important;
}
.radio-dot{
  width:26px!important;
  height:26px!important;
  border-radius:50%!important;
  border:4px solid var(--fc-coral)!important;
  background:#fff!important;
  margin-top:4px!important;
}
.treatment-card.selected .radio-dot{box-shadow:inset 0 0 0 5px #fff;background:var(--fc-coral)!important;}
.treatment-title{
  display:block!important;
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:28px!important;
  line-height:1.25!important;
  font-weight:700!important;
  color:var(--fc-slate-dark)!important;
}
.treatment-sub{
  display:block!important;
  margin-top:8px!important;
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:20px!important;
  line-height:1.45!important;
  color:#20242a!important;
}
.treatment-price{
  min-width:120px!important;
  text-align:right!important;
  font-family:Arial,Helvetica,sans-serif!important;
  color:var(--fc-slate-dark)!important;
  font-size:28px!important;
  font-weight:400!important;
  line-height:1.05!important;
}
.treatment-price span{
  display:block!important;
  margin-top:8px!important;
  color:#a1a4aa!important;
  font-size:18px!important;
}
.treatment-open{
  display:none!important;
  grid-template-columns:1fr!important;
  gap:0!important;
  padding:0 26px 26px 86px!important;
  background:transparent!important;
}
.treatment-card.selected .treatment-open{display:block!important;}
.treatment-image{display:none!important;}
.treatment-copy p{
  color:var(--fc-text)!important;
  font-size:17px!important;
  line-height:1.6!important;
  margin:0 0 10px!important;
}
.book-treatment,
.change-location,
.month-nav,
.time-buttons button,
.close-location,
.location-option{
  border-radius:0!important;
  font-family:Georgia,'Times New Roman',serif!important;
}
.book-treatment,
.change-location,
.time-buttons button,
.location-option.selected{
  background:var(--fc-coral)!important;
  border:1px solid var(--fc-coral)!important;
  color:#fff!important;
}
.book-treatment:hover,
.change-location:hover,
.time-buttons button:hover{background:var(--fc-coral-hover)!important;border-color:var(--fc-coral-hover)!important;}
.planner-wrap,
.calendar-box,
.times-panel,
.details-card,
.location-dialog{
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  background:var(--fc-panel)!important;
}
.planner-wrap{padding:24px!important;}
.planner-top strong,
.calendar-title h2,
.times-panel h3,
.details-card h3,
.location-dialog h3{
  font-family:Georgia,'Times New Roman',serif!important;
  color:var(--fc-text)!important;
  font-weight:400!important;
}
@media (max-width:1100px){
  .reservation-workspace{grid-template-columns:1fr!important;}
}
@media (max-width:560px){
  .reservation-head{padding:32px 14px 18px!important;}
  .reservation-head h1{font-size:28px!important;}
  .reservation-head p{font-size:16px!important;}
  .reservation-workspace{padding:0 0 44px!important;gap:16px!important;}
  .treatment-card{margin-bottom:0!important;}
  .treatment-collapsed{grid-template-columns:36px minmax(0,1fr) 74px!important;padding:24px 18px!important;gap:12px!important;}
  .radio-dot{width:24px!important;height:24px!important;}
  .treatment-title{font-size:24px!important;}
  .treatment-sub{font-size:18px!important;}
  .treatment-price{font-size:23px!important;min-width:74px!important;}
  .treatment-price span{font-size:15px!important;}
  .treatment-open{padding:0 18px 24px 66px!important;}
  .planner-wrap{padding:18px 14px!important;margin:0 14px!important;}
}

/* Front-only update: homepage treatment cards open details directly; no buttons inside cards. */
.service-card-link{
  color:inherit!important;
  text-decoration:none!important;
  cursor:pointer!important;
}
.service-card-link:hover h3,
.service-card-link:focus-visible h3{
  color:var(--fc-slate-dark)!important;
}
.service-card-link:focus-visible{
  outline:2px solid var(--fc-coral)!important;
  outline-offset:3px!important;
}
.detail-info-card .detail-book-row{
  margin-top:24px!important;
}

/* Treatments page selection flow: no per-card orange buttons; one Book button at the end. */
.page-treatments .treatment-select-form{
  background:#fff!important;
  margin:0!important;
  padding:0!important;
}
.page-treatments .treatment-option{
  display:block!important;
  min-width:0!important;
  margin:0!important;
  padding:0!important;
  cursor:pointer!important;
}
.page-treatments .treatment-option input[type="radio"]{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  opacity:0!important;
  pointer-events:none!important;
}
.page-treatments .treatment-option .massage-card{
  height:100%!important;
  margin:0!important;
  border:2px solid transparent!important;
  cursor:pointer!important;
  transition:background .2s ease,border-color .2s ease!important;
}
.page-treatments .treatment-option:hover .massage-card{
  background:#eef0f2!important;
}
.page-treatments .treatment-option input[type="radio"]:checked + .massage-card{
  background:#fff!important;
  border-color:var(--fc-coral)!important;
}
.page-treatments .treatment-option input[type="radio"]:checked + .massage-card::before{
  border-color:var(--fc-coral)!important;
  background:radial-gradient(circle at center,var(--fc-coral) 0 38%,#fff 42% 100%)!important;
}
.page-treatments .treatment-option input[type="radio"]:focus-visible + .massage-card{
  outline:2px solid var(--fc-slate)!important;
  outline-offset:3px!important;
}
.page-treatments .card-btn{
  display:none!important;
}
.page-treatments .treatment-card-meta{
  margin:18px 0 0!important;
  padding:0!important;
  border:0!important;
  display:flex!important;
  flex-wrap:wrap!important;
  align-items:baseline!important;
  justify-content:flex-start!important;
  gap:10px!important;
  color:var(--fc-slate-dark)!important;
  text-align:left!important;
  font-family:Georgia,'Times New Roman',serif!important;
}
.page-treatments .treatment-card-meta strong{
  color:var(--fc-slate-dark)!important;
  font-size:22px!important;
  font-weight:400!important;
  line-height:1!important;
}
.page-treatments .treatment-card-meta small{
  color:#8c95a3!important;
  font-size:16px!important;
  line-height:1!important;
}
.page-treatments .treatment-final-action{
  max-width:var(--fc-max)!important;
  margin:0 auto!important;
  padding:0 20px 56px!important;
  display:flex!important;
  justify-content:flex-end!important;
  background:#fff!important;
}
.page-treatments .treatment-final-book{
  min-width:260px!important;
  min-height:52px!important;
  border:1px solid var(--fc-coral)!important;
  background:var(--fc-coral)!important;
  color:#fff!important;
  font-family:Georgia,'Times New Roman',serif!important;
  font-size:18px!important;
  font-weight:700!important;
  text-transform:uppercase!important;
  border-radius:0!important;
  cursor:pointer!important;
  box-shadow:none!important;
}
.page-treatments .treatment-final-book:hover{
  background:var(--fc-coral-hover)!important;
  border-color:var(--fc-coral-hover)!important;
}
@media(max-width:640px){
  .page-treatments .treatment-final-action{
    padding:0 14px 44px!important;
  }
  .page-treatments .treatment-final-book{
    width:100%!important;
    min-width:0!important;
  }
}

/* Fix: Treatments page cards are selection-only; they never open the details page. */
.page-treatments .treatment-option.is-selected .massage-card,
.page-treatments .treatment-option input[type="radio"]:checked + .massage-card{
  background:#fff!important;
  border-color:var(--fc-coral)!important;
}
.page-treatments .treatment-option.is-selected .massage-card::before,
.page-treatments .treatment-option input[type="radio"]:checked + .massage-card::before{
  border-color:var(--fc-coral)!important;
  background:radial-gradient(circle at center,var(--fc-coral) 0 38%,#fff 42% 100%)!important;
}
.page-treatments .treatment-option:focus-visible .massage-card{
  outline:2px solid var(--fc-slate)!important;
  outline-offset:3px!important;
}

/* 2026-06-17: cards select a treatment only; they do not open detail pages. */
.home-treatment-select-form{display:block!important;margin:0!important;padding:0!important;}
.service-select-card{cursor:pointer!important;outline:none!important;}
.service-select-card:hover{background:#eef0f2!important;}
.service-select-card.is-selected{background:#fff!important;border-color:var(--fc-coral)!important;}
.service-select-card.is-selected::before{border-color:var(--fc-coral)!important;background:radial-gradient(circle at center,var(--fc-coral) 0 38%,#fff 42% 100%)!important;}
.service-select-card:focus-visible{outline:2px solid var(--fc-slate)!important;outline-offset:3px!important;}
.home-final-action{max-width:var(--fc-max)!important;margin:0 auto!important;padding:0 20px 56px!important;display:flex!important;justify-content:flex-end!important;background:#fff!important;}
.home-final-action .treatment-final-book{min-width:260px!important;min-height:52px!important;border:1px solid var(--fc-coral)!important;background:var(--fc-coral)!important;color:#fff!important;font-family:Georgia,'Times New Roman',serif!important;font-size:18px!important;font-weight:700!important;text-transform:uppercase!important;border-radius:0!important;cursor:pointer!important;box-shadow:none!important;}
.home-final-action .treatment-final-book:hover{background:var(--fc-coral-hover)!important;border-color:var(--fc-coral-hover)!important;}
.page-treatments .treatment-option{user-select:none!important;}
.page-treatments .treatment-option *{pointer-events:none!important;}
@media(max-width:640px){.home-final-action{padding:0 14px 44px!important}.home-final-action .treatment-final-book{width:100%!important;min-width:0!important}}


/* Final booking button fix: keep the single Book button styled even if older inline page CSS competes. */
.treatment-final-action,
.page-treatments .treatment-final-action{
  width:100%!important;
  max-width:var(--fc-max)!important;
  margin:0 auto!important;
  padding:8px 20px 56px!important;
  display:flex!important;
  justify-content:flex-end!important;
  align-items:center!important;
  background:#fff!important;
}
button.treatment-final-book,
.treatment-final-book{
  appearance:none!important;
  -webkit-appearance:none!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-width:260px!important;
  min-height:52px!important;
  padding:0 34px!important;
  border:1px solid var(--fc-coral)!important;
  background:var(--fc-coral)!important;
  color:#fff!important;
  font-family:Georgia,'Times New Roman',serif!important;
  font-size:18px!important;
  font-weight:700!important;
  line-height:1!important;
  text-transform:uppercase!important;
  letter-spacing:0!important;
  border-radius:0!important;
  cursor:pointer!important;
  box-shadow:none!important;
  text-align:center!important;
}
button.treatment-final-book:hover,
.treatment-final-book:hover{
  background:var(--fc-coral-hover)!important;
  border-color:var(--fc-coral-hover)!important;
}
@media(max-width:640px){
  .treatment-final-action,
  .page-treatments .treatment-final-action{
    padding:10px 18px 44px!important;
    justify-content:center!important;
  }
  button.treatment-final-book,
  .treatment-final-book{
    width:100%!important;
    min-width:0!important;
    min-height:48px!important;
    font-size:15px!important;
  }
}


/* hard mobile hero no-crop fix */
@media (max-width:900px){
  body.page-home .hero.home-hero,
  body.page-home .hero{display:block!important;height:auto!important;min-height:auto!important;max-height:none!important;overflow:visible!important;background:transparent!important;}
  body.page-home .hero.home-hero .hero-img,
  body.page-home .hero .hero-img,
  body.page-home .hero img{display:block!important;width:100%!important;height:auto!important;min-height:auto!important;max-height:none!important;object-fit:unset!important;object-position:center top!important;}
}


/* V20260618 text + logo refinement only */
.page-home .intro-card .section-title,
.page-home .hero + .section:first-of-type .section-title{
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 400 !important;
  color: #4f5968 !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  margin-bottom: 18px !important;
}
.page-home .intro-card .section-body,
.page-home .hero + .section:first-of-type .section-body{
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 14px !important;
  line-height: 1.72 !important;
  color: #556171 !important;
}
.page-home .intro-card .section-body p,
.page-home .hero + .section:first-of-type .section-body p{
  margin: 0 0 20px 0 !important;
}
.page-home .intro-card .section-body p:last-child,
.page-home .hero + .section:first-of-type .section-body p:last-child{
  margin-bottom: 0 !important;
}
.logo{
  background:#ece8e2 !important;
  padding:12px !important;
}
.logo-img{
  background:#ffffff !important;
}
@media (max-width:900px){
  .page-home .intro-card .section-title,
  .page-home .hero + .section:first-of-type .section-title{
    font-size: 34px !important;
    margin-bottom: 18px !important;
  }
  .page-home .intro-card .section-body,
  .page-home .hero + .section:first-of-type .section-body{
    font-size: 14px !important;
    line-height: 1.75 !important;
  }
  .logo{
    width:108px !important;
    height:108px !important;
    min-width:108px !important;
    left:14px !important;
    top:12px !important;
    padding:10px !important;
  }
  .site-nav, nav{padding:0 16px 0 146px !important;}
  .stars-bar{padding:0 16px 0 146px !important;}
}
@media (max-width:560px){
  .page-home .intro-card,
  .page-home .hero + .section:first-of-type{
    padding: 18px 18px 28px !important;
  }
  .page-home .intro-card .section-title,
  .page-home .hero + .section:first-of-type .section-title{
    font-size: 33px !important;
    line-height: 1.12 !important;
    margin-bottom: 16px !important;
  }
  .page-home .intro-card .section-body,
  .page-home .hero + .section:first-of-type .section-body{
    font-size: 13.5px !important;
    line-height: 1.78 !important;
  }
  .logo{
    width:104px !important;
    height:104px !important;
    min-width:104px !important;
    left:10px !important;
    top:8px !important;
    padding:10px !important;
  }
  .site-nav, nav{padding-left:124px !important;}
  .stars-bar{padding-left:124px !important;}
}


/* V20260618 logo + typography matched closer to latest mobile reference */
body{
  font-family:'Jost', Arial, sans-serif !important;
  color:#434a53 !important;
}
.page-home .intro-card .section-title,
.page-home .hero + .section:first-of-type .section-title{
  font-family:'Jost', Arial, sans-serif !important;
  font-weight:500 !important;
  color:#46505d !important;
  line-height:1.14 !important;
  letter-spacing:-0.01em !important;
  margin-bottom:14px !important;
}
.page-home .intro-card .section-title em,
.page-home .hero + .section:first-of-type .section-title em{
  display:block !important;
  font-family:'Jost', Arial, sans-serif !important;
  font-style:italic !important;
  font-weight:400 !important;
  font-size:.58em !important;
  color:#58616a !important;
  margin-top:8px !important;
}
.page-home .intro-card .section-body,
.page-home .hero + .section:first-of-type .section-body{
  font-family:'Jost', Arial, sans-serif !important;
  font-size:16px !important;
  line-height:1.92 !important;
  color:#3f464d !important;
}
.page-home .intro-card .section-body p,
.page-home .hero + .section:first-of-type .section-body p{
  margin:0 0 12px 0 !important;
}
.logo{
  background:transparent !important;
  padding:0 !important;
}
.logo-img{
  background:transparent !important;
}
@media (max-width:900px){
  .logo{
    width:88px !important;
    height:88px !important;
    min-width:88px !important;
    left:16px !important;
    top:10px !important;
  }
  .site-nav, nav{padding:0 16px 0 118px !important;}
  .stars-bar{padding:0 16px 0 118px !important;}
  .page-home .intro-card,
  .page-home .hero + .section:first-of-type{padding:18px 18px 26px !important;}
  .page-home .intro-card .section-title,
  .page-home .hero + .section:first-of-type .section-title{font-size:30px !important;}
  .page-home .intro-card .section-body,
  .page-home .hero + .section:first-of-type .section-body{font-size:15px !important; line-height:1.88 !important;}
}
@media (max-width:560px){
  .logo{
    width:84px !important;
    height:84px !important;
    min-width:84px !important;
    left:16px !important;
    top:10px !important;
  }
  .site-nav, nav{padding-left:112px !important;}
  .stars-bar{padding-left:112px !important;}
  .page-home .intro-card,
  .page-home .hero + .section:first-of-type{padding:16px 16px 26px !important;}
  .page-home .intro-card .section-title,
  .page-home .hero + .section:first-of-type .section-title{
    font-size:28px !important;
    line-height:1.16 !important;
    margin-bottom:12px !important;
  }
  .page-home .intro-card .section-body,
  .page-home .hero + .section:first-of-type .section-body{
    font-size:14px !important;
    line-height:1.86 !important;
  }
}


/* V20260618 language toggle + remove top separator only */
.site-nav, nav{
  border-bottom:0 !important;
}
.site-nav::after, nav::after{
  display:none !important;
}
.language-toggle{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:36px !important;
  padding:0 13px !important;
  margin-left:auto !important;
  background:#fff !important;
  color:var(--fc-slate-dark) !important;
  border:1px solid #9fa6b1 !important;
  font-family:Georgia,'Times New Roman',serif !important;
  font-size:14px !important;
  font-weight:700 !important;
  line-height:1 !important;
  text-transform:uppercase !important;
  cursor:pointer !important;
  border-radius:0 !important;
  box-shadow:none !important;
}
.language-toggle:hover{
  background:#f7f7f7 !important;
}
@media (min-width:901px){
  .language-toggle{order:5;margin-left:0 !important;align-self:flex-start !important;margin-top:17px !important;}
  .nav-right{order:6;}
}
@media (max-width:900px){
  .language-toggle{
    margin-left:auto !important;
    margin-right:8px !important;
    min-height:36px !important;
    padding:0 11px !important;
    font-size:13px !important;
  }
  .mobile-menu-toggle{margin-left:0 !important;}
}
@media (max-width:560px){
  .language-toggle{
    min-height:32px !important;
    padding:0 9px !important;
    font-size:12px !important;
    margin-right:7px !important;
  }
}
