html {
  scroll-behavior: smooth;
}

:root {
  --healis-forest: #4a5d4e;
  --healis-forest-2: #3d4d40;
  --healis-sage: #D7D9CF;
  --healis-cream: #f6f5f0;
  --healis-white: #ffffff;
  --healis-gold: #c4a574;
  --healis-serif: "Playfair Display", Georgia, serif;
  --healis-sans: "Montserrat", "Noto Sans Thai", system-ui, sans-serif;
}

body.healis-page {
  margin: 0;
  font-family: var(--healis-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--healis-forest);
  background: var(--healis-cream);
}

body.healis-page .topnav,
body.healis-page nav.topnav {
  display: none !important;
}

body.healis-page .footer:not(.healis-footer),
body.healis-page nav.section-padding.footer.pt-0.pb-0:not(.healis-footer) {
  display: none !important;
}

/* --- Header --- */
.healis-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 245, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 93, 78, 0.12);
}

.healis-header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; min-height:92px;
}
@media screen and (max-width:1199.98px){
  .healis-header__inner{min-height:80px!important;}
}
@media screen and (max-width:991.98px){
  .healis-header__inner{min-height:70px!important;}
}

.healis-logo {
  font-family: var(--healis-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--healis-forest);
  text-decoration: none;
}

.healis-nav {
  position:relative;
  display:flex; align-items:center; gap:1.5rem; z-index:800;
}

.healis-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.healis-nav__links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--healis-forest);
  text-decoration: none;
  opacity: 0.85;
}

.healis-nav__links a:hover {
  opacity: 1;
}

.healis-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.healis-nav__toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--healis-forest);
  margin: 0 auto;
}

@media (max-width: 900px) {
  .healis-nav__toggle {
    display: flex;
  }

  .healis-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--healis-cream);
    padding: 1.25rem 24px 1.5rem;
    border-bottom: 1px solid rgba(74, 93, 78, 0.15);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .healis-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .healis-nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .healis-nav .healis-btn--solid {
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* --- Buttons --- */
.healis-btn{
  display:inline-block; padding:1rem 2rem; font-size:0.68rem; font-weight:600;
  letter-spacing:0.2em; text-transform: uppercase; text-decoration:none;
  border-radius:2px; transition:background 0.2s, color 0.2s, border-color 0.2s;
  background-color:#D7D9CF; color:#455040; border-color:#455040;
}
@media screen and (max-width:991.98px){
  .healis-btn{padding:0.75rem 1rem;}
}
@media screen and (max-width:490.98px){
  .healis-btn{padding:0.5rem 0.75rem; font-size:0.5rem;}
}


.healis-btn--ghost {
  color: var(--healis-white);
  border: 1px solid var(--healis-white);
  background: transparent;
}

.healis-btn--ghost:hover {
  background: var(--healis-white);
  color: var(--healis-forest);
}

.healis-btn--ghost-dark {
  color: var(--healis-forest);
  border: 1px solid var(--healis-forest);
  background: transparent;
}

.healis-btn--ghost-dark:hover {
  background: var(--healis-forest);
  color: var(--healis-white);
}

.healis-btn--solid {
  background: var(--healis-forest);
  color: var(--healis-white);
  border: 1px solid var(--healis-forest);
}

.healis-btn--solid:hover {
  background: var(--healis-forest-2);
  border-color: var(--healis-forest-2);
}

.healis-btn--dark {
  background: #1a1a1a;
  color: var(--healis-white);
  border: 1px solid #1a1a1a;
}

.healis-btn--dark:hover {
  opacity: 0.9;
}

/* --- Hero --- */
.healis-hero {
  position:relative; min-height:78vh; display:flex;
  align-items:center; justify-content:center; text-align:center;
  color:var(--healis-white); background:var(--healis-forest) center/cover no-repeat;
}
@media screen and (max-width:991.98px){
  .healis-hero{min-height:53vh;}
}

.healis-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 38, 32, 0.45) 0%, rgba(30, 38, 32, 0.65) 100%);
}

.healis-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 24px;
}

.healis-hero h1{
  font-family:var(--healis-serif); font-size:clamp(5rem, 5vw, 3.5rem);
  font-weight:500; line-height:1.15; margin:0 0 1.25rem;
  color:var(--healis-white);
}
@media screen and (max-width:991.98px){
  .healis-hero h1{font-size:3.5rem;}
}
@media screen and (max-width:767.98px){
  .healis-hero h1{font-size:3.25rem;}
}
@media screen and (max-width:575.98px){
  .healis-hero h1{font-size:3rem;}
}
@media screen and (max-width:375.98px){
  .healis-hero h1{font-size:2.5rem;}
}


.healis-hero p {
  margin: 0 0 2rem;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.95;
}

/* --- Section shell --- */
.healis-section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  overflow: hidden;
}
@media screen and (max-width:575.98px){
  .healis-section{padding: clamp(3rem, 8vw, 5.5rem) 0;}
}

.healis-section--sage {
  background: var(--healis-sage);
}

.healis-section--cream {
  background: var(--healis-cream);
}

.healis-section__floral {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  color: var(--healis-forest);
}

.healis-section__floral--tr {
  top: -5%;
  right: -8%;
  width: min(420px, 55vw);
  height: auto;
}

.healis-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 500;
  color: var(--healis-forest);
  margin: 0 0 1rem;
}

.healis-lead {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  color: rgba(74, 93, 78, 0.88);
}

/* --- About grid --- */
.healis-about {
  position: relative;
}

.healis-about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

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

.healis-about__left{
  display:grid; gap:1.5rem; 
  z-index:2; width:calc(100% - 20rem);
}
.healis-about__copy{width:20rem; padding:0 1rem;}
@media screen and (max-width:991.98px){
  .healis-about__left, .healis-about__copy{width:100%!important;}
}


.healis-circle {
  width:min(100%, 400px); aspect-ratio:1; z-index:2;
  border-radius:0px 300px 300px 0px; overflow:hidden;
  margin:0 auto; box-shadow:0 20px 50px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width:575.98px){
  .healis-circle{width: min(100%, 300px);}
}

.healis-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.healis-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.healis-stat {
  text-align: center;
}

.healis-stat strong {
  display: block;
  font-family: var(--healis-serif);
  font-size: 1.75rem;
  color: var(--healis-forest);
}

.healis-stat span {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(74, 93, 78, 0.75);
}

.healis-about__right{position:relative; z-index:2;}
.healis-arch {
  border-radius:180px 180px 0 0; overflow:hidden;
  aspect-ratio:4/5; max-height:420px;
  box-shadow:0 24px 60px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width:575.98px){
  .healis-about__right{display:flex; justify-content:center;}
  .healis-arch{max-height:350px;}
}



.healis-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.healis-about__copy{margin-top: 1.5rem;}
@media screen and (max-width:575.98px){
  .healis-about__copy{text-align:center;}
}


/* --- Quote band --- */
.healis-quote {
  text-align: center;
  padding: clamp(3rem, 7vw, 4.5rem) 24px;
}

.healis-quote blockquote {
  margin: 0 auto 1.75rem;
  max-width: 880px;
  font-family: var(--healis-sans);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--healis-forest);
  position: relative;
  z-index: 1;
}

.healis-quote p{
   font-family: var(--healis-sans);  font-weight: 500;
  font-size: clamp(1.35rem, 3vw, 3rem);
}
.healis-quote img{
  display:block; max-width:100%; width:auto; max-height:100%;
}
.healis-quote .img-01{height:4rem;}
.healis-quote .img-02{height:4rem;}
@media screen and (max-width:490.98px){
  .healis-quote .img-01, .healis-quote .img-02{height:3rem;}
}
@media screen and (max-width:450.98px){
  .healis-quote p{font-size:1rem;}
}
@media screen and (max-width:375.98px){
  .healis-quote .img-01, .healis-quote .img-02{height:2.25rem;}
}

.healis-feature {
  position:relative; overflow:hidden; min-height: min(90vh, 920px);
  text-align: center; color: var(--healis-white); display:flex;
  align-items:center; justify-content:center;
}
@media screen and (max-width:1199.98px){
  .healis-feature{min-height:min(30vh, 920px)!important;}
}
@media screen and (max-width:575.98px){
  .healis-feature{min-height:min(20vh, 920px)!important;}
  .healis-feature__video-wrap .content-wrapper .logo img{height:5rem!important;}
}
@media screen and (max-width:490.98px){
  .healis-feature__video-wrap .content-wrapper .logo img{height:3rem!important;}
}

.healis-feature__bg {
  position: absolute;
  inset: 0;
  background-color: var(--healis-forest);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.healis-feature__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(20, 26, 22, 0.55) 0%, rgba(20, 26, 22, 0.72) 100%);
}

.healis-feature__overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 24px clamp(3rem, 7vw, 5rem);
}

.healis-feature__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.healis-feature__icon {
  color: rgba(255, 255, 255, 0.92);
  line-height: 0;
}

.healis-feature__video-wrap {
  position:relative; width:100%; overflow:hidden; box-shadow:0 28px 70px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18); background: #0d0d0d;
}
.healis-feature__video-wrap .content-wrapper{
  position:absolute; top:0; left:0; right:0; bottom:0;
  display:flex; justify-content:center; align-items:center; flex-direction:column;
}
.healis-feature__video-wrap .content-wrapper .logo img{
  display:block; width:auto; height:8rem;
}

.healis-feature__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  vertical-align: middle;
  object-fit: cover;
  background: #000;
}

.healis-feature h2 {
  font-family:var(--healis-serif); font-size:clamp(1.5rem, 3.2vw, 2.35rem);
  font-weight:500; line-height:1.25; color:var(--healis-white);
  margin:0.25rem 0 0; max-width:22ch;
}
@media screen and (max-width:490.98px){
  .healis-feature h2{font-size:1rem;}
}

.healis-btn--cream {
  margin-top: 0.25rem;
  background: rgba(232, 224, 208, 0.95);
  color: var(--healis-forest-2);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.healis-btn--cream:hover {
  background: var(--healis-white);
  color: var(--healis-forest);
  border-color: rgba(255, 255, 255, 0.55);
}

.healis-marquee {
  background: var(--healis-forest-2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 0.85rem 0;
  overflow: hidden;
}
.healis-marquee.main{
  background: #d7d9cf;
  padding:1.5rem 0;
  color: #455040;
  font-size: 2.25rem;
  font-weight: 900;
  text-transform:unset;
}

.healis-marquee__inner {
  display: inline-block;
  min-width: 100%;
  text-align: center;
  white-space: nowrap;
  will-change: transform;
  animation: healis-marquee-scroll 24s linear infinite;
}
.healis-marquee__inner.not-animation{animation:none;}
@media screen and (max-width:575.98px){
  .healis-marquee__inner.not-animation.main{font-size:1.5rem; animation: healis-marquee-scroll 24s linear infinite;}
  .healis-marquee.main{padding:0.5rem 0;}
}

.healis-marquee__inner::-webkit-scrollbar {
  display: none;
}

@keyframes healis-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .healis-marquee__inner {
    animation: none;
    transform: none;
  }
}

/* --- Services row --- */
.healis-services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  border-top: 1px solid rgba(74, 93, 78, 0.15);
  border-bottom: 1px solid rgba(74, 93, 78, 0.15);
}

.healis-services-row a {
  display: block;
  padding: 1.35rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--healis-forest);
  text-decoration: none;
  border-right: 1px solid rgba(74, 93, 78, 0.12);
}

.healis-services-row a:last-child {
  border-right: 0;
}

.healis-services-row a:hover {
  background: rgba(74, 93, 78, 0.06);
}

@media (max-width: 700px) {
  .healis-services-row {
    grid-template-columns: 1fr 1fr;
  }

  .healis-services-row a {
    border-right: 0;
    border-bottom: 1px solid rgba(74, 93, 78, 0.12);
  }
}

/* --- Soothing treatment --- */
.healis-treat__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(340px, 1fr);
  grid-template-rows: auto auto auto;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
@media screen and (max-width:991.98px){
  .healis-treat__grid{display:unset;}
}

.healis-treat__hero-img {
  grid-column: 1;
  grid-row: 1 / -1;
  min-height: 320px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.healis-treat__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.healis-treat__top {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr min(180px, 35%);
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 1100px) {
  .healis-treat__top {
    grid-template-columns: 1fr;
  }

  .healis-mini-arch {
    max-width: 220px;
  }
}
@media screen and (max-width:991.98px){
  .healis-treat__top{text-align:center;}
   .healis-mini-arch{margin:0 auto;}
}



@media (max-width: 900px) {
  .healis-treat__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .healis-treat__hero-img {
    grid-column: 1;
    grid-row: auto;
    min-height: 240px;
  }

  .healis-treat__top {
    grid-column: 1;
    grid-row: auto;
  }

  .healis-treat__grid > .healis-icons {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .healis-treat__side {
    grid-column: 1;
    grid-row: auto;
    min-height: 240px;
  }
}

@media (max-width: 600px) {
  .healis-treat__grid {
    gap: 1.1rem;
  }

  .healis-treat__top {
    grid-template-columns: 1fr;
  }

  .healis-treat__hero-img img {
    min-height: 240px;
  }

  .healis-mini-arch {
    max-width: 180px;
  }
}

.healis-mini-arch {
  border-radius: 120px 120px 0 0;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.healis-mini-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.healis-treat__grid > .healis-icons {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.healis-icon-card {
  padding: 1rem 0;
  border-top: 1px solid rgba(74, 93, 78, 0.15);
}
@media screen and (max-width:991.98px){
  .healis-icon-card{text-align:center;}
  .healis-icon-card img{margin:0 auto;}
}

.healis-icon-card img{
  display:block; width:auto; height:5rem;
}

.healis-icon-card h4 {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.healis-icon-card p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(74, 93, 78, 0.8);
}

.healis-treat__side {
  grid-column: 2;
  grid-row: 3;
  position: relative;
  min-height: 280px;
  border-radius: 4px;
  overflow: hidden;
}

.healis-treat__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Gallery --- */
.healis-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 700px) {
  .healis-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.healis-gallery a {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
}

.healis-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.healis-gallery a:hover img {
  transform: scale(1.05);
}

/* --- Aroma + testimonial --- */
.healis-aroma {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (max-width: 900px) {
  .healis-aroma {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width:575.98px){
  .healis-aroma__frame img{height:fit-content;}
  .healis-aroma{gap: clamp(.5rem, 5vw, .5rem);}
}

.healis-aroma__frame {
  border:1px solid rgba(74, 93, 78, 0.2); z-index:2;
  padding:12px; background: var(--healis-white);
  box-shadow:0 20px 50px rgba(0, 0, 0, 0.06);
}

.healis-aroma__frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.healis-price {
  font-family: var(--healis-serif);
  font-size: 1.75rem;
  color: var(--healis-gold);
  margin: 0.25rem 0 1rem;
}

.healis-testimonial {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(74, 93, 78, 0.15);
}

.healis-testimonial img {
  width:3.5rem; height:3.5rem; border-radius:50%;
  object-fit:cover;
}
.healis-testimonial .text-container{width:calc(100% - 3rem);}

.healis-testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Indulge --- */
.healis-indulge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

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

.healis-indulge__img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.healis-indulge__img img {
  width: 100%;
  display: block;
  aspect-ratio: 5/4;
  object-fit: cover;
}
@media screen and (max-width:575.98px){
  .healis-indulge__img img{height:fit-content;}
}

/* --- Blog --- */
.healis-blog__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.healis-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.healis-card {
  background: var(--healis-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.healis-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.healis-card__body {
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.healis-card h3 {
  font-family: var(--healis-serif);
  font-size: 1.2rem;
  margin: 0 0 0.65rem;
}

.healis-card p {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: rgba(74, 93, 78, 0.82);
  flex: 1;
}

/* --- Footer --- */
.healis-footer {
  background: var(--healis-forest-2);
  color: rgba(255, 255, 255, 0.88);
  padding-top: 3rem;
}

.healis-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.healis-footer a:hover {
  text-decoration: underline;
}

.healis-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 800px) {
  .healis-footer__grid {
    grid-template-columns: 1fr;
  }
}

.healis-footer__brand {
  font-family: var(--healis-serif);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  margin: 0 0 0.75rem;
  color: var(--healis-white);
}

.healis-footer__title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.healis-footer__muted {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.healis-footer__socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.healis-footer__socials a {
  opacity: 0.85;
}

.healis-footer__socials a:hover {
  opacity: 1;
}

.healis-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.healis-footer__bar-inner {
  text-align: center;
}

/* --- Utility --- */
.healis-center {
  text-align: center;
}

.healis-mt-sm {
  margin-top: 0.75rem;
}

.healis-mt-md {
  margin-top: 1.25rem;
}

/* --- Page loader (HEALIS / sage–forest; structure matches script.js .page-loader) --- */
body.healis-page .page-loader.spa-page-loader {
  position: fixed;
  inset: 0;
  z-index: 10001;
  overflow: hidden;
}

body.healis-page .page-loader.spa-page-loader .page-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

body.healis-page .page-loader.spa-page-loader .bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #e8eae3 0%, #dce0d4 45%, #cfd5c8 100%) !important;
  opacity: 1;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

body.healis-page .page-loader.spa-page-loader .wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
}

body.healis-page .page-loader.spa-page-loader .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
  transform: rotate(-9deg) translateY(4px);
}

body.healis-page .page-loader.spa-page-loader .spa-page-loader__symbol {
  display: block;
  color: var(--healis-forest);
  line-height: 0;
}

body.healis-page .page-loader.spa-page-loader .spa-page-loader__icon {
  display: block;
  width: clamp(3rem, 11vw, 4.5rem);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.45));
}

body.healis-page .page-loader.spa-page-loader .spa-page-loader__mark {
  display: inline-block;
  font-family: var(--healis-serif);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: var(--healis-forest);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

body.healis-page .page-loader.spa-page-loader .sub-bg {
  position: absolute;
  inset: 0;
  width: min(72vw, 440px);
  height: min(72vw, 440px);
  margin: auto;
  transform: scale(0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.45) 0%, transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(74, 93, 78, 0.35) 0%, rgba(61, 77, 64, 0.55) 55%, rgba(52, 66, 54, 0.4) 100%);
  box-shadow: 0 0 80px rgba(74, 93, 78, 0.22);
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.spa-page-loader__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Cookie consent banner --- */
.healis-cookie-consent[hidden] {
  display: none !important;
}

.healis-cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
}

.healis-cookie-consent__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: rgba(61, 77, 64, 0.95);
  color: #f6f5f0;
  border: 1px solid rgba(215, 217, 207, 0.35);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.healis-cookie-consent__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 56ch;
}

.healis-cookie-consent__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.healis-cookie-consent__btn {
  border: 0;
  border-radius: 999px;
  padding: 0.52rem 1rem;
  font-family: var(--healis-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.healis-cookie-consent__btn--accept {
  background: var(--healis-gold);
  color: #2a352b;
}

.healis-cookie-consent__btn--reject {
  background: transparent;
  color: #f6f5f0;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.healis-cookie-consent__btn:focus-visible {
  outline: 2px solid var(--healis-gold);
  outline-offset: 2px;
}

@media (max-width: 767.98px) {
  .healis-cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .healis-cookie-consent__actions {
    width: 100%;
  }

  .healis-cookie-consent__btn {
    width: 100%;
  }
}
