/* ==========================================================
   House of Thai Massage — shared styles
   You should not need to edit this file.
   ========================================================== */

:root{
  /* colours */
  --cream:      #FBF8F3;
  --band:       #F2EDE5;
  --card:       #FFFFFF;
  --card-soft:  #FDFBF8;
  --ink:        #6E645C;
  --ink-mid:    #8A8078;
  --ink-soft:   #A39A92;
  --rose:       #D8A99E;
  --rose-deep:  #C08E7D;
  --rose-tint:  #F7EBE6;
  --hair:       #E6DED4;

  /* how strongly the background artwork shows, 0 = off, 1 = full */
  --bg-strength: 0.38;

  /* type */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Jost', system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

/* The artwork sits behind the whole site, identical on every page,
   and stays still while the page scrolls. Change --bg-strength alone
   to make it stronger or softer. */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  /* anchored to the top, so the top of the artwork is never cut off,
     whatever the screen shape — phone, iPad upright or iPad sideways */
  background-position: center top;
  background-repeat: no-repeat;
  opacity: var(--bg-strength);
  z-index: -1;
  pointer-events: none;
}

body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 5.5rem; /* room for the sticky bar */
}

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

a{ color: inherit; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- shared type ---------- */

.eyebrow{
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}

.display{
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
}

h1.display{ font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2.display{ font-size: clamp(2rem, 4.6vw, 3.05rem); }
h3.display{ font-size: 1.4rem; }

.lede{
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.section{ padding: 5.5rem 0; }
.section--band{ background: transparent; }
.section--center{ text-align: center; }

.section__head{
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.4rem;
}

.section__head .lede{ margin: 1rem 0 0; }

/* ---------- buttons ---------- */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 2rem;
  border: none;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-family: inherit;
  font-size: .98rem;
  font-weight: 400;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s ease;
}

.btn:hover, .btn:focus-visible{ background: var(--rose-deep); }
.btn:focus-visible{ outline: 2px solid var(--rose-deep); outline-offset: 3px; }

.btn--ghost{
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--hair);
}
.btn--ghost:hover, .btn--ghost:focus-visible{
  background: var(--rose-tint);
  color: var(--rose-deep);
  border-color: var(--rose);
}

.btn--block{ width: 100%; }
.btn--sm{ padding: .75rem 1.25rem; font-size: .92rem; }

.arrow{ transition: transform .25s ease; }
.btn:hover .arrow{ transform: translateX(3px); }

.tag-outline{
  display: inline-flex;
  justify-content: center;
  padding: .6rem 1.25rem;
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--ink-soft);
}

/* ---------- panels ---------- */

.panel{
  background: var(--card);
  border: 1px solid rgba(230,222,212,.85);
  border-radius: 18px;
  box-shadow: 0 2px 22px rgba(122,104,88,.055);
}

.icon-badge{
  flex: 0 0 auto;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  background: var(--rose-tint);
  display: grid;
  place-items: center;
  color: var(--rose-deep);
}
.icon-badge svg{ width: 1.25rem; height: 1.25rem; }

/* ---------- header ---------- */

.site-head{
  /* the artwork shows behind the menu, so the top of the picture is
     never cut off. A soft wash keeps the menu wording readable. */
  background: rgba(251,248,243,0.30);
  padding: 1.5rem 0;
}

.nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}

.nav a{
  font-size: .92rem;
  letter-spacing: .18em;
  text-transform: capitalize;
  color: #574E47;
  text-decoration: none;
  transition: color .2s ease;
}

.nav a:hover, .nav a[aria-current="page"]{ color: var(--rose-deep); }

.nav__logo{
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  background: var(--card);
  box-shadow: 0 3px 18px rgba(122,104,88,.09);
  display: grid;
  place-items: center;
  padding: .55rem;
  flex: 0 0 auto;
}
.nav__logo img{ width: 100%; }

.crumbs{
  padding: .35rem 0 1.4rem;
  font-size: .85rem;
  color: var(--ink-soft);
}
.crumbs a{ text-decoration: none; }
.crumbs a:hover{ color: var(--rose-deep); }
.crumbs span{ margin: 0 .5rem; }

/* ---------- hero ---------- */

.hero{
  position: relative;
  padding: 6rem 0 6.5rem;
  text-align: center;
  background: transparent;
  overflow: hidden;
}

/* (the page-wide background replaces the old hero veil) */

.hero__inner{ position: relative; z-index: 2; width: 100%; }
.hero .lede{ max-width: 40rem; margin: 1.5rem auto 0; }

.hero__cards{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 3rem 0 2.5rem;
}

.info-card{
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.1rem 1.6rem;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 14px;
  text-align: left;
  min-width: 15rem;
}

.info-card__label{
  display: block;
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--ink-soft);
}

.info-card__value{
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
}

.hero__actions{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- cards grid ---------- */

.grid{ display: grid; gap: 1.75rem; }
.grid--2{ grid-template-columns: repeat(2, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--4{ grid-template-columns: repeat(4, 1fr); }

/* ---------- RMT block ---------- */

.rmt-card{ padding: 2.4rem 2.2rem; display: flex; flex-direction: column; }
.rmt-card__head{ display: flex; align-items: center; gap: .95rem; margin-bottom: 1.4rem; }
.rmt-card__title{ font-family: var(--serif); font-size: 1.4rem; margin: 0 0 .2rem; line-height: 1.2; }
.rmt-card__label{ font-size: .78rem; letter-spacing: .05em; color: var(--ink-soft); }
.rmt-card__text{ margin: 0 0 2rem; color: var(--ink-mid); flex: 1 1 auto; }
.rmt-card .tag-outline{ align-self: flex-start; }

.pay{ margin-top: 3.6rem; text-align: center; }
.pay__label{
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}
.pay__list{
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: .55rem 1.35rem; margin: 0; padding: 0; list-style: none;
}
.pay__list li{ position: relative; color: var(--ink-mid); letter-spacing: .04em; }
.pay__list li + li::before{
  content: ""; position: absolute; left: -.7rem; top: .35rem; bottom: .35rem;
  width: 1px; background: var(--hair);
}

/* ---------- category tabs ---------- */

.tabs{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 1.9rem;
  margin: 0 0 3rem;
}

.tab{
  position: relative;
  padding: .7rem .2rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
  cursor: pointer;
  transition: color .2s ease;
}

.tab::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.tab:hover{ color: var(--rose-deep); }
.tab[aria-selected="true"]{ color: var(--rose-deep); }
.tab[aria-selected="true"]::after{ transform: scaleX(1); }
.tab:focus-visible{ outline: 2px solid var(--rose-deep); outline-offset: 3px; }

/* ---------- price table ---------- */

.rates{ margin-top: 3rem; }

.rate-box{ padding: 2.1rem 1.9rem; }

.nowrap{ white-space: nowrap; }

.rate-box__label:empty{ display: none; }

.rate-box__label{
  text-align: center;
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 .5rem;
  min-height: 1.1em;
}

.rate-box__title{
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  text-align: center;
  margin: 0 0 .8rem;
  line-height: 1.25;
}

.rate-box__note:empty{ display: none; }

.rate-box__note{
  text-align: center;
  font-size: .92rem;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}

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

.rate-list li{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--hair);
}
.rate-list li:last-child{ border-bottom: none; }

.rate-list__mins{ color: var(--ink-mid); font-size: .98rem; }
.rate-list__price{
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: .01em;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--rose-deep);
}

.rate-box__foot:empty{ display: none; }

.rate-box__foot{
  margin: 1.3rem 0 0;
  font-size: .86rem;
  color: var(--ink-soft);
  text-align: center;
}

.oil-note{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  padding: 1.3rem 1.6rem;
}
.oil-note h4{
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 .3rem;
  font-weight: 400;
}
.oil-note p{ margin: 0; font-size: .93rem; color: var(--ink-mid); }

.policy-note{
  margin: 1.4rem auto 0;
  max-width: 68rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-mid);
}

/* ---------- service cards ---------- */

.svc{ display: flex; flex-direction: column; overflow: hidden; }

.svc__media{
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--rose-tint), var(--band));
  display: grid;
  place-items: center;
}
.svc__media img{ width: 100%; height: 100%; object-fit: cover; }

.svc__placeholder{
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  opacity: .55;
  text-align: center;
  padding: 1rem;
}

.svc__cat{
  position: absolute;
  top: .9rem; left: .9rem;
  padding: .3rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  font-size: .74rem;
  letter-spacing: .06em;
  color: var(--ink-mid);
}

.svc__body{ padding: 1.7rem 1.6rem 1.6rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.svc__name{ font-family: var(--serif); font-size: 1.3rem; margin: 0 0 .7rem; line-height: 1.25; }
.svc__text{ margin: 0 0 1rem; color: var(--ink-mid); font-size: .95rem; }

.svc__meta{
  display: flex; align-items: center; gap: 1.4rem;
  margin: 0 0 1.1rem; font-size: .92rem; color: var(--ink-soft);
}
.svc__price{ color: var(--rose-deep); }

.svc__benefits{
  list-style: none; margin: 0 0 1.5rem; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1rem;
  font-size: .88rem; color: var(--ink-mid); flex: 1 1 auto;
}
.svc__benefits li{ position: relative; padding-left: .9rem; }
.svc__benefits li::before{
  content: ""; position: absolute; left: 0; top: .55rem;
  width: .35rem; height: .35rem; border-radius: 50%; background: var(--rose);
}

.svc__actions{ display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }

/* ---------- gallery ---------- */

.gallery{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery__item{
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--rose-tint), var(--band));
  display: grid;
  place-items: center;
}
.gallery__item img{ width: 100%; height: 100%; object-fit: cover; }
.gallery__ph{
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--rose-deep); opacity: .5;
}

/* ---------- FAQ ---------- */

.faq{ max-width: 52rem; margin: 0 auto; }

.faq__item{ border-bottom: 1px solid var(--hair); }

.faq__q{
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem .5rem;
  background: none; border: none;
  font-family: var(--serif); font-size: 1.12rem; color: var(--ink);
  text-align: left; cursor: pointer;
  transition: color .2s ease;
}
.faq__q:hover{ color: var(--rose-deep); }
.faq__q:focus-visible{ outline: 2px solid var(--rose-deep); outline-offset: 2px; }

.faq__chev{ flex: 0 0 auto; color: var(--rose); transition: transform .3s ease; }
.faq__q[aria-expanded="true"] .faq__chev{ transform: rotate(180deg); }

.faq__a{ display: none; padding: 0 .5rem 1.6rem; color: var(--ink-mid); }
.faq__a[data-open="true"]{ display: block; }

/* ---------- about page ---------- */

.banner{ position: relative; min-height: 34rem; display: grid; place-items: center; overflow: hidden; }

.banner__media{
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #E4E8DE, var(--rose-tint));
  display: grid; place-items: center;
}
.banner__media img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

/* a scrim, so the heading stays readable whatever photo goes behind it */
.banner__media::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(38,32,26,.34), rgba(38,32,26,.52));
  opacity: 0;
  transition: opacity .2s ease;
}
.banner__media.has-photo::after{ opacity: 1; }

.banner__ph{
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--rose-deep); opacity: .5; text-align: center; padding: 1rem;
}

.banner__text{
  position: relative; z-index: 2; text-align: center; padding: 3rem 1.5rem;
  max-width: 44rem;
}
.banner__text .display{ color: var(--ink); }
.banner__text p{ color: var(--ink-mid); margin: .8rem 0 0; }

/* once a photo is behind it, the words go white to sit on the scrim */
.banner.has-photo .banner__text .display{ color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.32); }
.banner.has-photo .banner__text p{ color: rgba(255,255,255,.92); text-shadow: 0 1px 12px rgba(0,0,0,.34); }

.pull{
  max-width: 44rem; margin: 0 auto;
  font-family: var(--serif); font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.55; color: var(--ink);
}

.split{ display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: center; }
.split__media{
  aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden;
  background: linear-gradient(150deg, var(--rose-tint), var(--band));
  display: grid; place-items: center;
}
.split__media img{ width: 100%; height: 100%; object-fit: cover; }
.split p{ color: var(--ink-mid); }

/* ---------- policy page ---------- */

.notice{ padding: 1.9rem 1.8rem; background: var(--card-soft); }

.policy-card{ padding: 1.9rem 1.8rem; margin-top: 1.75rem; }

.policy-list{ list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.policy-list li{ position: relative; padding-left: 1.1rem; color: var(--ink-mid); }
.policy-list li::before{
  content: ""; position: absolute; left: 0; top: .62rem;
  width: .35rem; height: .35rem; border-radius: 50%; background: var(--rose);
}

/* ---------- blog filters ---------- */

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

.filters{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.25rem;
  align-items: end;
  margin: 0 0 3rem;
}

.field{ display: block; }
.field__label{
  display: block; margin-bottom: .5rem;
  font-size: .8rem; letter-spacing: .08em; color: var(--ink-soft);
}

.field input, .field select{
  width: 100%;
  padding: .85rem 1.1rem;
  font-family: inherit; font-size: 1rem; font-weight: 300;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 999px;
  appearance: none;
}
.field select{
  border-radius: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A39A92' stroke-width='1.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
  padding-right: 2.6rem;
}
.field input:focus, .field select:focus{
  outline: none; border-color: var(--rose);
}

.chips{ display: flex; flex-wrap: wrap; gap: .45rem; margin-top: auto; }
.chip{
  padding: .3rem .8rem;
  border-radius: 999px;
  background: var(--rose-tint);
  font-size: .76rem;
  color: var(--rose-deep);
}

.empty{ text-align: center; color: var(--ink-soft); padding: 2rem 0; }

/* ---------- map ---------- */

.map{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hair);
  aspect-ratio: 4 / 3;
}
.map iframe{ width: 100%; height: 100%; border: 0; display: block; }

/* ---------- footer ---------- */

.site-foot{ background: var(--band); padding: 4rem 0 2rem; }

.foot__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.foot__brand{ display: flex; align-items: center; gap: .9rem; margin-bottom: 1.2rem; }
.foot__logo{ width: 3.4rem; }
.foot__name small{ display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.foot__name span{ font-family: var(--serif); font-size: 1.25rem; }

.foot__about{ color: var(--ink-soft); font-size: .92rem; margin: 0 0 1.4rem; }

.foot h4{
  font-family: var(--serif); font-weight: 400; font-size: 1.15rem;
  margin: 0 0 1.2rem; color: var(--ink);
}

.foot__list{ list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; font-size: .93rem; }
.foot__list a{ text-decoration: none; color: var(--ink-mid); transition: color .2s ease; }
.foot__list a:hover{ color: var(--rose-deep); }

.foot__row{ display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-mid); font-size: .93rem; }
.foot__row svg{ flex: 0 0 auto; width: 1rem; height: 1rem; margin-top: .3rem; color: var(--rose); }

.socials{ display: flex; gap: .7rem; }
.socials a{
  width: 2.3rem; height: 2.3rem; border-radius: 50%;
  border: 1px solid var(--hair); background: var(--card);
  display: grid; place-items: center; color: var(--ink-mid);
  transition: color .2s ease, border-color .2s ease;
}
.socials a:hover{ color: var(--rose-deep); border-color: var(--rose); }
.socials svg{ width: 1rem; height: 1rem; }

.foot__base{
  margin-top: 3rem; padding-top: 1.6rem;
  border-top: 1px solid var(--hair);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem; color: var(--ink-soft);
}
.foot__base a{ text-decoration: none; margin-left: 1.4rem; }
.foot__base a:hover{ color: var(--rose-deep); }

/* ---------- sticky bar ---------- */

.sticky{
  position: fixed;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: calc(100% - 2rem);
  max-width: 60rem;
  display: flex; align-items: center; gap: 1rem;
  padding: .8rem 1rem .8rem 1.6rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hair);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(122,104,88,.12);
}

.sticky__text{ flex: 1 1 auto; }
.sticky__text strong{ display: block; font-weight: 400; font-size: .95rem; color: var(--ink); }
.sticky__text small{ color: var(--ink-soft); font-size: .8rem; }
.sticky__actions{ display: flex; gap: .5rem; flex: 0 0 auto; }

/* ---------- pop-up ---------- */

.modal{
  position: fixed; inset: 0; z-index: 60;
  display: grid; place-items: center; padding: 1.25rem;
  background: rgba(120,105,92,.28);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal[data-open="true"]{ opacity: 1; visibility: visible; }

.modal__box{
  position: relative;
  width: 100%; max-width: 44rem;
  max-height: 90vh; overflow-y: auto;
  padding: 2.6rem 2.4rem 2.2rem;
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(110,92,78,.18);
  transform: translateY(14px) scale(.985);
  transition: transform .3s ease;
}
.modal[data-open="true"] .modal__box{ transform: none; }

.modal__close{
  position: absolute; top: 1rem; right: 1.1rem;
  width: 2.1rem; height: 2.1rem;
  display: grid; place-items: center;
  border: none; border-radius: 50%;
  background: transparent; color: var(--ink-soft);
  font-size: 1.35rem; line-height: 1; cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.modal__close:hover, .modal__close:focus-visible{ background: var(--rose-tint); color: var(--rose-deep); }

.modal__head{ display: flex; align-items: center; gap: .85rem; margin-bottom: .4rem; }
.modal__title{ font-family: var(--serif); font-size: 1.62rem; margin: 0; }
.modal__sub{ font-size: .98rem; color: var(--ink-soft); margin: 0 0 2rem; }

.mini{
  padding: 1.5rem 1.4rem;
  background: var(--card-soft);
  border: 1px solid rgba(230,222,212,.9);
  border-radius: 14px;
  display: flex; flex-direction: column;
}
.mini__title{ font-family: var(--serif); font-size: 1.15rem; margin: 0 0 .55rem; }
.mini__text{ font-size: .92rem; color: var(--ink-mid); margin: 0 0 1.35rem; flex: 1 1 auto; }
.mini .tag-outline{ align-self: stretch; padding: .7rem 1rem; font-size: .82rem; }

.modal__cards{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.modal__pay{ margin-top: 1.9rem; padding-top: 1.7rem; border-top: 1px solid var(--hair); text-align: center; }
.modal__pay .pay{ margin-top: 0; }
.modal__terms{ margin: 1.5rem 0 0; text-align: center; font-size: .78rem; color: var(--ink-soft); }

/* the tax note — plain text, no box */
.tax-note{
  margin: 1.8rem auto 0;
  max-width: 60rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: .02em;
  color: var(--rose-deep);
}


/* ---------- pop-up on small phones: must fit one screen ---------- */

@media (max-width: 480px){
  .modal{ padding: .75rem; align-items: center; }

  .modal__box{
    padding: 1.5rem 1.1rem 1.25rem;
    max-height: 88vh;
    border-radius: 16px;
  }

  .modal__close{ top: .5rem; right: .6rem; width: 1.9rem; height: 1.9rem; }

  .modal__head{ gap: .6rem; margin-bottom: .25rem; }
  .modal__head .icon-badge{ width: 2.2rem; height: 2.2rem; }
  .modal__head .icon-badge svg{ width: 1rem; height: 1rem; }
  .modal__title{ font-size: 1.24rem; line-height: 1.2; }

  .modal__sub{ font-size: .86rem; line-height: 1.45; margin: 0 0 1rem; }

  .modal__cards{ gap: .6rem; }

  .mini{ padding: .9rem .95rem; border-radius: 11px; }
  .mini__title{ font-size: 1rem; margin: 0 0 .3rem; }
  .mini__text{ font-size: .82rem; line-height: 1.45; margin: 0 0 .8rem; }
  .mini .btn{ padding: .6rem .8rem; font-size: .86rem; }
  .mini .tag-outline{ padding: .5rem .8rem; font-size: .76rem; }

  .modal__pay{ margin-top: 1rem; padding-top: .9rem; }
  .modal__pay .pay__label{ font-size: .64rem; letter-spacing: .18em; margin-bottom: .55rem; }
  .modal__pay .pay__list{ gap: .3rem .9rem; }
  .modal__pay .pay__list li{ font-size: .86rem; }
  .modal__pay .pay__list li + li::before{ left: -.48rem; }

  /* the small print isn't worth a scroll on a phone */
  .modal__terms{ display: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 980px){
  .grid--4{ grid-template-columns: repeat(2, 1fr); }
  .grid--3{ grid-template-columns: repeat(2, 1fr); }
  .foot__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px){
  body{ padding-bottom: 6.5rem; }
  .section{ padding: 3.5rem 0; }
  .hero{ padding: 3.5rem 0 4rem; }
  .nav{ gap: 1.1rem; }
  .nav a{ font-size: .82rem; letter-spacing: .1em; }
  .nav__logo{ width: 4rem; height: 4rem; order: -1; }
  .grid--2, .grid--3, .grid--4{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .foot__grid{ grid-template-columns: 1fr; gap: 2rem; }
  .svc__benefits{ grid-template-columns: 1fr; }
  .modal__box{ padding: 2.2rem 1.4rem 1.8rem; }
  .modal__cards{ grid-template-columns: 1fr; }
  .info-card{ min-width: 0; width: 100%; }
  .split{ grid-template-columns: 1fr; gap: 2rem; }
  .filters{ grid-template-columns: 1fr; gap: 1rem; }
  .banner{ min-height: 20rem; }
  .sticky{ padding: .7rem .8rem; gap: .6rem; }
  .sticky__text{ display: none; }
  .sticky__actions{ width: 100%; }
  .sticky__actions .btn{ flex: 1 1 auto; padding: .8rem .5rem; font-size: .85rem; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ transition: none !important; }
}

/* ---------- blog articles ---------- */

.article{ max-width: 52rem; padding-top: 1rem; padding-bottom: 4rem; }

.article__cat{
  display: inline-block;
  margin: 0 0 1rem;
  padding: .3rem .9rem;
  border-radius: 999px;
  background: var(--rose-tint);
  color: var(--rose-deep);
  font-size: .76rem;
  letter-spacing: .06em;
}

.article__title{ font-size: clamp(1.9rem, 4.4vw, 2.9rem); margin: 0 0 1rem; }

.article__meta{
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin: 0 0 2.2rem;
  color: var(--ink-soft); font-size: .9rem;
}

.article__media{
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: var(--band);
  display: grid; place-items: center;
  margin-bottom: 2.4rem;
}
.article__media img{ width: 100%; height: 100%; object-fit: cover; }

.article__intro{ padding: 1.9rem 1.8rem; background: var(--rose-tint); border-color: transparent; }
.article__intro p{ margin: 0; color: var(--ink-mid); }

.article__h2{
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  margin: 3.2rem 0 1.3rem;
}

.article__h3{ font-family: var(--serif); font-size: 1.15rem; margin: 0 0 .8rem; }

.article__p{ color: var(--ink-mid); margin: 0 0 1.2rem; }

.article__cards{ gap: 1.2rem; }
.article__card{ padding: 1.6rem 1.5rem; }
.article__card p{ color: var(--ink-mid); margin: 0 0 .8rem; font-size: .95rem; }
.article__card p:last-child{ margin-bottom: 0; }
.article__card .policy-list li{ font-size: .95rem; }

.article__list{ margin: 0 0 1.4rem; }

.article__note{ padding: 1.4rem 1.5rem; margin: 1.6rem 0; color: var(--ink-mid); font-size: .95rem; }
.article__note strong{ color: var(--ink); font-weight: 500; }

.article__link{ margin: 1rem 0 0; }
.article__link a{ color: var(--rose-deep); text-decoration: none; font-size: .92rem; }
.article__link a:hover{ text-decoration: underline; }

.article__cta{ padding: 2.2rem 2rem; margin: 3.4rem 0 2rem; background: var(--card-soft); }
.article__cta p{ color: var(--ink-mid); margin: 0 0 1.6rem; }
.article__cta-actions{ display: flex; flex-wrap: wrap; gap: .8rem; }

.article__tags{ margin-bottom: 1rem; }

.article__related{ text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.article__related:hover{ transform: translateY(-3px); box-shadow: 0 12px 34px rgba(122,104,88,.12); }
.article__related .svc__name{ font-size: 1.02rem; }

.article__back{ margin: 3rem 0 0; }
.article__back a{ color: var(--rose-deep); text-decoration: none; }

/* a treatment that is not provided under RMT */
.svc__cat--nonrmt{ background: rgba(255,255,255,.92); color: var(--rose-deep); }

.rmt-line{
  margin: .9rem 0 0;
  font-size: .82rem;
  color: var(--ink-soft);
}

@media (max-width: 900px){
  .article__h2{ font-size: 1.4rem; margin-top: 2.6rem; }
}

@media (max-width: 620px){
  .article__cta-actions .btn{ width: 100%; }
}

/* the extra price boxes — same card as the main two, sitting
   underneath them at the same width */
.rates__extra{ margin-top: 1.75rem; }
.rate-box--extra .rate-box__label{ color: var(--rose-deep); }

/* the address, tappable — opens Google Maps */
.maplink{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted var(--rose);
  padding-bottom: 1px;
}
.maplink:hover,
.maplink:focus-visible{ border-bottom-style: solid; color: var(--rose-deep); }
.info-card__value .maplink{ border-bottom-color: var(--rose); }


/* the inner pages no longer need their own band — the whole page
   already carries the background */
.section--hero{ position: relative; }
.section--hero > .wrap{ position: relative; z-index: 1; }

@media (max-width: 720px){
  .section--hero::before,
  .section--hero::after{ height: 20rem; }
  .banner{ min-height: 26rem; }
}
