/* =============================================
   THAI HEALING — STYLESHEET
   ============================================= */

:root {
  --beige: #c9b49a;
  --beige-light: #f5f0e8;
  --beige-mid: #e8ddd0;
  --brown: #7a5c44;
  --dark: #1a1410;
  --text: #3d2e22;
  --text-light: #7a6a5a;
  --white: #ffffff;
  --gold: #b8935a;

  --font-head: 'Playfair Display', serif;
  --font-body: 'Source Sans 3', Arial, sans-serif;

  --max-w: 1200px;
  --section-pad: 100px 40px;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  cursor: none;
  overflow-x: hidden;
  touch-action: pan-y; /* blocks horizontal swipe on mobile without breaking position:sticky */
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: none;
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

.cursor.active {
  width: 36px;
  height: 36px;
  opacity: 0.6;
}

/* ---- TYPOGRAPHY HELPERS ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.7);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn--dark:hover {
  background: var(--brown);
  border-color: var(--brown);
}

.btn--light {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn--light:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn--outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn--full {
  width: 100%;
  text-align: center;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(26, 20, 16, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 48px;
}

.nav__logo {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav__logo-img {
  width: auto;
  height: 56px;
  object-fit: contain;
  display: block;
}

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--white);
}

.nav__cta {
  padding: 10px 24px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
  color: var(--white) !important;
  transition: background var(--transition), color var(--transition) !important;
}

.nav__cta:hover {
  background: var(--white) !important;
  color: var(--dark) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
}

@media (max-width: 768px) {
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 20, 16, 0.97);
    padding: 24px 32px;
    gap: 20px;
  }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  /* Height set in JS to avoid Safari vh bug */
  position: relative;
}

.hero__sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 680px;
}

.hero__image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  /* height set in JS */
}

#heroFrame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.06s linear;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg,
      rgba(26, 20, 16, 0.72) 0%,
      rgba(26, 20, 16, 0.35) 60%,
      rgba(26, 20, 16, 0.15) 100%);
  z-index: 1;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 80px;
  max-width: 680px;
}

.hero__tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 22px;
}

.hero__logo {
  width: auto;
  height: 94px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 22px;
  display: block;
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 40px;
}

.hero__headline em {
  font-style: italic;
  color: var(--beige);
}

/* =============================================
   STRIP
   ============================================= */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--beige-light);
  padding: 60px 0;
}

.strip__item {
  padding: 48px 32px;
  border-right: 1px solid var(--beige-mid);
  text-align: center;
  transition: background var(--transition);
}

.strip__item:last-child {
  border-right: none;
}

.strip__item:hover {
  background: var(--beige-mid);
}

.strip__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 2px solid var(--beige);
}

.strip__item h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--dark);
}

.strip__item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: var(--section-pad);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: center;
}

.about__headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 24px;
}

.about__headline em {
  font-style: italic;
  color: var(--brown);
}

.about__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 18px;
}

.about__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  height: 540px;
}

.about__gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
}

.about__gallery-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__gallery-side img {
  flex: 1;
  border-radius: var(--radius);
  min-height: 0;
}

/* =============================================
   THERAPIES
   ============================================= */
.therapies {
  padding: var(--section-pad);
  background: var(--beige-light);
}

.therapies__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.therapies__header h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 400;
  margin-bottom: 14px;
}

.therapies__header p {
  font-size: 16px;
  color: var(--text-light);
}

.therapies__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.therapy-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.therapy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 20, 16, 0.12);
}

.therapy-card__img {
  height: 240px;
  overflow: hidden;
}

.therapy-card__img img {
  transition: transform 0.6s ease;
}

.therapy-card:hover .therapy-card__img img {
  transform: scale(1.06);
}

.therapy-card__body {
  padding: 28px;
}

.therapy-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.therapy-card__body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.therapy-card__body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.therapy-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--beige-mid);
}

.therapy-card__duration {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.therapy-card__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--brown);
}

/* =============================================
   THERAPIST
   ============================================= */
.therapist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  max-width: var(--max-w);
  margin: 60px auto;
}

.therapist__image {
  position: relative;
  overflow: hidden;
}

.therapist__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.therapist__bio {
  padding: 80px 64px;
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.therapist__bio .section-label {
  color: var(--gold);
}

.therapist__bio h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 400;
  margin-bottom: 6px;
}

.therapist__title {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 28px;
}

.therapist__text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.therapist__stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat__number {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
}

.stat__label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: var(--section-pad);
  background: var(--white);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials__header h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonial-card {
  padding: 40px 36px;
  background: var(--beige-light);
  border-top: 3px solid var(--gold);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 28px;
}

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

.testimonial-card__author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-card__author span {
  font-size: 12px;
  color: var(--text-light);
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
  padding: var(--section-pad);
  background: var(--beige-light);
}

.pricing__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.pricing__header h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  margin-bottom: 14px;
}

.pricing__header p {
  font-size: 15px;
  color: var(--text-light);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--beige-mid);
}

.pricing-card {
  padding: 48px 36px;
  border-right: 1px solid var(--beige-mid);
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card:last-child {
  border-right: none;
}

.pricing-card--featured {
  background: var(--dark);
  color: var(--white);
  transform: scale(1.02);
  z-index: 1;
  box-shadow: 0 20px 60px rgba(26, 20, 16, 0.2);
}

.pricing-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  margin-bottom: 20px;
}

.pricing-card__name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.pricing-card--featured .pricing-card__name {
  color: var(--white);
}

.pricing-card__price {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}

.pricing-card--featured .pricing-card__price {
  color: var(--white);
}

.pricing-card__price span {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card--featured .pricing-card__price span {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-card__features {
  margin-bottom: 36px;
}

.pricing-card__features li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--beige-mid);
  padding-left: 18px;
  position: relative;
}

.pricing-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

.pricing-card--featured .pricing-card__features li {
  color: rgba(255, 255, 255, 0.65);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card--packages {
  background: var(--brown);
  color: var(--white);
}

.pricing-card--packages .pricing-card__name {
  color: var(--white);
}

.pricing-card--packages .pricing-card__price {
  color: var(--white);
}

.pricing-card--packages .pricing-card__price span {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-card--packages .pricing-card__features li {
  color: rgba(255, 255, 255, 0.75);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing-card--packages .btn--outline {
  border-color: var(--white);
  color: var(--white);
}

.pricing-card--packages .btn--outline:hover {
  background: var(--white);
  color: var(--brown);
}

/* =============================================
   PROMO BANNER
   ============================================= */
.promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--brown);
}

.promo__content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo__content h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.25;
}

.promo__content p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
}

.promo__content strong {
  color: var(--white);
  font-weight: 600;
}

.promo__image {
  overflow: hidden;
  position: relative;
}

.promo__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--brown) 0%, transparent 40%);
}

/* =============================================
   CONTACT / BOOKING
   ============================================= */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: var(--section-pad);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}

.contact__text h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  margin-bottom: 18px;
}

.contact__text>p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}

.contact__icon {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--beige-light);
  border: 1px solid var(--beige-mid);
  border-radius: 0;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: var(--gold);
}

.contact__form textarea {
  resize: vertical;
}

.form__status {
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}

.form__status--success {
  color: #4a7c59;
}

.form__status--error {
  color: #a0522d;
}

.pricing__footnote {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background: var(--beige-light);
  padding: var(--section-pad);
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq__inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 40px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--beige-mid);
  border-radius: 12px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__question[aria-expanded="true"] {
  font-weight: 600;
  color: var(--dark);
}

.faq__icon {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: var(--text-light);
  transition: transform var(--transition), color var(--transition);
  line-height: 1;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer p {
  padding: 0 28px 22px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 48px 36px;
}

.footer__brand {
  margin-bottom: 56px;
}

.footer__logo {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

.footer__links {
  display: flex;
  gap: 64px;
  margin-bottom: 56px;
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .therapies__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .about__gallery {
    height: 400px;
  }

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

  .therapist__image {
    height: 460px;
  }

  .therapist__bio {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 70px 24px;
  }

  .nav {
    padding: 18px 24px;
  }

  .nav.scrolled {
    padding: 12px 24px;
  }

  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .hero__content {
    padding: 0 32px;
  }

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

  .strip__item {
    border-bottom: 1px solid var(--beige-mid);
  }

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

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

  .pricing__grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 20px;
  }

  .pricing-card {
    border-right: none;
    border: 1px solid var(--beige-mid);
  }

  .pricing-card--featured {
    transform: none;
  }

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

  .promo__image {
    display: none;
  }

  .promo__content {
    padding: 60px 32px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 52px 24px 28px;
  }

  .footer__links {
    flex-direction: column;
    gap: 40px;
  }

  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  * {
    cursor: auto !important;
  }
}

@media (max-width: 480px) {
  .strip {
    grid-template-columns: 1fr;
  }

  .about__gallery {
    grid-template-columns: 1fr;
    height: auto;
  }

  .about__gallery-side {
    flex-direction: row;
    height: 180px;
    overflow: hidden;
  }

  .about__gallery-side img {
    min-width: 0;
    width: 50%;
    flex: 1 1 0;
  }
}